diff --git a/build/modmake.rules.in b/build/modmake.rules.in index 5b72e285da..dc1e64fecf 100644 --- a/build/modmake.rules.in +++ b/build/modmake.rules.in @@ -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@ diff --git a/configure.in b/configure.in index c729f5669c..c4fa96805a 100644 --- a/configure.in +++ b/configure.in @@ -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 index 0000000000..2251807356 --- /dev/null +++ b/src/mod/event_handlers/mod_event_multicast/Makefile @@ -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 index 2b920243c3..0000000000 --- a/src/mod/event_handlers/mod_event_multicast/Makefile.in +++ /dev/null @@ -1,5 +0,0 @@ - -LOCAL_CFLAGS= @openssl_CFLAGS@ -LOCAL_LDLAGS= @openssl_LIBS@ - -include ../../../../build/modmake.rules