mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-22 18:34:41 +02:00
[guile] fix compile error by John Moore
Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
This commit is contained in:
parent
5efb573098
commit
5492fb2154
@ -6,6 +6,9 @@
|
|||||||
# See /LICENSE for more information.
|
# See /LICENSE for more information.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# modified 02/05/2010
|
||||||
|
# author: jmoore@zedstar.org
|
||||||
|
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=guile
|
PKG_NAME:=guile
|
||||||
@ -24,7 +27,7 @@ define Package/guile
|
|||||||
TITLE:=guile
|
TITLE:=guile
|
||||||
SECTION:=lang
|
SECTION:=lang
|
||||||
CATEGORY:=Languages
|
CATEGORY:=Languages
|
||||||
DEPENDS:=+libgmp +libpthread +libltdl @BROKEN
|
DEPENDS:=+libgmp +libpthread +libltdl +libncurses +libreadline
|
||||||
URL:=http://savannah.gnu.org/projects/guile/
|
URL:=http://savannah.gnu.org/projects/guile/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
@ -34,7 +37,12 @@ endef
|
|||||||
|
|
||||||
TARGET_LDFLAGS+="-Wl,-rpath-link=$(STAGING_DIR)/usr/lib"
|
TARGET_LDFLAGS+="-Wl,-rpath-link=$(STAGING_DIR)/usr/lib"
|
||||||
|
|
||||||
CONFIGURE_ARGS += --without-threads
|
# should fix issue with threads
|
||||||
|
CONFIGURE_ARGS += --without-threads --without-gettext
|
||||||
|
|
||||||
|
define Build/Compile
|
||||||
|
(cd $(PKG_BUILD_DIR); autoreconf --force --install || exit 0);
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/guile/install
|
define Package/guile/install
|
||||||
$(INSTALL_DIR) $(1)/usr/bin
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
|
Loading…
Reference in New Issue
Block a user