mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 04:35:19 +02:00
fix fuse compile on osx
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6807 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
3849ed1013
commit
54bdb08ab1
@ -62,6 +62,9 @@ define Package/libfuse
|
||||
This package contains the FUSE shared library, needed by other programs.
|
||||
endef
|
||||
|
||||
CONFIGURE_VARS += \
|
||||
kernsrcver="$(LINUX_VERSION)"
|
||||
|
||||
CONFIGURE_ARGS += \
|
||||
--enable-shared \
|
||||
--enable-static \
|
||||
|
13
package/fuse/patches/100-cross_compile.patch
Normal file
13
package/fuse/patches/100-cross_compile.patch
Normal file
@ -0,0 +1,13 @@
|
||||
--- fuse.old/kernel/configure 2007-04-01 21:04:47.000000000 +0200
|
||||
+++ fuse.dev/kernel/configure 2007-04-01 21:05:44.000000000 +0200
|
||||
@@ -1851,7 +1851,9 @@
|
||||
|
||||
{ echo "$as_me:$LINENO: checking kernel source version" >&5
|
||||
echo $ECHO_N "checking kernel source version... $ECHO_C" >&6; }
|
||||
- if test -r $kernelbuild/include/linux/version.h && fgrep -q UTS_RELEASE $kernelbuild/include/linux/version.h; then
|
||||
+ if [ -n "$kernsrcver" ]; then
|
||||
+ echo "$kernsrcver (cached)"
|
||||
+ elif test -r $kernelbuild/include/linux/version.h && fgrep -q UTS_RELEASE $kernelbuild/include/linux/version.h; then
|
||||
kernsrcver=`(echo "#include <linux/version.h>"; echo "kernsrcver=UTS_RELEASE") | cpp -I $kernelbuild/include | grep "^kernsrcver=" | cut -d \" -f 2`
|
||||
elif test -r $kernelbuild/include/linux/utsrelease.h && fgrep -q UTS_RELEASE $kernelbuild/include/linux/utsrelease.h; then
|
||||
kernsrcver=`(echo "#include <linux/utsrelease.h>"; echo "kernsrcver=UTS_RELEASE") | cpp -I $kernelbuild/include | grep "^kernsrcver=" | cut -d \" -f 2`
|
Loading…
Reference in New Issue
Block a user