diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-20 15:51:50 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-20 15:53:25 +0000 |
commit | 7a0b6bcc0bc61677944d7ab3f8e635347fd32353 (patch) | |
tree | fe30af7d9fffc65291d2cc84832315e8cd50f94d /testing/fuse/fuse-iconv.patch | |
parent | 8ead7a5dd2a21b3c51cab6f740c6f63c9fe31896 (diff) | |
download | aports-7a0b6bcc0bc61677944d7ab3f8e635347fd32353.tar.bz2 aports-7a0b6bcc0bc61677944d7ab3f8e635347fd32353.tar.xz |
testing/fuse: new aport
A library that makes it possible to implement a filesystem in a userspace program.
http://fuse.sourceforge.net/
Needed by sshfs (ref #210) and open-vm-tools (ref #193)
Diffstat (limited to 'testing/fuse/fuse-iconv.patch')
-rw-r--r-- | testing/fuse/fuse-iconv.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/fuse/fuse-iconv.patch b/testing/fuse/fuse-iconv.patch new file mode 100644 index 000000000..4710f576f --- /dev/null +++ b/testing/fuse/fuse-iconv.patch @@ -0,0 +1,24 @@ +diff --git a/lib/Makefile.am b/lib/Makefile.am +index 3eec119..c7414ac 100644 +--- a/lib/Makefile.am ++++ b/lib/Makefile.am +@@ -11,8 +11,10 @@ else + mount_source = mount.c mount_util.c mount_util.h + endif + ++libfuse_la_LDFLAGS = + if ICONV + iconv_source = modules/iconv.c ++libfuse_la_LDFLAGS += -liconv + else + iconv_source = + endif +@@ -35,7 +37,7 @@ libfuse_la_SOURCES = \ + $(iconv_source) \ + $(mount_source) + +-libfuse_la_LDFLAGS = @libfuse_libs@ -version-number 2:8:1 \ ++libfuse_la_LDFLAGS += @libfuse_libs@ -version-number 2:8:1 \ + -Wl,--version-script,$(srcdir)/fuse_versionscript + + libulockmgr_la_SOURCES = ulockmgr.c |