diff options
author | Tim Rühsen <tim.ruehsen@gmx.de> | 2019-01-17 10:22:45 +0100 |
---|---|---|
committer | Tim Rühsen <tim.ruehsen@gmx.de> | 2019-01-17 11:22:27 +0100 |
commit | adb31e778c28ef821a173dd5d98585b525c53665 (patch) | |
tree | 98cc2f7db8bc1f001a6e9f0ba99d080799652a53 /configure.ac | |
parent | b527be10f829e286130705dfd14f8bb5661e7f35 (diff) | |
download | gnutls-adb31e778c28ef821a173dd5d98585b525c53665.tar.gz |
Fix gnutls.pc for multiarch buildstmp-fix-libs-private
Signed-off-by: Tim Rühsen <tim.ruehsen@gmx.de>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index e81ff89709..c21660c3f3 100644 --- a/configure.ac +++ b/configure.ac @@ -365,17 +365,17 @@ AC_ARG_WITH(included-unistring, AS_HELP_STRING([--with-included-unistring], if test "$included_unistring" = yes;then ac_have_unistring=no else - AC_LIB_HAVE_LINKFLAGS(unistring,, [#include <uninorm.h>], [u8_normalize(0, 0, 0, 0, 0);]) - - if test "$HAVE_LIBUNISTRING" = "yes";then + AC_SEARCH_LIBS(u8_normalize, unistring, [ included_unistring=no ac_have_unistring=yes - else - AC_MSG_ERROR([[ + AC_SUBST([LIBUNISTRING], [$ac_cv_search_u8_normalize]) + ], [ + ac_cv_libunistring=no + AC_MSG_ERROR([[ *** *** Libunistring was not found. To use the included one, use --with-included-unistring - ]]) - fi + ]]) + ]) fi AM_CONDITIONAL(HAVE_LIBUNISTRING, test "$ac_have_unistring" = "yes") |