author | Michael Krelin <hacker@klever.net> | 2010-02-21 21:19:30 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2010-02-21 21:19:30 (UTC) |
commit | ce549cc7cc156ff1d6e15bcceb6c6178154af459 (patch) (unidiff) | |
tree | 8060239cf3143be7970deea422a501461b652ef9 | |
parent | 124c70b6d105d1d084bd2253d54c268cfa75f865 (diff) | |
download | iii-ce549cc7cc156ff1d6e15bcceb6c6178154af459.zip iii-ce549cc7cc156ff1d6e15bcceb6c6178154af459.tar.gz iii-ce549cc7cc156ff1d6e15bcceb6c6178154af459.tar.bz2 |
don't override default pkg-config if-not-found action
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | configure.ac | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 515d465..a719cdd 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -12,9 +12,7 @@ AC_HEADER_STDC | |||
12 | 12 | ||
13 | AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) | 13 | AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) |
14 | 14 | ||
15 | PKG_CHECK_MODULES([MODULES],[gsoap++ openssl libconfuse],,[ | 15 | PKG_CHECK_MODULES([MODULES],[gsoap++ openssl libconfuse]) |
16 | AC_MSG_ERROR([one of the build dependencies isn't satisfied]) | ||
17 | ]) | ||
18 | PKG_CHECK_MODULES([UUID],[uuid],[have_uuid=true],[have_uuid=false]) | 16 | PKG_CHECK_MODULES([UUID],[uuid],[have_uuid=true],[have_uuid=false]) |
19 | AM_CONDITIONAL([HAVE_UUID],[$have_uuid]) | 17 | AM_CONDITIONAL([HAVE_UUID],[$have_uuid]) |
20 | if $have_uuid ; then | 18 | if $have_uuid ; then |