fix fuse compile on osx

SVN-Revision: 6807
This commit is contained in:
Felix Fietkau 2007-04-01 19:07:59 +00:00
parent 478fdc180a
commit d38f546994
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`