Check for both uuid_create() and uuid_generate() to solve a compilation issue on Mac OS X 10.8
This commit is contained in:
parent
bfa7d012cf
commit
3773e2905e
1 changed files with 8 additions and 10 deletions
18
configure.ac
18
configure.ac
|
@ -617,21 +617,19 @@ AC_CHECK_FUNCS([uuidgen],,[found_uuid_function=no])
|
||||||
if test "${found_uuid_function}" = "no";
|
if test "${found_uuid_function}" = "no";
|
||||||
then
|
then
|
||||||
found_uuid_function=yes
|
found_uuid_function=yes
|
||||||
AC_SEARCH_LIBS(uuid_create, uuid, , [found_uuid_function=no])
|
AC_SEARCH_LIBS(uuid_generate, uuid, , [ found_uuid_function=no ])
|
||||||
if test "${found_uuid_function}" = "yes";
|
|
||||||
then
|
|
||||||
AC_CHECK_FUNCS([uuid_create])
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "${found_uuid_function}" = "no";
|
if test "${found_uuid_function}" = "no";
|
||||||
then
|
then
|
||||||
found_uuid_function=yes
|
found_uuid_function=yes
|
||||||
AC_SEARCH_LIBS(uuid_generate, uuid, , [ found_uuid_function=no ])
|
AC_SEARCH_LIBS(uuid_create, uuid, , [found_uuid_function=no])
|
||||||
if test "${found_uuid_function}" = "yes";
|
fi
|
||||||
then
|
|
||||||
AC_CHECK_FUNCS([uuid_generate])
|
if test "${found_uuid_function}" = "yes";
|
||||||
fi
|
then
|
||||||
|
AC_CHECK_FUNCS([uuid_create])
|
||||||
|
AC_CHECK_FUNCS([uuid_generate])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "${found_uuid_function}" = "no";
|
if test "${found_uuid_function}" = "no";
|
||||||
|
|
Loading…
Reference in a new issue