Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
L
Libntlm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
Show more breadcrumbs
gsasl
Libntlm
Commits
da68c247
Unverified
Commit
da68c247
authored
1 year ago
by
Simon Josefsson
Browse files
Options
Downloads
Patches
Plain Diff
Modernize configure.ac.
parent
c53551d6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
configure.ac
+41
-20
41 additions, 20 deletions
configure.ac
with
41 additions
and
20 deletions
configure.ac
+
41
−
20
View file @
da68c247
...
@@ -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])
A
M
_CONFIG_HEADER(config.h)
A
C
_CONFIG_HEADER
S
(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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment