summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2019-04-16 23:32:39 +0200
committerLudovic Courtès <ludo@gnu.org>2019-04-17 11:53:53 +0200
commitf2d86ed0b3e371ee95cbc0098b7b2ccb757bc948 (patch)
tree3a95dfa7ff82d8621e034220aa60b67b645f3692 /configure.ac
parentab77b69eca6959c9ce946ca18d218aab8ade1cc1 (diff)
build: No longer substitute 'LIBGCRYPT'.
This had become useless since ca719424455465fca4b872c371daf2a46de88b33. * configure.ac (LIBGCRYPT): Remove. * guix/config.scm.in (%libgcrypt): Remove.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 0 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac
index 5d70de4beba..7e7ae02730d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -202,7 +202,6 @@ else
202 AC_MSG_RESULT([not found]) 202 AC_MSG_RESULT([not found])
203fi 203fi
204 204
205LIBGCRYPT="libgcrypt"
206LIBGCRYPT_LIBDIR="no" 205LIBGCRYPT_LIBDIR="no"
207LIBGCRYPT_PREFIX="no" 206LIBGCRYPT_PREFIX="no"
208 207
@@ -212,7 +211,6 @@ AC_ARG_WITH([libgcrypt-prefix],
212 yes|no) 211 yes|no)
213 ;; 212 ;;
214 *) 213 *)
215 LIBGCRYPT="$withval/lib/libgcrypt"
216 LIBGCRYPT_PREFIX="$withval" 214 LIBGCRYPT_PREFIX="$withval"
217 LIBGCRYPT_LIBDIR="$withval/lib" 215 LIBGCRYPT_LIBDIR="$withval/lib"
218 ;; 216 ;;
@@ -223,11 +221,9 @@ AC_ARG_WITH([libgcrypt-libdir],
223 [search for GNU libgcrypt's shared library in DIR])], 221 [search for GNU libgcrypt's shared library in DIR])],
224 [case "$withval" in 222 [case "$withval" in
225 yes|no) 223 yes|no)
226 LIBGCRYPT="libgcrypt"
227 LIBGCRYPT_LIBDIR="no" 224 LIBGCRYPT_LIBDIR="no"
228 ;; 225 ;;
229 *) 226 *)
230 LIBGCRYPT="$withval/libgcrypt"
231 LIBGCRYPT_LIBDIR="$withval" 227 LIBGCRYPT_LIBDIR="$withval"
232 ;; 228 ;;
233 esac]) 229 esac])
@@ -240,10 +236,6 @@ case "x$LIBGCRYPT_PREFIX$LIBGCRYPT_LIBDIR" in
240 ;; 236 ;;
241esac 237esac
242 238
243dnl Library name suitable for `dynamic-link'.
244AC_MSG_CHECKING([for libgcrypt shared library name])
245AC_MSG_RESULT([$LIBGCRYPT])
246AC_SUBST([LIBGCRYPT])
247AC_SUBST([LIBGCRYPT_PREFIX]) 239AC_SUBST([LIBGCRYPT_PREFIX])
248AC_SUBST([LIBGCRYPT_LIBDIR]) 240AC_SUBST([LIBGCRYPT_LIBDIR])
249 241