From b59ff25c7199cf52684272be41eee82416f8b8a9 Mon Sep 17 00:00:00 2001 From: Anton Farygin Date: Thu, 16 Jul 2015 13:27:45 +0300 Subject: [PATCH] FS-7043: [build] fixed apr1 unresolved symbols in libfreeswitch.so.1.0.0 --- Makefile.am | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile.am b/Makefile.am index a77efe36b6..0af2f326c7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -121,16 +121,16 @@ CORE_CFLAGS += -I$(switch_builddir)/libs/tiff-4.0.2/libtiff -I$(switch_srcdir)/l APR_LIBS = $(AM_LIBAPU_LIBS) $(AM_LIBAPR_LIBS) CORE_LIBS= -if SYSTEM_APR -CORE_LIBS += $(AM_LIBAPR_LINKLIBTOOL) -else -CORE_LIBS += libs/apr/libapr-1.la -endif if SYSTEM_APRUTIL CORE_LIBS += $(AM_LIBAPU_LINKLIBTOOL) else CORE_LIBS += libs/apr-util/libaprutil-1.la endif +if SYSTEM_APR +CORE_LIBS += $(AM_LIBAPR_LINKLIBTOOL) +else +CORE_LIBS += libs/apr/libapr-1.la +endif if ENABLE_SRTP CORE_CFLAGS += -DENABLE_SRTP -- 2.47.2