From 86e13d0462e0c09096e2b3b4c25a79ef5097bd64 Mon Sep 17 00:00:00 2001 From: reimar Date: Thu, 27 Apr 2006 19:06:25 +0000 Subject: use CPP/LDFLAGS if set (but warn about this), and set our CFLAGS before they are used by cc_check. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18320 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 73 +++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 43 insertions(+), 30 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 904f373c3f..acf4825e6e 100755 --- a/configure +++ b/configure @@ -512,6 +512,21 @@ for ac_option do --with-install=*) _install=`echo $ac_option | cut -d '=' -f 2 ` ;; + --enable-profile) + _profile='-p' + ;; + --disable-profile) + _profile= + ;; + --enable-debug) + _debug='-g' + ;; + --enable-debug=*) + _debug=`echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2` + ;; + --disable-debug) + _debug= + ;; esac done @@ -1473,6 +1488,28 @@ int main(void) { return 0; } EOF cc_check -pipe && _pipe="-pipe" && echores "yes" || echores "no" +# Checking for CFLAGS +_stripbinaries=yes +if test "$_profile" != "" || test "$_debug" != "" ; then + CFLAGS="-W -Wall -O2 $_march $_mcpu $_debug $_profile" + if test "$_cc_major" -ge "3" ; then + CFLAGS=`echo "$CFLAGS" | sed -e 's/\(-Wall\)/\1 -Wno-unused-parameter/'` + fi + _stripbinaries=no +elif test -z "$CFLAGS" ; then + CFLAGS="-O4 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer" +else + _warn_CFLAGS=yes +fi +if test -n "$LDFLAGS" ; then + _ld_extra="$_ld_extra $LDFLAGS" + _warn_CFLAGS=yes +fi +if test -n "$CPPFLAGS" ; then + _inc_extra="$_inc_extra $LDFLAGS" + _warn_CFLAGS=yes +fi + _prefix="/usr/local" # GOTCHA: the variables below defines the default behavior for autodetection @@ -1645,6 +1682,11 @@ for ac_option do --disable-cross-compile) ;; --install-path=*) ;; --with-install=*) ;; + --enable-profile) ;; + --disable-profile) ;; + --enable-debug) ;; + --enable-debug=*) ;; + --disable-debug) ;; # Real 2nd pass --enable-mencoder) _mencoder=yes ;; @@ -1982,21 +2024,6 @@ for ac_option do _xmmsplugindir=`echo $ac_option | cut -d '=' -f 2` ;; - --enable-profile) - _profile='-p' - ;; - --disable-profile) - _profile= - ;; - --enable-debug) - _debug='-g' - ;; - --enable-debug=*) - _debug=`echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2` - ;; - --disable-debug) - _debug= - ;; --enable-crash-debug) _crash_debug=yes ;; @@ -6972,20 +6999,6 @@ fi ############################################################################# -# Checking for CFLAGS -_stripbinaries=yes -if test "$_profile" != "" || test "$_debug" != "" ; then - CFLAGS="-W -Wall -O2 $_march $_mcpu $_debug $_profile" - if test "$_cc_major" -ge "3" ; then - CFLAGS=`echo "$CFLAGS" | sed -e 's/\(-Wall\)/\1 -Wno-unused-parameter/'` - fi - _stripbinaries=no -elif test -z "$CFLAGS" ; then - CFLAGS="-O4 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer" -else - _warn_CFLAGS=yes -fi - echocheck "automatic gdb attach" if test "$_crash_debug" = yes ; then _def_crash_debug='#define CRASH_DEBUG 1' @@ -8256,7 +8269,7 @@ fi if test "$_warn_CFLAGS" = yes; then cat <