search for: libflac_la_ldflag

Displaying 14 results from an estimated 14 matches for "libflac_la_ldflag".

Did you mean: libflac_la_ldflags
2006 May 10
1
RE: Compile error on PPC linux
...in.orig 2005-02-04 21:23:37.000000000 -0500 +++ flac-1.1.2/src/libFLAC/Makefile.in 2006-04-30 20:30:00.000000000 -0400 @@ -399,7 +399,7 @@ rm -f "$${dir}/so_locations"; \ done libFLAC.la: $(libFLAC_la_OBJECTS) $(libFLAC_la_DEPENDENCIES) - $(LINK) -rpath $(libdir) $(libFLAC_la_LDFLAGS) $(libFLAC_la_OBJECTS) $(libFLAC_la_LIBADD) $(LIBS) + $(LINK) -rpath,$(libdir) $(libFLAC_la_LDFLAGS) $(libFLAC_la_OBJECTS) $(libFLAC_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- flac-1.1.2/src/libFLAC++/Makefile.in.orig 2005-02-04 21:23:37.000000000 -0500 +++ fla...
2004 Sep 10
2
libFLAC interface
Now that the new libFLAC interface has stabilized, I'm wondering if I should put out one more source release before 1.0? Or is it enough just to have you guys look it over? Binary compatibility should be easier to maintain now since 1) there are no structures passed or altered and 2) the constructors set reasonable defaults so that when parameters are added/ changed/deleted there should be a
2004 Sep 10
1
flac-1.0.3_beta released
...trying to sync up the library version with the > release > version. This is usually not a good idea, and the libtool manual > warns > against it. > > So was this an intentional change? Hmm... -r 1.20 of src/libFLAC/Makefile.am (also tagged with RELEASE_1_0_2__2001-12-03) has: libFLAC_la_LDFLAGS = -version-info 2:1:1 I wasn't trying to sync up the lib version with the release version. But the API has changed enough to get a new major rev according to libtool conventions (it has all of new, changed, and deleted interfaces). Josh __________________________________________________ D...
2012 Dec 03
0
[PATCH 5/5] Update library version-info.
...b/src/libFLAC/Makefile.am index a63a3d0..13ab593 100644 --- a/src/libFLAC/Makefile.am +++ b/src/libFLAC/Makefile.am @@ -106,7 +106,7 @@ extra_ogg_sources = \ ogg_mapping.c endif # see 'http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning' for numbering convention -libFLAC_la_LDFLAGS = -version-info 10:0:2 $(LOCAL_EXTRA_LDFLAGS) @LT_NO_UNDEFINED@ +libFLAC_la_LDFLAGS = -version-info 11:0:3 $(LOCAL_EXTRA_LDFLAGS) @LT_NO_UNDEFINED@ libFLAC_sources = \ bitmath.c \ -- 1.7.11.7
2013 Apr 18
1
[PATCH] Ensure AM_LDFLAGS is used consistently
...AC/Makefile.am b/src/libFLAC/Makefile.am index aa0b8b6..84eadb9 100644 --- a/src/libFLAC/Makefile.am +++ b/src/libFLAC/Makefile.am @@ -112,7 +112,7 @@ extra_ogg_sources = \ endif # see 'http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning' for numbering convention -libFLAC_la_LDFLAGS = -version-info 11:0:3 $(LOCAL_EXTRA_LDFLAGS) @LT_NO_UNDEFINED@ +libFLAC_la_LDFLAGS = $(AM_LDFLAGS) -version-info 11:0:3 $(LOCAL_EXTRA_LDFLAGS) @LT_NO_UNDEFINED@ libFLAC_sources = \ bitmath.c \ diff --git a/src/metaflac/Makefile.am b/src/metaflac/Makefile.am index bd54356..35460b1 100644 ---...
2013 Jul 21
1
[PATCH] Link with -no-undefined regardless of the OS
...AC/Makefile.am b/src/libFLAC/Makefile.am index 86155ab..939f706 100644 --- a/src/libFLAC/Makefile.am +++ b/src/libFLAC/Makefile.am @@ -113,7 +113,7 @@ extra_ogg_sources = \ endif # see 'http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning' for numbering convention -libFLAC_la_LDFLAGS = $(AM_LDFLAGS) -version-info 11:0:3 $(LOCAL_EXTRA_LDFLAGS) @LT_NO_UNDEFINED@ +libFLAC_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined -version-info 11:0:3 $(LOCAL_EXTRA_LDFLAGS) libFLAC_sources = \ bitmath.c \ -- 1.8.3.1
2012 Dec 03
4
[PATCH 1/5] Remove old GNU-stack sections from nasm files.
They are not needed since the section is defined in nasm.h. --- src/libFLAC/ia32/bitreader_asm.nasm | 4 ---- src/libFLAC/ia32/cpu_asm.nasm | 4 ---- src/libFLAC/ia32/fixed_asm.nasm | 4 ---- src/libFLAC/ia32/lpc_asm.nasm | 4 ---- src/libFLAC/ia32/stream_encoder_asm.nasm | 4 ---- 5 files changed, 20 deletions(-) diff --git
2004 Oct 06
0
flac-1.1.1 completely broken on linux/ppc and on macosx if built with the standard toolchain (not xcode)
...he as manual, and I could just > try > to figure what's supposed to do) > > there are -rpath $(libdir) when -rpath,$(libdir) should be used > > in src/libFLAC/Makefile > libFLAC.la: $(libFLAC_la_OBJECTS) $(libFLAC_la_DEPENDENCIES) > $(LINK) -rpath $(libdir) $(libFLAC_la_LDFLAGS) > $(libFLAC_la_OBJECTS) $(libFLAC_la_LIBADD) $(LIBS) > > > the final build still doesn't link correctly (the 2 altivec asm > function > aren't properly linked in, I haven't the time to investigate the > issue > yet=/) > > > More verbose repor...
2012 Dec 03
0
[PATCH 3/5] Hide symbols with gcc.
...nclude lib_LTLIBRARIES = libFLAC.la +noinst_LTLIBRARIES = libFLAC-static.la if DEBUG DEBUGCFLAGS = -DFLAC__OVERFLOW_DETECT endif @@ -106,7 +107,8 @@ extra_ogg_sources = \ endif # see 'http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning' for numbering convention libFLAC_la_LDFLAGS = -version-info 10:0:2 $(LOCAL_EXTRA_LDFLAGS) @LT_NO_UNDEFINED@ -libFLAC_la_SOURCES = \ + +libFLAC_sources = \ bitmath.c \ bitreader.c \ bitwriter.c \ @@ -125,3 +127,9 @@ libFLAC_la_SOURCES = \ stream_encoder_framing.c \ window.c \ $(extra_ogg_sources) + +libFLAC_la_SOURCES = $(libFLAC...
2004 Sep 10
0
1.0 source candidate
.../libFLAC/Makefile.am 2001/07/20 23:46:09 1.15 +++ src/libFLAC/Makefile.am 2001/07/21 01:58:17 @@ -31,11 +31,13 @@ else if FLaC__CPU_IA32 if FLaC__HAS_NASM -SUBDIRS = ia32 . +ARCH_SUBDIRS = ia32 libFLAC_la_LIBADD = ia32/libFLAC-asm.a endif endif endif + +SUBDIRS = $(ARCH_SUBDIRS) include . libFLAC_la_LDFLAGS = -version-info 1:0:0 Index: src/libFLAC/ia32/Makefile.am =================================================================== RCS file: /cvsroot/flac/flac/src/libFLAC/ia32/Makefile.am,v retrieving revision 1.6 diff -u -r1.6 Makefile.am --- src/libFLAC/ia32/Makefile.am 2001/07/20 23:46:09 1.6 +++...
2012 Apr 07
1
[PATCH 2/2] Update and improve autotools build
..._EXTRA_LIBADD) @OGG_LIBS@ +libFLAC_la_LIBADD = $(LOCAL_EXTRA_LIBADD) @OGG_LIBS@ -lm SUBDIRS = $(ARCH_SUBDIRS) include . @@ -104,7 +105,7 @@ extra_ogg_sources = \ ogg_mapping.c endif # see 'http://www.gnu.org/software/libtool/manual.html#Libtool-versioning' for numbering convention -libFLAC_la_LDFLAGS = -version-info 10:0:2 -lm $(LOCAL_EXTRA_LDFLAGS) @LT_NO_UNDEFINED@ +libFLAC_la_LDFLAGS = -version-info 10:0:2 $(LOCAL_EXTRA_LDFLAGS) @LT_NO_UNDEFINED@ libFLAC_la_SOURCES = \ bitmath.c \ bitreader.c \ diff --git a/src/libFLAC/bitreader.c b/src/libFLAC/bitreader.c index 7e17fd8..ae515a0 100644...
2004 Sep 10
5
1.0 source candidate
I rethought it and it seemed like a bad idea to post a big file, so you can get it here: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/flac/junk/flac-1.0-src-candidate.tar.bz2 Josh __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/
2004 Oct 06
3
flac-1.1.1 completely broken on linux/ppc and on macosx if built with the standard toolchain (not xcode)
...(the option there isn't present in the as manual, and I could just try to figure what's supposed to do) there are -rpath $(libdir) when -rpath,$(libdir) should be used in src/libFLAC/Makefile libFLAC.la: $(libFLAC_la_OBJECTS) $(libFLAC_la_DEPENDENCIES) $(LINK) -rpath $(libdir) $(libFLAC_la_LDFLAGS) $(libFLAC_la_OBJECTS) $(libFLAC_la_LIBADD) $(LIBS) the final build still doesn't link correctly (the 2 altivec asm function aren't properly linked in, I haven't the time to investigate the issue yet=/) More verbose report about the no altivec bug: If I disable altivec optim...
2004 Sep 10
11
flac-1.0.3_beta released
I have just released a source distribution which is the candidate for the 1.0.3 release. At this time I would ask anyone who is willing to help test it to do the following: 1. download the tarball and unzip it: http://prdownloads.sourceforge.net/flac/flac-1.0.3_beta-src.tar.gz?download 2. do ./configure && make && make check This will build all code and run all the tests.