2011-07-15 19:03:13 +00:00
|
|
|
--- a/Makefile.am
|
|
|
|
+++ b/Makefile.am
|
2011-08-08 02:20:17 +00:00
|
|
|
@@ -1,3 +1,8 @@
|
|
|
|
+BASE=.
|
|
|
|
+
|
|
|
|
+include $(BASE)/../../../rules.mk
|
|
|
|
+include $(BASE)/../../../include/package.mk
|
|
|
|
+
|
|
|
|
EXTRA_DIST =
|
|
|
|
SUBDIRS = . src
|
|
|
|
AUTOMAKE_OPTS = foreign
|
|
|
|
@@ -299,7 +304,7 @@ endif
|
2011-07-15 19:03:13 +00:00
|
|
|
##
|
|
|
|
fs_encode_SOURCES = src/fs_encode.c
|
|
|
|
fs_encode_CFLAGS = $(AM_CFLAGS)
|
|
|
|
-fs_encode_LDFLAGS = $(AM_LDFLAGS) $(CORE_LIBS)
|
|
|
|
+fs_encode_LDFLAGS = $(AM_LDFLAGS) -lpthread $(CORE_LIBS)
|
|
|
|
fs_encode_LDADD = libfreeswitch.la
|
|
|
|
|
|
|
|
##
|
2011-08-08 02:20:17 +00:00
|
|
|
@@ -307,7 +312,7 @@ fs_encode_LDADD = libfreeswitch.la
|
2011-07-15 19:03:13 +00:00
|
|
|
##
|
|
|
|
tone2wav_SOURCES = src/tone2wav.c
|
|
|
|
tone2wav_CFLAGS = $(AM_CFLAGS)
|
|
|
|
-tone2wav_LDFLAGS = $(AM_LDFLAGS) $(CORE_LIBS)
|
|
|
|
+tone2wav_LDFLAGS = $(AM_LDFLAGS) -lpthread $(CORE_LIBS)
|
|
|
|
tone2wav_LDADD = libfreeswitch.la
|
|
|
|
|
|
|
|
##
|
2011-08-08 02:20:17 +00:00
|
|
|
@@ -585,10 +590,13 @@ speex-reconf:
|
2011-07-15 19:03:13 +00:00
|
|
|
|
|
|
|
tiff-reconf:
|
|
|
|
cd libs/tiff-3.8.2 && autoreconf -fi
|
|
|
|
- cd libs/tiff-3.8.2 && sh ./configure.gnu
|
2011-08-08 02:20:17 +00:00
|
|
|
+ cd libs/tiff-3.8.2 && sh ./configure.gnu --host=$(GNU_TARGET_NAME)
|
2011-07-15 19:03:13 +00:00
|
|
|
cd libs/spandsp && autoreconf -fi
|
|
|
|
- cd libs/spandsp && sh ./configure.gnu
|
|
|
|
- make mod_voipcodecs-clean
|
2011-08-08 02:20:17 +00:00
|
|
|
+ cd libs/spandsp && sh ./configure.gnu --host=$(GNU_TARGET_NAME) --prefix=$(prefix)
|
2011-07-15 19:03:13 +00:00
|
|
|
+ cd libs/tiff-3.8.2 && $(MAKE)
|
|
|
|
+
|
|
|
|
+spandsp-reconf: tiff-reconf
|
|
|
|
+ cd libs/spandsp && $(MAKE)
|
|
|
|
|
|
|
|
python-reconf:
|
|
|
|
rm -f src/mod/languages/mod_python/Makefile
|
2011-08-08 02:20:17 +00:00
|
|
|
@@ -611,12 +619,6 @@ iks-reconf:
|
2011-07-15 19:03:13 +00:00
|
|
|
cd libs/iksemel && sh ./configure.gnu --prefix=$(prefix)
|
|
|
|
$(MAKE) mod_dingaling-clean
|
|
|
|
|
|
|
|
-spandsp-reconf:
|
|
|
|
- cd libs/spandsp && $(MAKE) clean || echo
|
|
|
|
- cd libs/spandsp && autoreconf -fi
|
|
|
|
- cd libs/spandsp && sh ./configure.gnu --prefix=$(prefix)
|
|
|
|
- cd libs/spandsp && $(MAKE)
|
|
|
|
-
|
|
|
|
sofia-reconf:
|
|
|
|
cd libs/sofia-sip && sh ./autogen.sh
|
|
|
|
cd libs/sofia-sip && $(MAKE) clean
|