]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
pjproject_bundled: Fix issue with libasteriskpj needing libresample 90/4290/1
authorGeorge Joseph <gjoseph@digium.com>
Thu, 3 Nov 2016 16:55:06 +0000 (10:55 -0600)
committerGeorge Joseph <gjoseph@digium.com>
Thu, 3 Nov 2016 17:14:53 +0000 (12:14 -0500)
libresample is only needed by pjproject if we're building pjsua, which
we only do if TEST_FRAMEWORK is selected.  It's required by pjsua to
process audio which is needed by some testsuite tests.  Unfortunately,
pjproject relies on a newer version of libresample than the version
that ships by most distros so we need to compile the version that's
bundled with pjproject.  Since we only need it for pjsua, we DON'T want
it's symbols exposed when we actually build asterisk.

There was a problem however... TEST_FRAMEWORK is only known AFTER we've
already run ./configure on both asterisk and pjproject but pjproject's
./configure needs to test it to know whether to set up to build
libresample or not.  The previous way of figuring this out was to
always tell ./configure "yes" but not actually build the library.  This
caused an issue where building libasteriskpj was being told to include
libresample but it wasn't actually there.

The solution is to still do a default pjproject configure during an
asterisk ./configure but if makeopts or menuselect.makeopts changes
subsequently, we now reconfigure pjproject, taking into account the
current state of TEST_FRAMEWORK.  Previously, if makeopts or
menuselect.makeopts changed, only a recompile of pjproject was done.

Change-Id: I9b5d84c61384a3ae07fe30e85c49698378cc4685

third-party/pjproject/Makefile
third-party/pjproject/Makefile.rules

index 209e681cd7c674ef6128ae5886b6da42a2072701..106938b6cc9ea48a8a6f2e8269fe1fec8bff2526 100644 (file)
@@ -103,7 +103,12 @@ source/pjlib/include/pj/%.h: patches/%.h
        $(ECHO_PREFIX) Applying custom include file $<
        $(CMD_PREFIX) cp -f $< source/pjlib/include/pj/
 
-source/build.mak: Makefile.rules source/version.mak source/user.mak $(addprefix source/pjlib/include/pj/,$(notdir $(wildcard patches/*.h)))
+.rebuild_needed: $(wildcard ../../makeopts) $(wildcard ../../menuselect.makeopts)
+       $(ECHO_PREFIX) Rebuilding
+       $(CMD_PREFIX) $(MAKE) clean $(REALLY_QUIET)
+       @touch  .rebuild_needed
+
+source/build.mak: Makefile.rules source/version.mak source/user.mak $(addprefix source/pjlib/include/pj/,$(notdir $(wildcard patches/*.h))) .rebuild_needed
        $(ECHO_PREFIX) Configuring with $(PJPROJECT_CONFIG_OPTS)
        $(CMD_PREFIX) (cd source ; ./aconfigure $(QUIET_CONFIGURE) $(PJPROJECT_CONFIG_OPTS))
 
@@ -115,12 +120,7 @@ configure: source/build.mak
 echo_cflags: source/build.mak
        @echo $(PJ_CFLAGS)
 
-.rebuild_needed: ../../makeopts ../../menuselect.makeopts
-       $(ECHO_PREFIX) Rebuilding
-       $(CMD_PREFIX) $(MAKE) clean $(REALLY_QUIET)
-       @touch  .rebuild_needed
-
-libpj%.a: .rebuild_needed source/build.mak
+libpj%.a: source/build.mak
        $(ECHO_PREFIX) Compiling lib $(@F)
        $(CMD_PREFIX) $(MAKE) -C $(dir $(shell dirname $@))/build $(@F) $(REALLY_QUIET)
        -@rm -rf .rebuild_needed
index 531a259d305d19efe7897d5bb51cf61de6506b0e..ae4b6a5f9ee6c261b54a5ae714455d35ec79b0d2 100644 (file)
@@ -28,6 +28,10 @@ PJPROJECT_CONFIG_OPTS = --prefix=/opt/pjproject \
        --without-external-pa \
        --without-external-srtp
 
+ifeq ($(findstring TEST_FRAMEWORK,$(MENUSELECT_CFLAGS)),)
+    PJPROJECT_CONFIG_OPTS += --disable-resample --disable-g711-codec
+endif
+
 ifeq ($(shell uname -s),Linux)
     PJPROJECT_CONFIG_OPTS +=  --enable-epoll
 endif