summaryrefslogtreecommitdiffstats
path: root/package/libgd
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-09-25 11:57:40 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-09-25 11:57:40 +0000
commiteb551338ee7e9d1d19e821f9ba045c303c43e964 (patch)
tree7f7c0d26127bf7c0d59cdba041b4948d49450e30 /package/libgd
parentb30ef16d9a00a6e43661b02d4e40fc2032ca5953 (diff)
disable jpeg and xpm explicitly
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1992 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libgd')
-rw-r--r--package/libgd/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/package/libgd/Makefile b/package/libgd/Makefile
index 1f0776f04..3d5d74578 100644
--- a/package/libgd/Makefile
+++ b/package/libgd/Makefile
@@ -22,8 +22,8 @@ $(PKG_BUILD_DIR)/.configured:
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS)" \
- CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
- LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \
+ CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
+ LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
LIBPNG12_CONFIG="$(STAGING_DIR)/usr/bin/libpng12-config" \
./configure \
--target=$(GNU_TARGET_NAME) \
@@ -48,9 +48,12 @@ $(PKG_BUILD_DIR)/.configured:
--enable-shared \
--enable-static \
--disable-rpath \
+ --with-gnu-ld \
--without-x \
--without-freetype \
+ --without-jpeg \
--with-png=$(STAGING_DIR)/usr \
+ --without-xpm \
)
touch $@