diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-06-19 05:29:46 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-06-19 05:29:46 +0000 |
commit | 188b89634ecb07a5d2eac4acc783b44ca1399d1c (patch) | |
tree | 0505b06d16d29f377375026363ef3baf9d9f96b3 /sysutils/rdup/files/patch-configure | |
parent | ranpwd uses /dev/random or /dev/urandom to generate cryptographically secure (diff) |
rdup is a utility inspired by rsync and the Plan9 way of doing backups.
rdup itself does not backup anything; it only prints a list of the names of
files that have changed since the last backup. It also handles files that are
removed, allowing for correct incremental backups.
Example scripts that implement a backup strategy are included.
(These scripts require GNU date and cp, which are not installed by
this FreeBSD port.)
WWW: http://miek.nl/projects/rdup
PR: ports/135532
Submitted by: corky1951 at comcast.net
Notes
Notes:
svn path=/head/; revision=236270
Diffstat (limited to 'sysutils/rdup/files/patch-configure')
-rw-r--r-- | sysutils/rdup/files/patch-configure | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sysutils/rdup/files/patch-configure b/sysutils/rdup/files/patch-configure new file mode 100644 index 000000000000..916edc1f0bac --- /dev/null +++ b/sysutils/rdup/files/patch-configure @@ -0,0 +1,20 @@ +--- configure.orig 2009-05-31 00:38:33.000000000 -0700 ++++ configure 2009-06-12 16:34:06.000000000 -0700 +@@ -5003,7 +5003,7 @@ + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lnettle $LIBS" ++LIBS="-lgmp -lnettle $LIBS" + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -5067,7 +5067,7 @@ + #define HAVE_LIBNETTLE 1 + _ACEOF + +- LIBS="-lnettle $LIBS" ++ LIBS="-lgmp -lnettle $LIBS" + + else + NETTLE_L="no" |