diff options
Diffstat (limited to 'testing/csync2/have-strlcpy.patch')
-rw-r--r-- | testing/csync2/have-strlcpy.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/testing/csync2/have-strlcpy.patch b/testing/csync2/have-strlcpy.patch deleted file mode 100644 index 394e1ec4b8..0000000000 --- a/testing/csync2/have-strlcpy.patch +++ /dev/null @@ -1,30 +0,0 @@ ---- old/configure.ac -+++ new/configure.ac -@@ -43,7 +43,7 @@ - - - dnl inspired by rsync's configure.ac --AC_CHECK_FUNCS(fchmod setmode open64 mkstemp64) -+AC_CHECK_FUNCS(strlcpy fchmod setmode open64 mkstemp64) - AC_CACHE_CHECK([for secure mkstemp],csync_cv_HAVE_SECURE_MKSTEMP,[ - AC_TRY_RUN([#include <stdlib.h> - #include <sys/types.h> ---- old/rsync.c -+++ new/rsync.c -@@ -38,7 +38,7 @@ - #include <w32api/windows.h> - #endif - -- -+#ifndef HAVE_STRLCPY - /* This has been taken from rsync:lib/compat.c */ - - /** -@@ -61,6 +61,7 @@ - } - return ret; - } -+#endif - - /* splits filepath at the last '/', if any, like so: - * dirname basename filepath |