summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-10-20 03:00:29 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-10-20 03:00:29 +0000
commit0f38239fa27ff22335d1ce052030593a5c1e4de9 (patch)
treee61bc37bbdf949df469ec68c4172f63122bd3c57 /target
parent9b460ff9a06fefd1287dc6067198a83ab6ab65c2 (diff)
update fuse to new upstream release (v2.4.1) (thanks to Christian Magnusson)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2186 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/package/fuse/Makefile60
-rw-r--r--target/linux/package/fuse/patches/102-cflags_configure.patch22
2 files changed, 31 insertions, 51 deletions
diff --git a/target/linux/package/fuse/Makefile b/target/linux/package/fuse/Makefile
index 02148cabd..0240bdc71 100644
--- a/target/linux/package/fuse/Makefile
+++ b/target/linux/package/fuse/Makefile
@@ -4,9 +4,9 @@ include $(TOPDIR)/rules.mk
include ../../rules.mk
PKG_NAME:=fuse
-PKG_VERSION:=2.3.0
+PKG_VERSION:=2.4.1
PKG_RELEASE:=1
-PKG_MD5SUM:=0bee98df5b2a29841f75fc188975eabc
+PKG_MD5SUM:=553bd9c5a4f3cd27f3e2b93844711e4c
PKG_SOURCE_URL:=@SF/$(PKG_NAME)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
@@ -33,33 +33,35 @@ $(PKG_BUILD_DIR)/.configured:
touch configure ; \
$(TARGET_CONFIGURE_OPTS) \
./configure \
- --target=$(GNU_TARGET_NAME) \
- --host=$(GNU_TARGET_NAME) \
- --build=$(GNU_HOST_NAME) \
- --program-prefix="" \
- --program-suffix="" \
- --prefix=/usr \
- --exec-prefix=/usr \
- --bindir=/usr/bin \
- --datadir=/usr/share \
- --includedir=/usr/include \
- --infodir=/usr/share/info \
- --libdir=/usr/lib \
- --libexecdir=/usr/lib \
- --localstatedir=/var \
- --mandir=/usr/share/man \
- --sbindir=/usr/sbin \
- --sysconfdir=/etc \
- $(DISABLE_LARGEFILE) \
- $(DISABLE_NLS) \
- --enable-shared \
- --enable-static \
- --enable-kernel-module \
- --disable-lib \
- --disable-util \
- --disable-example \
- --disable-auto-modprobe \
- --with-kernel=$(KERNEL_DIR) \
+ --target=$(GNU_TARGET_NAME) \
+ --host=$(GNU_TARGET_NAME) \
+ --build=$(GNU_HOST_NAME) \
+ --program-prefix="" \
+ --program-suffix="" \
+ --prefix=/usr \
+ --exec-prefix=/usr \
+ --bindir=/usr/bin \
+ --datadir=/usr/share \
+ --includedir=/usr/include \
+ --infodir=/usr/share/info \
+ --libdir=/usr/lib \
+ --libexecdir=/usr/lib \
+ --localstatedir=/var \
+ --mandir=/usr/share/man \
+ --sbindir=/usr/sbin \
+ --sysconfdir=/etc \
+ $(DISABLE_LARGEFILE) \
+ $(DISABLE_NLS) \
+ --enable-shared \
+ --enable-static \
+ --disable-rpath \
+ --enable-kernel-module \
+ --disable-lib \
+ --disable-util \
+ --disable-example \
+ --disable-auto-modprobe \
+ --with-kernel=$(KERNEL_DIR) \
+ --disable-mtab \
);
touch $@
diff --git a/target/linux/package/fuse/patches/102-cflags_configure.patch b/target/linux/package/fuse/patches/102-cflags_configure.patch
deleted file mode 100644
index b358ab4ec..000000000
--- a/target/linux/package/fuse/patches/102-cflags_configure.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- fuse-2.2.1-orig/configure 2005-03-08 15:48:57.000000000 +0100
-+++ fuse-2.2.1-1/configure 2005-04-06 14:39:18.000000000 +0200
-@@ -9354,7 +9354,7 @@
-
- fi
-
--CFLAGS="-Wall -W -g -O2"
-+[ -z "$CFLAGS" ] && CFLAGS="-Wall -W -g -O2"
- CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DFUSE_USE_VERSION=22"
-
- # Check whether --enable-kernel-module or --disable-kernel-module was given.
---- fuse-2.2.1-orig/configure.in 2005-03-08 15:39:23.000000000 +0100
-+++ fuse-2.2.1-1/configure.in 2005-04-06 14:39:20.000000000 +0200
-@@ -13,7 +13,7 @@
- AC_SUBST(mkdir_p)
- fi
-
--CFLAGS="-Wall -W -g -O2"
-+[ -z "$CFLAGS" ] && CFLAGS="-Wall -W -g -O2"
- CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DFUSE_USE_VERSION=22"
-
- AC_ARG_ENABLE(kernel-module,