Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
4d9da3e6
Commit
4d9da3e6
authored
Dec 31, 1998
by
Niels Möller
Browse files
* configure.in (CPPFLAGS): Add more warning flags. But *not*
-Wcast-align. Rev: src/configure.in:1.18
parent
352d3f4c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/configure.in
View file @
4d9da3e6
...
...
@@ -198,8 +198,14 @@ fi
# Set these flags *last*, or else the test programs won't compile
if test x$GCC = xyes ; then
CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wmissing-declarations \
-Wstrict-prototypes -Waggregate-return"
CFLAGS="$CFLAGS -Wall -W \
-Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes \
-Waggregate-return \
-Wpointer-arith -Wbad-function-cast -Wnested-externs"
# Don't enable -Wcast-align results in tons of warnings in the DES
# code. And when using stdio.
fi
AC_OUTPUT(Makefile lib/Makefile include/Makefile)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment