diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-10-07 09:58:23 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2015-10-07 15:43:45 +0200 |
commit | a038dbd7871bfe803c8052c49264e80f129507ea (patch) | |
tree | 38599e24c8c73d0bb98e875d68c8ef70aa1a67e9 /community/afpfs-ng/01-afpfs-ng-0.8.1-gcrypt.patch | |
parent | 65f4a9478485674a2f7d4fe2dc0f6191deb0c591 (diff) | |
download | aports-a038dbd7871bfe803c8052c49264e80f129507ea.tar.bz2 aports-a038dbd7871bfe803c8052c49264e80f129507ea.tar.xz |
community/afpfs-ng: move from main
only kodi needs it
Diffstat (limited to 'community/afpfs-ng/01-afpfs-ng-0.8.1-gcrypt.patch')
-rw-r--r-- | community/afpfs-ng/01-afpfs-ng-0.8.1-gcrypt.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/afpfs-ng/01-afpfs-ng-0.8.1-gcrypt.patch b/community/afpfs-ng/01-afpfs-ng-0.8.1-gcrypt.patch new file mode 100644 index 0000000000..7bcace2812 --- /dev/null +++ b/community/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] ) + ;; + |