diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-06-25 09:55:14 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-06-25 09:55:14 -0700 |
commit | 2e8a41efb10ae462e5e43e13e479ca4da0fb0103 (patch) | |
tree | 79cd562f873d84ee2eed35c5127d85f9c04f7397 /configure.ac | |
parent | 6702e2a15992f4cb85dfa7ac8214125eb0a2bb2d (diff) |
Fix --without-libuuid to not call PKG_CHECK_MODULES for libuuid
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index db2f3b9..5ed139d 100644 --- a/configure.ac +++ b/configure.ac @@ -38,7 +38,7 @@ XTRANS_CONNECTION_FLAGS AC_ARG_WITH(libuuid, AC_HELP_STRING([--with-libuuid], [Build with libuuid support for client IDs])) AM_CONDITIONAL(WITH_LIBUUID, test x"$with_libuuid" != xno) -if test x"$with_uuid" != xno; then +if test x"$with_libuuid" != xno; then PKG_CHECK_MODULES(LIBUUID, uuid) fi |