[Freeswitch-svn] [commit] r12793 - freeswitch/trunk/libs/esl/php

FreeSWITCH SVN mikej at freeswitch.org
Thu Mar 26 10:02:31 PDT 2009


Author: mikej
Date: Thu Mar 26 12:02:30 2009
New Revision: 12793

Log:
work around broken php-config that only takes one option at a time

Modified:
   freeswitch/trunk/libs/esl/php/Makefile

Modified: freeswitch/trunk/libs/esl/php/Makefile
==============================================================================
--- freeswitch/trunk/libs/esl/php/Makefile	(original)
+++ freeswitch/trunk/libs/esl/php/Makefile	Thu Mar 26 12:02:30 2009
@@ -1,5 +1,7 @@
 LOCAL_CFLAGS=$(shell php-config --includes)
-LOCAL_LDFLAGS=$(shell php-config --ldflags --libs)
+PHP_LDFLAGS=$(shell php-config --ldflags)
+PHP_LIBS=$(shell php-config --libs)
+LOCAL_LDFLAGS=$(PHP_LDFLAGS) $(PHP_LIBS)
 WRAP_GCC_WARNING_SILENCE=-Wno-unused-label -Wno-unused-function
 
 all: ESL.so



More information about the Freeswitch-svn mailing list