aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2016-07-29 17:51:41 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2016-07-29 17:51:41 +0300
commitbde49d719c1894d0e502a73d42ab546d905492f2 (patch)
tree0c009f26f0c878c9adce241c9723ddfa7895d414
parent55ed5436a098f478bc4c4326fa3ff564ef154b06 (diff)
downloaddico-bde49d719c1894d0e502a73d42ab546d905492f2.tar.gz
dico-bde49d719c1894d0e502a73d42ab546d905492f2.tar.bz2
Bugfix
* modules/pcre/module.ac: Fix DICO_CHECK_LIB arguments (cda4f4b9 added : in wrong place).
-rw-r--r--modules/pcre/module.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/pcre/module.ac b/modules/pcre/module.ac
index fa5b963..6dccbf6 100644
--- a/modules/pcre/module.ac
+++ b/modules/pcre/module.ac
@@ -26,12 +26,12 @@ case "${withval}" in
26 *) AC_MSG_ERROR(bad value ${withval} for --with-pcre) ;; 26 *) AC_MSG_ERROR(bad value ${withval} for --with-pcre) ;;
27esac],[status_pcre=yes]) 27esac],[status_pcre=yes])
28 28
29if test $status_pcre = yes; then 29if test $status_pcre = yes; then
30 AC_CHECK_HEADER([pcre.h], [], [status_pcre=no]) 30 AC_CHECK_HEADER([pcre.h], [], [status_pcre=no])
31 if test $status_pcre = yes; then 31 if test $status_pcre = yes; then
32 DICO_CHECK_LIB(pcre, main, [:], 32 DICO_CHECK_LIB(pcre, main, [],
33 [], 33 [:],
34 [status_pcre=no]) 34 [status_pcre=no])
35 fi 35 fi
36fi 36fi
37AM_CONDITIONAL([PCRE_COND],[test $status_pcre = yes]) 37AM_CONDITIONAL([PCRE_COND],[test $status_pcre = yes])

Return to:

Send suggestions and report system problems to the System administrator.