search for: lt_no_undefined

Displaying 11 results from an estimated 11 matches for "lt_no_undefined".

2012 Feb 05
1
[PATCH 2/2] OS/2 EMX natively uses AOUT so pass -f aout to NASM
...gt; > Unfortunately, this steps on my patch. Updated patch attached. Cygwin > really shouldn't be calling win32 API. > > On the otherhand, I can't seem to find any ntohl use(???). Yeah, I've got a patch in an un-merged branch that purges MINGW_WINSOCK_LIBS and reduces the LT_NO_UNDEFINED section to: case "$host" in *-*-cygwin|*mingw*|*emx*) # define this variable for enabling strict exports with # libtool; for now, it's supported by Win32 and OS/2 LT_NO_UNDEFINED="-no-undefined" ;; *) LT_NO_UNDEFINED= ;; esac AC_SUBST...
2013 Jul 21
1
[PATCH] Link with -no-undefined regardless of the OS
...e.ac +++ b/configure.ac @@ -129,19 +129,11 @@ AM_CONDITIONAL(FLaC__CPU_PPC_SPE, test "x$abi_spe" = xtrue) os_is_windows=no case "$host" in *-*-cygwin|*mingw*) - # define this variable for enabling strict exports with libtool; for now, it's supported by Win32 and OS/2 - LT_NO_UNDEFINED="-no-undefined" CPPFLAGS="-D__MSVCRT_VERSION__=0x0601 $CPPFLAGS" os_is_windows=yes ;; - *emx*) - LT_NO_UNDEFINED="-no-undefined" - ;; - *) - LT_NO_UNDEFINED= - ;; esac -AC_SUBST(LT_NO_UNDEFINED) + AM_CONDITIONAL(OS_IS_WINDOWS, test "x$os_is_windows&...
2012 Feb 05
2
[PATCH 2/2] OS/2 EMX natively uses AOUT so pass -f aout to NASM
Dave Yeo wrote: > --- > configure.ac | 1 + Both applied (first with a minor tweak). Thanks. Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/
2012 Dec 03
0
[PATCH 5/5] Update library version-info.
...03155f6..68a5628 100644 --- a/src/libFLAC++/Makefile.am +++ b/src/libFLAC++/Makefile.am @@ -46,7 +46,7 @@ EXTRA_DIST = \ libFLAC++.m4 # see 'http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning' for numbering convention -libFLAC___la_LDFLAGS = -version-info 8:0:3 @LT_NO_UNDEFINED@ +libFLAC___la_LDFLAGS = -version-info 9:0:3 @LT_NO_UNDEFINED@ libFLAC___la_LIBADD = ../libFLAC/libFLAC.la libFLAC___la_SOURCES = \ diff --git a/src/libFLAC/Makefile.am b/src/libFLAC/Makefile.am index a63a3d0..13ab593 100644 --- a/src/libFLAC/Makefile.am +++ b/src/libFLAC/Makefile.am @@ -106,7...
2013 Apr 18
1
[PATCH] Ensure AM_LDFLAGS is used consistently
...6bd1657..12dfe69 100644 --- a/src/libFLAC++/Makefile.am +++ b/src/libFLAC++/Makefile.am @@ -44,7 +44,7 @@ EXTRA_DIST = \ libFLAC++.m4 # see 'http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning' for numbering convention -libFLAC___la_LDFLAGS = -version-info 9:0:3 @LT_NO_UNDEFINED@ +libFLAC___la_LDFLAGS = $(AM_LDFLAGS) -version-info 9:0:3 @LT_NO_UNDEFINED@ libFLAC___la_LIBADD = ../libFLAC/libFLAC.la libFLAC___la_SOURCES = \ diff --git a/src/libFLAC/Makefile.am b/src/libFLAC/Makefile.am index aa0b8b6..84eadb9 100644 --- a/src/libFLAC/Makefile.am +++ b/src/libFLAC/Makefile...
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
2012 Feb 05
2
[PATCH 1/2] OS/2 also needs "-no-undefined" to build a DLL
...e "$host" in - *-*-cygwin|*mingw*) - # define this variable for enabling strict exports with libtool; for now, it's only supported by Win32 + *-*-cygwin|*mingw*|*emx*) + # define this variable for enabling strict exports with libtool; for now, it's supported by Win32 and OS/2 LT_NO_UNDEFINED="-no-undefined" + ;; + *-*-cygwin|*mingw*) # -lwsock32 only needed because of ntohl() usage, can get rid of after that's gone: MINGW_WINSOCK_LIBS=-lwsock32 ;; -- 1.7.2.3
2012 Dec 03
0
[PATCH 3/5] Hide symbols with gcc.
...-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_sources) + +# needed for test_libFLAC +libFLAC_static_la_LIBADD...
2013 Apr 01
1
flac 1.3.0pre3 pre-release
...------------- --- flac-1.3.0pre3/configure.ac.orig 2013-04-01 17:09:45 +0400 +++ flac-1.3.0pre3/configure.ac 2013-04-01 17:10:21 +0400 @@ -129,6 +129,7 @@ *-*-cygwin|*mingw*|*emx*) # define this variable for enabling strict exports with libtool; for now, it's supported by Win32 and OS/2 LT_NO_UNDEFINED="-no-undefined" + CPPFLAGS="-D__MSVCRT_VERSION__=0x0601 $CPPFLAGS" os_is_windows=yes ;; *) -------------- next part -------------- --- flac-1.3.0pre3/include/share/compat.h.orig 2013-04-01 16:24:18 +0400 +++ flac-1.3.0pre3/include/share/compat.h 2013-04-01 16:38:23 +040...
2012 Apr 07
1
[PATCH 2/2] Update and improve autotools build
...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 --- a/src/libFLAC/bitreader.c +++ b/src/libFLAC/bitreader.c @@ -117...
2013 Apr 01
17
flac 1.3.0pre3 pre-release
Hi all, The latest pre-release is here: http://downloads.xiph.org/releases/flac/beta/flac-1.3.0pre3.tar.xz but there will probably need to be at least one more. I've tested this on x86_64-linux powerpc-linux i386-openbsd5.2 i386-freebsd9 The majority of changes since the last pre-release is the addition of Janne Hyv?rinen's utf8 I/O functionality. Janne's