- (djm) [configure.ac] missing 'test' call for -with-Werror test
This commit is contained in:
parent
1e6616bb14
commit
e04ec6fdfd
|
@ -1,6 +1,7 @@
|
||||||
20051008
|
20051008
|
||||||
- (dtucker) [configure.ac] Bug #1098: define $MAIL for HP-UX; report from
|
- (dtucker) [configure.ac] Bug #1098: define $MAIL for HP-UX; report from
|
||||||
brian.smith at agilent com.
|
brian.smith at agilent com.
|
||||||
|
- (djm) [configure.ac] missing 'test' call for -with-Werror test
|
||||||
|
|
||||||
20051005
|
20051005
|
||||||
- (dtucker) [configure.ac sshd.8] Enable locked account check (a prepended
|
- (dtucker) [configure.ac sshd.8] Enable locked account check (a prepended
|
||||||
|
@ -3095,4 +3096,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3917 2005/10/08 02:07:01 dtucker Exp $
|
$Id: ChangeLog,v 1.3918 2005/10/08 06:21:19 djm Exp $
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $Id: configure.ac,v 1.299 2005/10/08 02:07:02 dtucker Exp $
|
# $Id: configure.ac,v 1.300 2005/10/08 06:21:20 djm Exp $
|
||||||
#
|
#
|
||||||
# Copyright (c) 1999-2004 Damien Miller
|
# Copyright (c) 1999-2004 Damien Miller
|
||||||
#
|
#
|
||||||
|
@ -670,7 +670,7 @@ AC_ARG_WITH(Werror,
|
||||||
[
|
[
|
||||||
if test -n "$withval" && test "x$withval" != "xno"; then
|
if test -n "$withval" && test "x$withval" != "xno"; then
|
||||||
werror_flags="-Werror"
|
werror_flags="-Werror"
|
||||||
if "x${withval}" != "xyes"; then
|
if test "x${withval}" != "xyes"; then
|
||||||
werror_flags="$withval"
|
werror_flags="$withval"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue