From: Florian Fainelli Date: Wed, 1 Aug 2012 18:40:25 +0000 (+0000) Subject: [package] appweb: fix linking against libdl X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=28150ab84bcc21240044103b8ae0bbd09ed601a3 [package] appweb: fix linking against libdl SVN-Revision: 32935 --- diff --git a/net/appweb/Makefile b/net/appweb/Makefile index d52e7aebd9..2437761e7a 100644 --- a/net/appweb/Makefile +++ b/net/appweb/Makefile @@ -46,10 +46,22 @@ define Package/appweb/description endef CONFIGURE_ARGS += \ - -q --defaults=release --shared --tune=size --without-php \ - --without-ssl --disable-angel --disable-samples --disable-access-log \ - --disable-complete-native --disable-complete-cross --webdir=/www \ - --logdir=/var/log --port=8000 --sslPort=8443 --config=flat + -q \ + --defaults=release \ + --shared \ + --tune=size \ + --without-php \ + --without-ssl \ + --disable-angel \ + --disable-samples \ + --disable-access-log \ + --disable-complete-native \ + --disable-complete-cross \ + --webdir=/www \ + --logdir=/var/log \ + --port=8000 \ + --sslPort=8443 \ + --config=flat define Build/Prepare tar xzf "$(DL_DIR)/$(PKG_SOURCE)" --strip-components 1 -C "$(PKG_BUILD_DIR)" @@ -60,7 +72,9 @@ define Build/Configure endef define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) $(TARGET_CONFIGURE_OPTS) + $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ + BLD_CC_DYN_LOAD=1 endef define Package/appweb/install