openbsd-ports/net/ircd-hybrid/patches/patch-configure
ajacoutot 114dfaaf16 - protect some config files as they can have passwords in them
- don't enforce gcc opt and debug mode
- don't spam the console when starting, redirect stdout to /dev/null in
rc.local

"go ahead" bernd@
2009-02-04 10:24:07 +00:00

34 lines
1.0 KiB
Plaintext

$OpenBSD: patch-configure,v 1.2 2009/02/04 10:24:07 ajacoutot Exp $
--- configure.orig Wed Feb 28 05:17:54 2007
+++ configure Wed Feb 4 10:08:07 2009
@@ -720,9 +720,9 @@ x_libraries=NONE
# by default will actually change.
# Use braces instead of parens because sh, perl, etc. also accept them.
# (The list follows the same order as the GNU Coding Standards.)
-bindir='${exec_prefix}/bin'
-sbindir='${exec_prefix}/sbin'
-libexecdir='${exec_prefix}/libexec'
+bindir='${prefix}/bin'
+sbindir='${prefix}/sbin'
+libexecdir='${prefix}/libexec'
datarootdir='${prefix}/share'
datadir='${datarootdir}'
sysconfdir='${prefix}/etc'
@@ -2872,14 +2872,14 @@ echo $ECHO_N "checking if $CC is Apple GCC... $ECHO_C"
{ echo "$as_me:$LINENO: result: $AppleGCC" >&5
echo "${ECHO_T}$AppleGCC" >&6; }
- IRC_CFLAGS="$IRC_CFLAGS -Wall -O2"
+ IRC_CFLAGS="$IRC_CFLAGS -Wall"
fi
if test "$ac_cv_prog_cc_g" = yes; then
if test "$Tru" = yes; then
IRC_CFLAGS="$IRC_CFLAGS -g3"
else
- IRC_CFLAGS="$IRC_CFLAGS -g"
+ IRC_CFLAGS="$IRC_CFLAGS"
fi
fi