[Freeswitch-trunk] [commit] r13760 - freeswitch/trunk/libs/portaudio
FreeSWITCH SVN
mikej at freeswitch.org
Thu Jun 11 10:21:52 PDT 2009
Author: mikej
Date: Thu Jun 11 12:21:52 2009
New Revision: 13760
Log:
fix braindead portaudio trying to build with -shared when we specified --disable-shared
Modified:
freeswitch/trunk/libs/portaudio/Makefile.in
Modified: freeswitch/trunk/libs/portaudio/Makefile.in
==============================================================================
--- freeswitch/trunk/libs/portaudio/Makefile.in (original)
+++ freeswitch/trunk/libs/portaudio/Makefile.in Thu Jun 11 12:21:52 2009
@@ -40,7 +40,9 @@
PALIB = libportaudio.la
PAINC = include/portaudio.h
-PA_LDFLAGS = $(LDFLAGS) $(SHARED_FLAGS) -rpath $(libdir) -no-undefined -export-symbols-regex "(Pa|PaMacCore)_.*" -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
+PA_LDFLAGS = $(LDFLAGS) -rpath $(libdir) -no-undefined -export-symbols-regex "(Pa|PaMacCore)_.*" -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
+# we are building disable-shared but its still inserting flags for shared libs???
+# $(SHARED_FLAGS)
#MAKEFILE = Makefile
COMMON_OBJS = \
More information about the Freeswitch-trunk
mailing list