diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2013-01-07 23:07:13 +0100 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2013-01-07 23:12:43 +0100 |
commit | 59b52325609f16ef7f31d141d1234c345575ddc6 (patch) | |
tree | 3b5450e531762c8a8a584a2aba769238b53eaf8c /main/afpfs-ng/01-afpfs-ng-0.8.1-gcrypt.patch | |
parent | f9d6e74ab13741f91ede4875571b2ec75f1f5a15 (diff) | |
download | aports-59b52325609f16ef7f31d141d1234c345575ddc6.tar.bz2 aports-59b52325609f16ef7f31d141d1234c345575ddc6.tar.xz |
testing/afpfs-ng: move to main
Diffstat (limited to 'main/afpfs-ng/01-afpfs-ng-0.8.1-gcrypt.patch')
-rw-r--r-- | main/afpfs-ng/01-afpfs-ng-0.8.1-gcrypt.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/main/afpfs-ng/01-afpfs-ng-0.8.1-gcrypt.patch b/main/afpfs-ng/01-afpfs-ng-0.8.1-gcrypt.patch new file mode 100644 index 000000000..7bcace281 --- /dev/null +++ b/main/afpfs-ng/01-afpfs-ng-0.8.1-gcrypt.patch @@ -0,0 +1,26 @@ +diff -ru afpfs-ng-0.8.1/configure.ac afpfs-ng-0.8.1+iPhone/configure.ac +--- afpfs-ng-0.8.1/configure.ac 2008-03-08 16:23:12.000000000 +0000 ++++ afpfs-ng-0.8.1+iPhone/configure.ac 2010-10-24 05:26:15.000000000 +0000 +@@ -50,21 +50,6 @@ + case $host in + *-*-darwin*) + AC_MSG_CHECKING([for correct gcrypt version]) +- AC_RUN_IFELSE( +- [AC_LANG_PROGRAM([ +- #include <gcrypt.h> +- #include <stdio.h>],[ +- char*p= GCRYPT_VERSION; +- unsigned int vers; +- vers=atoi(p)*10000; +- p=strchr(p,'.')+1; +- vers+=atoi(p)*100; +- p=strchr(p,'.')+1; +- vers+=atoi(p); +- if (vers<10400) return 1; +- ])], +- [AC_MSG_RESULT([yes])], +- [AC_MSG_ERROR([version is < 1.4.0])]) + AM_CONDITIONAL(HAVE_LIBGCRYPT, true) + AC_DEFINE([HAVE_LIBGCRYPT], [1] ) + ;; + |