From bac6270c371f57bec5387f01f1fc10d858efcb99 Mon Sep 17 00:00:00 2001 From: sthen Date: Fri, 3 Jun 2011 16:08:01 +0000 Subject: [PATCH] Fix asterisk build on a clean box; there is a bogus dependency on libltdl recorded in asterisk's menuselect system, knocking out ODBC build if not present (though this is only done, afaict, due to a missing dependency in a unixodbc package on some linux version), so add libltdl as a BUILD_DEPENDS. Doesn't affect the packages, other than -odbc wasn't built before unless you had libltdl installed, so no bump. --- telephony/asterisk/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/telephony/asterisk/Makefile b/telephony/asterisk/Makefile index 7435789e69f..8a4179e0a1b 100644 --- a/telephony/asterisk/Makefile +++ b/telephony/asterisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.115 2011/06/02 20:10:01 sthen Exp $ +# $OpenBSD: Makefile,v 1.116 2011/06/03 16:08:01 sthen Exp $ SHARED_ONLY= Yes COMMENT-main= open source multi-protocol PBX and telephony toolkit @@ -65,7 +65,8 @@ CONFIGURE_STYLE= gnu AUTOCONF_VERSION= 2.65 AUTOMAKE_VERSION= 1.10 BUILD_DEPENDS+= ${MODGNU_AUTOCONF_DEPENDS} \ - ${MODGNU_AUTOMAKE_DEPENDS} + ${MODGNU_AUTOMAKE_DEPENDS} \ + devel/libtool,-ltdl # bogus dependencies in menuselect CPPFLAGS+= -I${X11BASE}/include -I${LOCALBASE}/include LDFLAGS+= -L${X11BASE}/lib -L${LOCALBASE}/lib