Displaying 4 results from an estimated 4 matches for "ldflags_save".
Did you mean:
cflags_save
2004 Jun 10
4
patches for xiph build setup
Hi,
I offered some time ago to do some build cleanup. Today I did so and
here's my slew of patches.
Basically, they
- touch ogg, vorbis, vorbis-tools and theora
- fix a bunch of autotools issues
- uniformize the use of them across the four
- fix compile/link flags
- use pkgconfig if it's available to detect flags
- for vorbis-tools, generate and use config.h
- add -uninstalled .pc stuff
2004 Jun 10
4
patches for xiph build setup
Hi,
I offered some time ago to do some build cleanup. Today I did so and
here's my slew of patches.
Basically, they
- touch ogg, vorbis, vorbis-tools and theora
- fix a bunch of autotools issues
- uniformize the use of them across the four
- fix compile/link flags
- use pkgconfig if it's available to detect flags
- for vorbis-tools, generate and use config.h
- add -uninstalled .pc stuff
2000 Dec 29
5
build process patches
...ix some problems with the build
process. These patches are relevant to the CVS head as of 30 Dec 2000.
Overview:
- Patch 1: Allowing the user to set CFLAGS/LDFLAGS before running
configure in all four modules. All these patches do is essentially:
cflags_save="$CFLAGS"
ldflags_save="$LDFLAGS"
# ... stuff to set CFLAGS and/or LDFLAGS
CFLAGS="$CFLAGS $cflags_save"
LDFLAGS="$LDFLAGS $ldflags_save"
Yes, there's other ways of doing it, but this was low-cost, easy to
understand, and modified very little configure.in code th...
2002 Aug 14
0
automake 1.6 compatability patch
...--------------------------------------
dnl Check for programs
dnl --------------------------------------------------
@@ -26,7 +27,6 @@
dnl Set build flags based on environment
dnl --------------------------------------------------
-AC_CANONICAL_HOST
casecflags_save="$CFLAGS"
ldflags_save="$LDFLAGS"
@@ -80,13 +80,19 @@
dnl --------------------------------------------------
dnl Allow tools to be selectively built
dnl --------------------------------------------------
-AC_ARG_ENABLE(ogg123, [ --disable-ogg123 Skip building ogg123], build_ogg123="$enableval",...