diff options
| author | Nicolas Thill <nico@openwrt.org> | 2005-09-25 11:57:40 +0000 |
|---|---|---|
| committer | Nicolas Thill <nico@openwrt.org> | 2005-09-25 11:57:40 +0000 |
| commit | a683b63cb47592a4401e4ac085f64e6c0645d834 (patch) | |
| tree | 5999dd5a4cdff91f37c311afd9b5a4ed46e83b0c | |
| parent | 8f3be19d0393ba20c558d93581aefaee69b502cb (diff) | |
| download | upstream-a683b63cb47592a4401e4ac085f64e6c0645d834.tar.gz upstream-a683b63cb47592a4401e4ac085f64e6c0645d834.tar.bz2 upstream-a683b63cb47592a4401e4ac085f64e6c0645d834.zip | |
disable jpeg and xpm explicitly
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1992 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | openwrt/package/libgd/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/openwrt/package/libgd/Makefile b/openwrt/package/libgd/Makefile index 1f0776f046f..3d5d7457856 100644 --- a/openwrt/package/libgd/Makefile +++ b/openwrt/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 $@ |
