diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-06-30 17:15:20 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-06-30 17:15:20 +0000 |
commit | 1f8cd43b7357f32439b1fd1a826951ba69d51798 (patch) | |
tree | 55cfbc9df1c1e943f705c2ed69b53f220954d922 /audio/alsaplayer/files/patch-configure | |
parent | It seems MySQL 4.X support in 2.1.14 is still incomplete. (diff) |
Add alsaplayer, an audio player with pitch control and a GTK+ GUI.
PR: 43142
Submitted by: Robin Schilham <co9@xs4all.nl> (based on)
Notes
Notes:
svn path=/head/; revision=83910
Diffstat (limited to 'audio/alsaplayer/files/patch-configure')
-rw-r--r-- | audio/alsaplayer/files/patch-configure | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/audio/alsaplayer/files/patch-configure b/audio/alsaplayer/files/patch-configure new file mode 100644 index 000000000000..e5b0eb1bb0b0 --- /dev/null +++ b/audio/alsaplayer/files/patch-configure @@ -0,0 +1,60 @@ +--- configure.orig Wed Apr 23 19:21:24 2003 ++++ configure Mon Jun 30 00:08:58 2003 +@@ -2591,13 +2591,13 @@ + CFLAGS=$ac_save_CFLAGS + elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then +- CFLAGS="-g -O2" ++ CFLAGS="-g" + else + CFLAGS="-g" + fi + else + if test "$GCC" = yes; then +- CFLAGS="-O2" ++ CFLAGS="" + else + CFLAGS= + fi +@@ -3419,13 +3419,13 @@ + CXXFLAGS=$ac_save_CXXFLAGS + elif test $ac_cv_prog_cxx_g = yes; then + if test "$GXX" = yes; then +- CXXFLAGS="-g -O2" ++ CXXFLAGS="-g" + else + CXXFLAGS="-g" + fi + else + if test "$GXX" = yes; then +- CXXFLAGS="-O2" ++ CXXFLAGS="" + else + CXXFLAGS= + fi +@@ -8351,6 +8351,7 @@ + + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++$ac_aux_dir/ltconfig $LIBTOOL_DEPS + + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' +@@ -14618,7 +14619,7 @@ + echo "$as_me:$LINENO: checking for gcc optimization flags" >&5 + echo $ECHO_N "checking for gcc optimization flags... $ECHO_C" >&6 + old_cflags=$CFLAGS +-CFLAGS="$CFLAGS -O2 -fexpensive-optimizations -funroll-loops -finline-functions -ffast-math -Wall" ++CFLAGS="$CFLAGS -fexpensive-optimizations -funroll-loops -finline-functions -ffast-math -Wall" + cat >conftest.$ac_ext <<_ACEOF + #line $LINENO "configure" + /* confdefs.h. */ +@@ -14647,7 +14648,7 @@ + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then +- EXTRA_OPT_CFLAGS="-O2 -fexpensive-optimizations -funroll-loops -finline-functions -ffast-math -Wall" ++ EXTRA_OPT_CFLAGS="-fexpensive-optimizations -funroll-loops -finline-functions -ffast-math -Wall" + else + echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 |