diff options
author | Ronny Chevalier <chevalier.ronny@gmail.com> | 2014-12-11 16:14:42 +0100 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2015-01-07 00:29:06 +0000 |
commit | 6e1fcb85760a7530ee78af09f16ef22e0bd371fc (patch) | |
tree | c41a05010bea81e11d323ad52a52dd0b5306ca94 /configure.ac | |
parent | 7fbf54d6f4b67ed7bac04d801174ecfaa538c1a0 (diff) | |
download | pam-6e1fcb85760a7530ee78af09f16ef22e0bd371fc.tar.gz pam-6e1fcb85760a7530ee78af09f16ef22e0bd371fc.tar.bz2 pam-6e1fcb85760a7530ee78af09f16ef22e0bd371fc.zip |
build: adjust automake warning flags
Enable all automake warning flags except for the portability issues,
since non portable features are used among the makefiles.
* configure.ac (AM_INIT_AUTOMAKE): Add -Wall -Wno-portability.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6797e2fe..cbe5d712 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT([Linux-PAM], [1.1.8], , [Linux-PAM]) AC_CONFIG_SRCDIR([conf/pam_conv1/pam_conv_y.y]) AC_CONFIG_AUX_DIR([build-aux]) -AM_INIT_AUTOMAKE +AM_INIT_AUTOMAKE([-Wall -Wno-portability]) AC_PREREQ([2.61]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) |