Skip to content
Snippets Groups Projects
Unverified Commit da68c247 authored by Simon Josefsson's avatar Simon Josefsson
Browse files

Modernize configure.ac.

parent c53551d6
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,6 @@ dnl License along with Libntlm; if not, write to the Free Software ...@@ -19,7 +19,6 @@ dnl License along with Libntlm; if not, write to the Free Software
dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
dnl 02110-1301, USA dnl 02110-1301, USA
AC_PREREQ([2.64])
AC_INIT([libntlm], [1.7], [libntlm@nongnu.org]) AC_INIT([libntlm], [1.7], [libntlm@nongnu.org])
AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
...@@ -32,15 +31,14 @@ AC_SUBST(LT_AGE, 0) ...@@ -32,15 +31,14 @@ AC_SUBST(LT_AGE, 0)
AC_SUBST(LT_REVISION, 22) AC_SUBST(LT_REVISION, 22)
AM_INIT_AUTOMAKE([1.10 gnits -Wall -Werror]) AM_INIT_AUTOMAKE([1.10 gnits -Wall -Werror])
AM_CONFIG_HEADER(config.h) AC_CONFIG_HEADERS(config.h)
AC_CONFIG_SRCDIR(ntlm.h.in) AC_CONFIG_SRCDIR(ntlm.h.in)
# Checks for programs. # Checks for programs.
AC_PROG_CC AC_PROG_CC
gl_EARLY gl_EARLY
AC_LIBTOOL_WIN32_DLL AM_PROG_AR
m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) LT_INIT([win32-dll])
AC_PROG_LIBTOOL
AC_C_BIGENDIAN AC_C_BIGENDIAN
...@@ -48,23 +46,46 @@ AC_C_BIGENDIAN ...@@ -48,23 +46,46 @@ AC_C_BIGENDIAN
gl_INIT gl_INIT
AC_DEFINE([check_version], ntlm_check_version, [Rename to public API name.]) AC_DEFINE([check_version], ntlm_check_version, [Rename to public API name.])
# Add many warnings, except some... AC_ARG_ENABLE([gcc-warnings],
if test "$GCC" = "yes"; then [AS_HELP_STRING([[--enable-gcc-warnings[=TYPE]]],
nw="$nw -Wsystem-headers" # Don't let system headers trigger warnings [control generation of GCC warnings. The TYPE 'no' disables
nw="$nw -Wconversion" # Too many warnings for now warnings; 'yes' (default) generates cheap warnings.])])
nw="$nw -Wsign-conversion" # Too many warnings for now
nw="$nw -Wtraditional" # Warns on #elif which we use often AS_IF([test "$enable_gcc_warnings" != no], [
nw="$nw -Wtraditional-conversion" # Too many warnings for now # Set up the list of unwanted warning options.
nw="$nw -Wunreachable-code" # Too many false positives nw=
gl_MANYWARN_ALL_GCC([ws]) nw="$nw -fanalyzer"
gl_MANYWARN_COMPLEMENT(ws, [$ws], [$nw]) nw="$nw -Wsystem-headers" # Don't warn in system headers.
for w in $ws; do
gl_WARN_ADD([$w]) # Setup the list of meaningful warning options for the C compiler.
done # The list comes from manywarnings.m4. Warning options that are not
# generally meaningful have already been filtered out (cf.
# build-aux/gcc-warning.spec).
gl_MANYWARN_ALL_GCC([possible_warning_options])
# Compute the list of warning options that are desired.
gl_MANYWARN_COMPLEMENT([desired_warning_options],
[$possible_warning_options], [$nw])
# Compute the list of remaining undesired warning options.
# Namely those, that were not in manywarnings.m4 because they were
# already listed in build-aux/gcc-warning.spec; this includes those
# that are implied by -Wall.
gl_MANYWARN_COMPLEMENT([remaining_undesired_warning_options],
[$nw], [$possible_warning_options])
# Add the desired warning options to WARN_CFLAGS.
for w in $desired_warning_options; do
gl_WARN_ADD([$w])
done
# Add the opposites of the remaining undesired warning options to
# WARN_CFLAGS.
for w in `echo "$remaining_undesired_warning_options" | sed -e 's/-W/-Wno-/g'`; do
gl_WARN_ADD([$w])
done
gl_WARN_ADD([-Wno-pointer-sign]) # Too many warnings for now gl_WARN_ADD([-Wno-pointer-sign]) # Too many warnings for now
gl_WARN_ADD([-fdiagnostics-show-option]) gl_WARN_ADD([-fdiagnostics-show-option])
export WARN_CFLAGS ])
fi
AC_CONFIG_FILES([ AC_CONFIG_FILES([
Makefile Makefile
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment