Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joshua Root
libaacs
Commits
41b0365d
Commit
41b0365d
authored
Feb 09, 2012
by
hpi1
Committed by
Ano Nymous
Feb 18, 2012
Browse files
Added configure option for libgcrypt prefix
parent
1989edb8
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
41b0365d
????-??-??:
- Added configure option for libgcrypt prefix
- Fixed building Win32 DLL
- Fixed segfault when mount point path can't be resolved
- Do not export internal symbols from generated parser/lexer
...
...
configure.ac
View file @
41b0365d
...
...
@@ -119,6 +119,17 @@ if test "${SYS}" != "mingw32" ; then
fi
# gcrypt check
AC_ARG_WITH(libgcrypt-prefix,
AC_HELP_STRING([--with-libgcrypt-prefix=PFX],
[prefix where libgcrypt is installed (optional)]),
libgcrypt_config_prefix="$withval", libgcrypt_config_prefix="")
if test x$libgcrypt_config_prefix != x ; then
if test x${LIBGCRYPT_CONFIG+set} != xset ; then
LIBGCRYPT_CONFIG=$libgcrypt_config_prefix/bin/libgcrypt-config
fi
fi
AC_PATH_PROG(LIBGCRYPT_CONFIG, libgcrypt-config, no)
if test x"$LIBGCRYPT_CONFIG" = xno; then
AC_MSG_ERROR([libgcrypt not found on system])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment