From: <abe...@us...> - 2013-07-23 04:16:29
|
Revision: 6150 http://sourceforge.net/p/astlinux/code/6150 Author: abelbeck Date: 2013-07-23 04:16:26 +0000 (Tue, 23 Jul 2013) Log Message: ----------- asterisk, add dependency for util-linux, starting with Asterisk 11.5.0 libuuid is required at build time to build res_rtp_asterisk. Since we build libuuid as a part of util-linux for all configs anyway, it does no harm to make all versions of Asterisk dependent on util-linux so util-linux is built earlier Modified Paths: -------------- branches/1.0/package/asterisk/Config.in branches/1.0/package/asterisk/asterisk.mk Modified: branches/1.0/package/asterisk/Config.in =================================================================== --- branches/1.0/package/asterisk/Config.in 2013-07-22 20:29:44 UTC (rev 6149) +++ branches/1.0/package/asterisk/Config.in 2013-07-23 04:16:26 UTC (rev 6150) @@ -6,6 +6,7 @@ select BR2_PACKAGE_OPENSSL select BR2_PACKAGE_LIBELF select BR2_PACKAGE_LIBTOOL + select BR2_PACKAGE_UTIL_LINUX select BR2_PACKAGE_SQLITE help Asterisk - the Open Source PBX Modified: branches/1.0/package/asterisk/asterisk.mk =================================================================== --- branches/1.0/package/asterisk/asterisk.mk 2013-07-22 20:29:44 UTC (rev 6149) +++ branches/1.0/package/asterisk/asterisk.mk 2013-07-23 04:16:26 UTC (rev 6150) @@ -210,7 +210,7 @@ touch $@ $(ASTERISK_DIR)/.configured: $(ASTERISK_DIR)/.patched | libelf ncurses zlib \ - openssl libtool $(ASTERISK_EXTRAS) + openssl libtool util-linux $(ASTERISK_EXTRAS) (cd $(ASTERISK_DIR); rm -rf config.cache configure; \ ./bootstrap.sh; \ $(TARGET_CONFIGURE_OPTS) \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |