diff options
Diffstat (limited to 'package/lzma/lzma.100-futimesat.patch')
-rw-r--r-- | package/lzma/lzma.100-futimesat.patch | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/package/lzma/lzma.100-futimesat.patch b/package/lzma/lzma.100-futimesat.patch deleted file mode 100644 index 06dc89f98..000000000 --- a/package/lzma/lzma.100-futimesat.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- lzma-4.32.0beta3.orig/src/lzma/lzmp.cpp 2006-07-06 23:58:46.000000000 +0200 -+++ lzma-4.32.0beta3/src/lzma/lzmp.cpp 2006-08-29 20:21:22.000000000 +0200 -@@ -47,7 +47,11 @@ typedef vector<string> stringVector; - - // For Solaris - #ifndef HAVE_FUTIMES -+#ifdef HAVE_FUTIMESAT - #define futimes(fd, tv) futimesat(fd, NULL, tv) -+#else -+#define futimes(fd, tv) 0 /* utimes(fd, NULL, tv)*/ -+#endif - #endif - - #if defined(_WIN32) || defined(OS2) || defined(MSDOS) |