diff options
| author | Alexander Barton <alex@barton.de> | 2003-10-19 23:03:34 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2003-10-19 23:03:34 +0000 |
| commit | cfe63565313991a788818e8603dd6286cf147cd5 (patch) | |
| tree | f4e7b46ad4649a6603d7acefa155821cec480582 /configure.in | |
| parent | e33ab90379240cc99f0790d5d68a688ea32d4d9a (diff) | |
| download | ngircd-cfe63565313991a788818e8603dd6286cf147cd5.tar.gz ngircd-cfe63565313991a788818e8603dd6286cf147cd5.zip | |
Use "-pipe" when compiling with gcc, speeds things up a little :-)
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index d0a1f239..d3a5881d 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ # (at your option) any later version. # Please read the file COPYING, README and AUTHORS for more information. # -# $Id: configure.in,v 1.94 2003/07/09 21:16:33 alex Exp $ +# $Id: configure.in,v 1.95 2003/10/19 23:03:34 alex Exp $ # # -- Initialisierung -- @@ -287,7 +287,7 @@ if test "$GCC" = "yes"; then ansi="" fi - add_CFLAGS="-Wall -W${ansi}${pedantic} $CFLAGS $CFLAGS_ADD" + add_CFLAGS="-pipe -Wall -W${ansi}${pedantic} $CFLAGS $CFLAGS_ADD" else the_CFLAGS="$CFLAGS" add_CFLAGS="$CFLAGS_ADD" |