diff options
author | Damien Miller <djm@mindrot.org> | 2005-06-19 10:19:43 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2005-06-19 10:19:43 +1000 |
commit | 52c8afeec57cd8f04e08816e1f4563e689f70f83 (patch) | |
tree | c17e191ca4e5f8688c2ef238e43e6a2a1698cecd /configure.ac | |
parent | 106075314795dab5eeea6ca547dd6a7573168f7a (diff) |
- (djm) [loginrec.c ssh-rand-helper.c] Fix -Wsign-compare for portable,
tested and fixes tim@
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 62a11fa1e..027b2a4e1 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.275 2005/06/07 07:53:40 dtucker Exp $ | 1 | # $Id: configure.ac,v 1.276 2005/06/19 00:19:43 djm Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 1999-2004 Damien Miller | 3 | # Copyright (c) 1999-2004 Damien Miller |
4 | # | 4 | # |
@@ -82,6 +82,7 @@ AC_CHECK_DECL(LLONG_MAX, have_llong_max=1, , [#include <limits.h>]) | |||
82 | 82 | ||
83 | if test "$GCC" = "yes" || test "$GCC" = "egcs"; then | 83 | if test "$GCC" = "yes" || test "$GCC" = "egcs"; then |
84 | CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wno-uninitialized" | 84 | CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wno-uninitialized" |
85 | CFLAGS="$CFLAGS -Wsign-compare" | ||
85 | 86 | ||
86 | if test -z "$have_llong_max"; then | 87 | if test -z "$have_llong_max"; then |
87 | # retry LLONG_MAX with -std=gnu99, needed on some Linuxes | 88 | # retry LLONG_MAX with -std=gnu99, needed on some Linuxes |