]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
put OPENSSL_CFLAGS and LIBS in modmake.rules.in at MikeJ's suggestion
authorAndrew Thompson <andrew@hijacked.us>
Wed, 17 Jun 2009 20:39:08 +0000 (20:39 +0000)
committerAndrew Thompson <andrew@hijacked.us>
Wed, 17 Jun 2009 20:39:08 +0000 (20:39 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13820 d0543943-73ff-0310-b7d9-9358b9ac24b2

build/modmake.rules.in
configure.in
src/mod/event_handlers/mod_event_multicast/Makefile [new file with mode: 0644]
src/mod/event_handlers/mod_event_multicast/Makefile.in [deleted file]

index 5b72e285da27a3134f7a2b3a91f7ae568177302f..dc1e64fecfc37ac61f6f992c32c7f07f55a998bd 100644 (file)
@@ -21,6 +21,9 @@ LIBCURL_CPPFLAGS=@LIBCURL_CPPFLAGS@
 CURL_DIR=$(switch_srcdir)/libs/curl
 CURLLA=$(CURL_DIR)/lib/libcurl.la
 
+OPENSSL_LIBS=@openssl_LIBS@
+OPENSSL_CFLAGS=@openssl_CFLAGS@
+
 LIBS=$(switch_builddir)/libfreeswitch.la
 DEFS=@DEFS@
 PREFIX = @prefix@
index c729f5669c779b8b4ce65637445a5a5b67edb217..c4fa96805a443e47d49818827dd2377e707afd96 100644 (file)
@@ -751,7 +751,6 @@ AC_CONFIG_FILES([Makefile
                 src/mod/languages/mod_java/Makefile
                 src/mod/languages/mod_python/Makefile
                 src/mod/event_handlers/mod_erlang_event/Makefile
-                src/mod/event_handlers/mod_event_multicast/Makefile
                 src/include/switch_am_config.h
                 build/getsounds.sh
                 build/getlib.sh
diff --git a/src/mod/event_handlers/mod_event_multicast/Makefile b/src/mod/event_handlers/mod_event_multicast/Makefile
new file mode 100644 (file)
index 0000000..2251807
--- /dev/null
@@ -0,0 +1,5 @@
+
+LOCAL_CFLAGS= $(openssl_CFLAGS)
+LOCAL_LDLAGS= $(openssl_LIBS)
+
+include ../../../../build/modmake.rules
diff --git a/src/mod/event_handlers/mod_event_multicast/Makefile.in b/src/mod/event_handlers/mod_event_multicast/Makefile.in
deleted file mode 100644 (file)
index 2b92024..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-
-LOCAL_CFLAGS= @openssl_CFLAGS@
-LOCAL_LDLAGS= @openssl_LIBS@
-
-include ../../../../build/modmake.rules