diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-08-11 00:15:36 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-08-11 00:15:36 +0000 |
commit | eac3b567cdee40a3be435f879669a1205f8b51a0 (patch) | |
tree | e99796909dead2c8b58353b1b3903fb37db5e59c /package/libgd/Makefile | |
parent | 0b56edf44d834d828b1cc8aa841ebd5526029a0c (diff) | |
download | upstream-eac3b567cdee40a3be435f879669a1205f8b51a0.tar.gz upstream-eac3b567cdee40a3be435f879669a1205f8b51a0.tar.bz2 upstream-eac3b567cdee40a3be435f879669a1205f8b51a0.zip |
Disable freetype explicitly, since it is now included
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1607 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libgd/Makefile')
-rw-r--r-- | package/libgd/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/package/libgd/Makefile b/package/libgd/Makefile index c180dd8151..1f0776f046 100644 --- a/package/libgd/Makefile +++ b/package/libgd/Makefile @@ -23,10 +23,8 @@ $(PKG_BUILD_DIR)/.configured: $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ CPPFLAGS="-I$(STAGING_DIR)/usr/include" \ - LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ + LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \ LIBPNG12_CONFIG="$(STAGING_DIR)/usr/bin/libpng12-config" \ - sys_lib_dlsearch_path_spec="$(STAGING_DIR)/lib $(STAGING_DIR)/usr/lib" \ - sys_lib_search_path_spec="$(STAGING_DIR)/lib $(STAGING_DIR)/usr/lib" \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ @@ -51,6 +49,7 @@ $(PKG_BUILD_DIR)/.configured: --enable-static \ --disable-rpath \ --without-x \ + --without-freetype \ --with-png=$(STAGING_DIR)/usr \ ) touch $@ |