diff options
author | Markus Teich <markus.teich@stusta.mhn.de> | 2016-06-28 22:11:18 +0200 |
---|---|---|
committer | Markus Teich <markus.teich@stusta.mhn.de> | 2016-06-28 22:11:18 +0200 |
commit | 7a7729219f214d439e89c106553a9e1a6b39ad56 (patch) | |
tree | 42ab2ad475a6247ddf0b1b036b2adde18ef3ac3d | |
parent | 7975df02197ad12b323a0b000434ff794cdc94c2 (diff) |
replace pari with gcrypt in autofoo
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 7045a2f..8fb077e 100644 --- a/configure.ac +++ b/configure.ac @@ -14,10 +14,10 @@ AC_PROG_CC_C99 LT_INIT([pic-only]) # Checks for libraries. -AC_SEARCH_LIBS([pari_init], [pari], [], [AC_MSG_ERROR([unable to find the pari_init() function from libpari])]) +AC_SEARCH_LIBS([gcry_check_version], [gcrypt], [], [AC_MSG_ERROR([unable to find the gcry_check_version() function from libgcrypt])]) # Checks for header files. -AC_CHECK_HEADER(pari/pari.h, [], [AC_MSG_ERROR([unable to find the pari.h header file from libpari])], []) +AC_CHECK_HEADER(gcrypt.h, [], [AC_MSG_ERROR([unable to find the gcrypt.h header file from libgcrypt])], []) # Checks for typedefs, structures, and compiler characteristics. AC_TYPE_SIZE_T |