From 3773e2905e299e371530727f0f8a9e7ce2e1af3a Mon Sep 17 00:00:00 2001 From: Christophe Grenier Date: Sun, 31 Jul 2011 10:38:21 +0200 Subject: [PATCH] Check for both uuid_create() and uuid_generate() to solve a compilation issue on Mac OS X 10.8 --- configure.ac | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/configure.ac b/configure.ac index 160132d2..32482243 100644 --- a/configure.ac +++ b/configure.ac @@ -617,21 +617,19 @@ AC_CHECK_FUNCS([uuidgen],,[found_uuid_function=no]) if test "${found_uuid_function}" = "no"; then found_uuid_function=yes - AC_SEARCH_LIBS(uuid_create, uuid, , [found_uuid_function=no]) - if test "${found_uuid_function}" = "yes"; - then - AC_CHECK_FUNCS([uuid_create]) - fi + AC_SEARCH_LIBS(uuid_generate, uuid, , [ found_uuid_function=no ]) fi if test "${found_uuid_function}" = "no"; then found_uuid_function=yes - AC_SEARCH_LIBS(uuid_generate, uuid, , [ found_uuid_function=no ]) - if test "${found_uuid_function}" = "yes"; - then - AC_CHECK_FUNCS([uuid_generate]) - fi + AC_SEARCH_LIBS(uuid_create, uuid, , [found_uuid_function=no]) +fi + +if test "${found_uuid_function}" = "yes"; +then + AC_CHECK_FUNCS([uuid_create]) + AC_CHECK_FUNCS([uuid_generate]) fi if test "${found_uuid_function}" = "no";