Displaying 3 results from an estimated 3 matches for "libspeex_la_ldflag".
Did you mean:
libspeex_la_ldflags
2007 Dec 03
2
[PATCH] Add Visual Studio 2008 Prject files
>> Does MinGW require any change to the autoconf files or does it work out
>> of the box.
>
> The changes are very, very minor. One change to configure.ac and
> if you want a windows DLL, you need a very minor changes to the
> Makefile.am.
>
> Neither of these changes interfere with Linux/Unix compiles.
Can you tell me what these changes are?
>> BTW, Windows
2007 Dec 03
3
[PATCH] Add Visual Studio 2008 Prject files
On 12/3/07, Erik de Castro Lopo <mle+la@mega-nerd.com> wrote:
> I just checked and there is nothing needed in configure.ac.
>
> In the Makefile.am that creates the shared library you need to add
> "-no-undefined" to the LDFLAGS variable like this:
>
> libspeex_la_LDFLAGS = -no-undefined @WHATEVER_WAS_THERE_BEFORE@
Which symbols will it export? I think default behaviour would be to export
all symbols, which is not good. So, is there way to pass *.def file to it?
--
Regards,
Alexander Chemeris.
SIPez LLC.
SIP VoIP, IM and Presence Consulting
http://www.SIPez.com...
2009 Dec 30
0
[PATCH] Link libspeexdsp with libfftw3 when needed
...---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/libspeex/Makefile.am b/libspeex/Makefile.am
index 6eef924..c9d81dc 100644
--- a/libspeex/Makefile.am
+++ b/libspeex/Makefile.am
@@ -45,6 +45,7 @@ noinst_HEADERS = arch.h bfin.h cb_search_arm4.h cb_search_bfin.h cb_search_s
libspeex_la_LDFLAGS = -no-undefined -version-info @SPEEX_LT_CURRENT@:@SPEEX_LT_REVISION@:@SPEEX_LT_AGE@
+libspeexdsp_la_LIBADD = @FFT_LIBS@
libspeexdsp_la_LDFLAGS = -no-undefined -version-info @SPEEX_LT_CURRENT@:@SPEEX_LT_REVISION@:@SPEEX_LT_AGE@
noinst_PROGRAMS = testenc testenc_wb testenc_uwb testdenoise testec...