diff options
author | Britney Fransen <brfransen@gmail.com> | 2012-04-07 20:51:56 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2012-04-07 20:51:56 (GMT) |
commit | b7fc1ec472258c4c78841c21b76f44d2b1bbd4d4 (patch) | |
tree | 138b8563466da45b31009074821a284bb2596b16 /abs/extra/community/afpfs-ng/01-gcrypt.patch | |
parent | c8aee53fb3f23036ade52dca03812818c3650146 (diff) | |
download | linhes_pkgbuild-b7fc1ec472258c4c78841c21b76f44d2b1bbd4d4.zip linhes_pkgbuild-b7fc1ec472258c4c78841c21b76f44d2b1bbd4d4.tar.gz linhes_pkgbuild-b7fc1ec472258c4c78841c21b76f44d2b1bbd4d4.tar.bz2 |
afpfs-ng: Initial inclusion; dep of XBMC 11
Diffstat (limited to 'abs/extra/community/afpfs-ng/01-gcrypt.patch')
-rw-r--r-- | abs/extra/community/afpfs-ng/01-gcrypt.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/abs/extra/community/afpfs-ng/01-gcrypt.patch b/abs/extra/community/afpfs-ng/01-gcrypt.patch new file mode 100644 index 0000000..7bcace2 --- /dev/null +++ b/abs/extra/community/afpfs-ng/01-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] ) + ;; + |