mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 00:14:05 +02:00
Fix building when host and target systems are same arch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1584 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
ef946006a3
commit
9bf5291670
@ -71,7 +71,7 @@ $(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.prepared
|
|||||||
$(TARGET_CONFIGURE_OPTS) \
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
CFLAGS="$(TARGET_CFLAGS)" \
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
|
||||||
LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
|
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
|
||||||
ac_cv_linux_vers="2" \
|
ac_cv_linux_vers="2" \
|
||||||
./configure \
|
./configure \
|
||||||
--target=$(GNU_TARGET_NAME) \
|
--target=$(GNU_TARGET_NAME) \
|
||||||
|
24
package/ncurses/patches/500-cross.patch
Normal file
24
package/ncurses/patches/500-cross.patch
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
diff -ruN ncurses-5.2-orig/aclocal.m4 ncurses-5.2-6/aclocal.m4
|
||||||
|
--- ncurses-5.2-orig/aclocal.m4 2000-10-21 00:57:49.000000000 +0200
|
||||||
|
+++ ncurses-5.2-6/aclocal.m4 2005-08-09 14:50:15.000000000 +0200
|
||||||
|
@@ -1919,7 +1919,7 @@
|
||||||
|
EXTRA_LDFLAGS="$LOCAL_LDFLAGS $EXTRA_LDFLAGS"
|
||||||
|
fi
|
||||||
|
test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
|
||||||
|
- MK_SHARED_LIB='$(CC) -shared -Wl,-soname,`basename $[@] .$(REL_VERSION)`.$(ABI_VERSION),-stats,-lc -o $[@]'
|
||||||
|
+ MK_SHARED_LIB='$(CC) -shared -Wl,-soname,`basename $[@] .$(REL_VERSION)`.$(ABI_VERSION),-stats,$(LDFLAGS) -lc -o $[@]'
|
||||||
|
;;
|
||||||
|
openbsd2*)
|
||||||
|
CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
|
||||||
|
diff -ruN ncurses-5.2-orig/configure ncurses-5.2-6/configure
|
||||||
|
--- ncurses-5.2-orig/configure 2000-10-21 00:58:49.000000000 +0200
|
||||||
|
+++ ncurses-5.2-6/configure 2005-08-09 14:50:25.000000000 +0200
|
||||||
|
@@ -2660,7 +2660,7 @@
|
||||||
|
EXTRA_LDFLAGS="$LOCAL_LDFLAGS $EXTRA_LDFLAGS"
|
||||||
|
fi
|
||||||
|
test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
|
||||||
|
- MK_SHARED_LIB='$(CC) -shared -Wl,-soname,`basename $@ .$(REL_VERSION)`.$(ABI_VERSION),-stats,-lc -o $@'
|
||||||
|
+ MK_SHARED_LIB='$(CC) -shared -Wl,-soname,`basename $@ .$(REL_VERSION)`.$(ABI_VERSION),-stats,$(LDFLAGS) -lc -o $@'
|
||||||
|
;;
|
||||||
|
openbsd2*)
|
||||||
|
CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
|
Loading…
Reference in New Issue
Block a user