diff options
author | Alexander Leidinger <netchild@FreeBSD.org> | 2002-10-08 09:23:42 +0000 |
---|---|---|
committer | Alexander Leidinger <netchild@FreeBSD.org> | 2002-10-08 09:23:42 +0000 |
commit | b62b785f2d2a132bb675c651ef2059261ca8876e (patch) | |
tree | 7fb1cc78b6b80a4f0c549b2ed78551e0b6cf9027 /audio/lame/files/patch-configure | |
parent | Upgrade to DBD-Sybase-0.94. (diff) |
- (finally) update to 3.92
- take over maintainership (after some months of maintainer timeout)
Note: I have write access to the LAME repository, I think this is enough
to justify this and the following decisions.
- remove gtk support (it's only useful for active mp3 algorithm developers,
and if you use it, you use the CVS version of it, so there's no need to
install it)
- don't add vorbis support from PR 39606:
* there are much better tools to encode ogg vorbis
* there's no support from the LAME developers (FreeBSD would be the
only OS with working vorbis in LAME)
* it will get removed in a later LAME version
Submitted by: many, see PRs
PR: 39606, 43255, 43727
Diffstat (limited to 'audio/lame/files/patch-configure')
-rw-r--r-- | audio/lame/files/patch-configure | 49 |
1 files changed, 35 insertions, 14 deletions
diff --git a/audio/lame/files/patch-configure b/audio/lame/files/patch-configure index a3fa48ff5677..a3ec2419a2fc 100644 --- a/audio/lame/files/patch-configure +++ b/audio/lame/files/patch-configure @@ -1,16 +1,37 @@ -diff -ruN lame-3.91.orig/configure lame-3.91/configure ---- configure.orig Wed Dec 26 02:59:42 2001 -+++ configure Thu Aug 15 23:54:44 2002 -@@ -5521,12 +5521,6 @@ +--- configure.orig Mon Apr 15 18:54:58 2002 ++++ configure Sat Aug 31 14:21:47 2002 +@@ -2733,7 +2733,7 @@ + if test "${GCC}" = "yes"; then + echo $ac_n "checking version of GCC""... $ac_c" 1>&6 + echo "configure:2736: checking version of GCC" >&5 +- GCC_version=`${CC} --version` ++ GCC_version=`${CC} --version | sed -n '1s/^[^ ]* (.*) //;s/ .*$//;1p'` + echo "$ac_t""${GCC_version}" 1>&6 + fi +@@ -5541,7 +5541,7 @@ + 3.*) + # -funroll-loops seems to produce buggy code with gcc 3.0.3 + OPTIMIZATION="-O -fomit-frame-pointer -ffast-math \ +- -funroll-loops -maccumulate-outgoing-args" ++ -funroll-loops" + ;; + *) + # default +@@ -5555,11 +5555,15 @@ + OPTIMIZATION_NORM="-fschedule-insns2" - if test "x$GCC" = "xyes"; then -- # gcc defaults. OS specific options go in versious sections below -- # from the gcc man pages: "there is no reason to use -pedantic" -- CFLAGS="-Wall -pipe ${CFLAGS}" -- -- -- OPTIMIZATION="-O3 -fomit-frame-pointer -ffast-math -funroll-loops" - case "${GCC_version}" in - 2.96*) - # for buggy version of gcc shipped with RH7.1, back of on some + OPTIMIZATION_FULL="-fmove-all-movables -freduce-all-givs \ +- -fsched-interblock -fbranch-count-reg -fforce-addr \ ++ -fbranch-count-reg -fforce-addr \ + -fforce-mem" + + case "${CONFIG_EXPOPT}" in + no) ++ # if someone supplies own CFLAGS, we don't add our own ++ if [ "X${ac_save_CFLAGS}" != "X" ]; then ++ OPTIMIZATION="" ++ fi + ;; + norm|yes) + OPTIMIZATION="${OPTIMIZATION} ${OPTIMIZATION_NORM}" |