diff options
author | Memphiz <memphis@machzwo.de> | 2012-03-18 18:38:58 +0100 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2012-05-04 19:19:06 +0200 |
commit | 9347332977ff713f6c7d9caf11ee2f30bac351db (patch) | |
tree | ccd507909782f9fb6f526b7c208c2d64e4eef815 /lib/libnfs | |
parent | 009b2c171a15985b51293e873917b04efb8f4857 (diff) |
[nfs] - bump version to 1.3
Diffstat (limited to 'lib/libnfs')
-rw-r--r-- | lib/libnfs/001_fix_hanewin.patch | 12 | ||||
-rw-r--r-- | lib/libnfs/Makefile | 3 |
2 files changed, 1 insertions, 14 deletions
diff --git a/lib/libnfs/001_fix_hanewin.patch b/lib/libnfs/001_fix_hanewin.patch deleted file mode 100644 index 507fbe6988..0000000000 --- a/lib/libnfs/001_fix_hanewin.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- lib/libnfs.c 2011-09-02 12:45:30.000000000 +0200 -+++ lib/libnfs.c 2011-12-04 21:16:07.000000000 +0100 -@@ -666,6 +666,9 @@ - if (res->GETATTR3res_u.resok.obj_attributes.type == NF3DIR) { - st.st_mode |= S_IFDIR ; - } -+ if (res->GETATTR3res_u.resok.obj_attributes.type == NF3REG) { -+ st.st_mode |= S_IFREG ; -+ } - st.st_nlink = res->GETATTR3res_u.resok.obj_attributes.nlink; - st.st_uid = res->GETATTR3res_u.resok.obj_attributes.uid; - st.st_gid = res->GETATTR3res_u.resok.obj_attributes.gid; diff --git a/lib/libnfs/Makefile b/lib/libnfs/Makefile index 9bd186cba9..7cc22556c2 100644 --- a/lib/libnfs/Makefile +++ b/lib/libnfs/Makefile @@ -6,7 +6,7 @@ # lib name, version LIBNAME=libnfs -VERSION=0804e67 +VERSION=1.3.0 SOURCE=$(LIBNAME)-$(VERSION) # download location and format BASE_URL=http://mirrors.xbmc.org/build-deps/darwin-libs @@ -35,7 +35,6 @@ $(SOURCE): $(TARBALLS_LOCATION)/$(ARCHIVE) rm -rf $(SOURCE) $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) echo $(SOURCE) > .gitignore - cd $(SOURCE); patch -p0 < ../001_fix_hanewin.patch cd $(SOURCE);./bootstrap;$(CONFIGURE) $(SO_NAME): $(SOURCE) |