]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix perlxsi broken by changes to allow icc
authorAnthony Minessale <anthony.minessale@gmail.com>
Thu, 30 Mar 2006 23:24:26 +0000 (23:24 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Thu, 30 Mar 2006 23:24:26 +0000 (23:24 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@988 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/languages/mod_perl/Makefile
src/mod/languages/mod_perl/perlxsi.c

index 86796fd817c9d64ff2994e543efdc223da518bb8..1c9566fc561460495a768808648d9d6dceab0f97 100644 (file)
@@ -16,10 +16,7 @@ all: depends $(MODNAME).$(DYNAMIC_LIB_EXTEN) fs_perl.$(DYNAMIC_LIB_EXTEN)
        || ((echo Sorry, you need to compile perl with threads and multiplicity.&& exit 1))
        @touch .perlok
 
-perlxsi.c: .perlok
-       perl -MExtUtils::Embed -e xsinit
-
-depends: perlxsi.c
+depends:
 
 %.o:  %.c
        $(CC) $(CFLAGS) -fPIC -c $< -o $@
index 9ca8fc1fb17805a0882e3b97647b0448fbae590c..c5978dab8918854a9ce56c4c98de543f35939918 100644 (file)
@@ -1,3 +1,6 @@
+#ifdef __ICC
+#pragma warning (disable:1419)
+#endif
 #include <EXTERN.h>
 #include <perl.h>