search for: cflags_sav

Displaying 6 results from an estimated 6 matches for "cflags_sav".

Did you mean: cflags_sev
2000 Aug 24
4
added check/define for int64_t
Sparc Solaris lacks an int64_t data type. I added a macro to detect/correct this problem. Jon Shiring Btw, in my quick tests, Vorbis successfully decodes ogg files on sparc solaris. The following should be added to configure.in after the calls to set SIZE64 ---------------------- dnl this is a test to see if int64_t is defined dnl this is because AC_CHECK_TYPE breaks on "long long"
2001 Jan 29
2
Mac OS X / Darwin patch for vorbis-tools
....in =================================================================== RCS file: /usr/local/cvsroot/vorbis-tools/configure.in,v retrieving revision 1.14 diff -u -p -r1.14 configure.in --- configure.in 2001/01/22 22:48:31 1.14 +++ configure.in 2001/01/30 01:46:02 @@ -17,6 +17,7 @@ cflags_save="$CFLAGS" AC_PROG_CC CFLAGS="$cflags_save" +AC_LIBTOOL_DLOPEN AM_PROG_LIBTOOL dnl -------------------------------------------------- @@ -32,6 +33,14 @@ dnl ------------------------------------ AC_CANONICAL_HOST +case $host in + *-*-darwin*) +...
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
...ere's an updated set of patches to fix 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...
2007 Aug 30
1
[PATCH] : Add -Wdeclaration-after-statement
...nl Library versioning V_LIB_CURRENT=4 @@ -170,6 +174,8 @@ CFLAGS="-O20 -Wall -Wextra -D__NO_MATH_INLINES -fsigned-char" PROFILE="-O20 -g -pg -D__NO_MATH_INLINES -fsigned-char" ;; esac + + AC_ADD_CFLAGS([-Wdeclaration-after-statement]) fi CFLAGS="$CFLAGS $cflags_save" @@ -228,6 +234,7 @@ AC_OUTPUT([ Makefile +m4/Makefile lib/Makefile lib/modes/Makefile lib/books/Makefile Index: Makefile.am =================================================================== --- Makefile.am (revision 13657) +++ Makefile.am (working copy) @@ -2,7 +2,7 @@ AUTOMAKE...