From cc3a95c1dab431823981510699225c279871d3d4 Mon Sep 17 00:00:00 2001 From: Stefan Knoblich Date: Wed, 16 Jan 2008 11:42:01 +0000 Subject: [PATCH] Change order of libaprutil and libapr in CORE_LIBS, this fixes undefined apr_ symbols in libfreeswitch (libaprutil depends on libapr, symbols used by libaprutil but not by libfreeswitch object files were lost at link time (and added to the freeswitch binary)) git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7246 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index ad212c5240..0cadc50bfe 100644 --- a/Makefile.am +++ b/Makefile.am @@ -122,7 +122,7 @@ CORE_CFLAGS += -I$(switch_srcdir)/libs/srtp/include CORE_CFLAGS += -I$(switch_srcdir)/libs/srtp/crypto/include CORE_CFLAGS += $(RESAMPLE_CFLAGS) -CORE_LIBS = libs/apr/libapr-1.la libs/apr-util/libaprutil-1.la +CORE_LIBS = libs/apr-util/libaprutil-1.la libs/apr/libapr-1.la CORE_LIBS += libs/sqlite/libsqlite3.la libs/pcre/libpcre.la CORE_LIBS += libs/srtp/libsrtp.la $(RESAMPLE_LIB)