diff options
Diffstat (limited to 'unmaintained/csync2/have-strlcpy.patch')
-rw-r--r-- | unmaintained/csync2/have-strlcpy.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/unmaintained/csync2/have-strlcpy.patch b/unmaintained/csync2/have-strlcpy.patch new file mode 100644 index 0000000000..394e1ec4b8 --- /dev/null +++ b/unmaintained/csync2/have-strlcpy.patch @@ -0,0 +1,30 @@ +--- 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 |