diff options
author | Martin Lucina <mato@kotelna.sk> | 2010-10-04 16:22:30 +0200 |
---|---|---|
committer | Martin Lucina <mato@kotelna.sk> | 2010-10-04 16:22:30 +0200 |
commit | 965fb7755b50ca1522f076da46fa3651812126e1 (patch) | |
tree | 925a65aa4f1edd0373129a95f28c2b9a1fb7193d | |
parent | d62d721f1a6f7c9df627b3f3fa8e200ddc9bf5f5 (diff) |
configure.in: OpenPGM no longer requires pkg-config
-rw-r--r-- | configure.in | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/configure.in b/configure.in index 030daf1..a27dd13 100644 --- a/configure.in +++ b/configure.in @@ -236,10 +236,9 @@ AC_CHECK_HEADERS(ifaddrs.h, [AC_DEFINE(ZMQ_HAVE_IFADDRS, 1, [Have ifaddrs.h head # Use c++ in subsequent tests AC_LANG(C++) -# pkg-config is used if found, and is required for builds with OpenPGM. -# However, we need to provide a way to disable it entirely when the user -# knows what she's doing and it's use is undesirable, such as when -# cross-compiling. +# pkg-config is used if found, however, we need to provide a way to disable it +# entirely when the user knows what she's doing and it's use is undesirable, +# such as when cross-compiling. AC_ARG_WITH([pkg-config], [AS_HELP_STRING([--without-pkg-config], [do not use pkg-config [default=no]])]) if test "x$with_pkg_config" != "xno"; then @@ -302,13 +301,6 @@ if test "x$with_pgm_ext" != "xno"; then esac AC_MSG_RESULT([yes]) - # Test if we have pkg-config - if test "x$with_pkg_config" != "xno"; then - if test "x$have_pkg_config" != "xyes"; then - AC_MSG_ERROR([the --with-pgm option requires that pkg-config be installed.]); - fi - fi - # Gzip, Perl and Python are required duing PGM build AC_CHECK_PROG(have_gzip, gzip, yes, no) if test "x$have_gzip" != "xyes"; then |