1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-30 00:56:21 +03: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:
nbd 2007-04-01 19:07:59 +00:00
parent 3849ed1013
commit 54bdb08ab1
2 changed files with 16 additions and 0 deletions

View File

@ -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 \

View 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`