commit cfe63565313991a788818e8603dd6286cf147cd5 from: Alexander Barton date: Sun Oct 19 23:03:34 2003 UTC Use "-pipe" when compiling with gcc, speeds things up a little :-) commit - e33ab90379240cc99f0790d5d68a688ea32d4d9a commit + cfe63565313991a788818e8603dd6286cf147cd5 blob - fc3767a20c8f263d0eada797d3a6ed0a7932172e blob + 08d6ee7e852767e5ed65043b3fa9dac3f050f58b --- ChangeLog +++ ChangeLog @@ -12,6 +12,7 @@ ngIRCd CVS-HEAD + - Use "-pipe" when compiling with gcc, speeds things up a little :-) - Added new configuration variable "Listen" to bind all listening sockets of the server to a single IP address. - Suppress misleading error message of diff during make run. @@ -466,4 +467,4 @@ ngIRCd 0.0.1, 31.12.2001 -- -$Id: ChangeLog,v 1.211 2003/09/11 12:05:28 alex Exp $ +$Id: ChangeLog,v 1.212 2003/10/19 23:03:34 alex Exp $ blob - d0a1f239ebce2d3e26dca5d489d744151700f33a blob + d3a5881d0d3b03309d80a131bcd83f00cb02d757 --- configure.in +++ 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"