mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-26 03:02:17 -05:00
CONFIGURE: add "--enable-minimal-flags"
This will turn off automagic adding of flags that might be unwanted such as "-g" or "-pipe".
This commit is contained in:
parent
be1e6bde65
commit
19d4356484
20
configure.ac
20
configure.ac
@ -179,6 +179,11 @@ AC_ARG_ENABLE(libproxy,
|
|||||||
[AS_HELP_STRING([--disable-libproxy],[disable libproxy support (default: auto)])],
|
[AS_HELP_STRING([--disable-libproxy],[disable libproxy support (default: auto)])],
|
||||||
libproxy=$enableval, libproxy=auto)
|
libproxy=$enableval, libproxy=auto)
|
||||||
|
|
||||||
|
AC_ARG_ENABLE(minimal-flags,
|
||||||
|
[AS_HELP_STRING([--enable-minimal-flags],[only add those CFLAGS that are really needed or not intrusive (default: no)])],
|
||||||
|
minimalflags=$enableval, minimalflags=no)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
dnl *********************************************************************
|
dnl *********************************************************************
|
||||||
dnl ** GLIB *************************************************************
|
dnl ** GLIB *************************************************************
|
||||||
@ -782,13 +787,16 @@ if test "x$GCC" = "xyes"; then
|
|||||||
if test -z "`echo "$CFLAGS" | grep "\-Wall" 2> /dev/null`" ; then
|
if test -z "`echo "$CFLAGS" | grep "\-Wall" 2> /dev/null`" ; then
|
||||||
CFLAGS="$CFLAGS -Wall"
|
CFLAGS="$CFLAGS -Wall"
|
||||||
fi
|
fi
|
||||||
if test "$system" = "Linux" -o "$system" = "FreeBSD"; then
|
dnl these flags might be unwanted
|
||||||
if test -z "`echo "$CFLAGS" | grep "\-pipe" 2> /dev/null`" ; then
|
if test x$minimalflags != xyes; then
|
||||||
CFLAGS="$CFLAGS -pipe"
|
if test "$system" = "Linux" -o "$system" = "FreeBSD"; then
|
||||||
|
if test -z "`echo "$CFLAGS" | grep "\-pipe" 2> /dev/null`" ; then
|
||||||
|
CFLAGS="$CFLAGS -pipe"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
if test -z "`echo "$CFLAGS" | grep "\-g " 2> /dev/null`" ; then
|
||||||
|
CFLAGS="$CFLAGS -g"
|
||||||
fi
|
fi
|
||||||
fi
|
|
||||||
if test -z "`echo "$CFLAGS" | grep "\-g " 2> /dev/null`" ; then
|
|
||||||
CFLAGS="$CFLAGS -g"
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user