~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_have_libuuid.m4

pandora-build v0.72 - Moved remaining hard-coded tests into pandora-build
macros.
Add PANDORA_DRIZZLE_BUILD to run the extra checks that drizzle needs that 
plugins would also need to run so we can just use that macro in generated
external plugin builds.
Added support to register_plugins for external plugin building.
Renamed register_plugins.py to pandora-plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl  Copyright (C) 2009 Sun Microsystems
 
2
dnl This file is free software; Sun Microsystems
 
3
dnl gives unlimited permission to copy and/or distribute it,
 
4
dnl with or without modifications, as long as this notice is preserved.
 
5
 
 
6
#--------------------------------------------------------------------
 
7
# Check for libuuid
 
8
#--------------------------------------------------------------------
 
9
 
 
10
 
 
11
AC_DEFUN([_PANDORA_SEARCH_LIBUUID],[
 
12
  AC_REQUIRE([AC_LIB_PREFIX])
 
13
 
 
14
  dnl Do this by hand. Need to check for uuid/uuid.h, but uuid may or may
 
15
  dnl not be a lib is weird.
 
16
  AC_CHECK_HEADERS(uuid/uuid.h)
 
17
  AC_LIB_HAVE_LINKFLAGS(uuid,,
 
18
  [
 
19
    #include <uuid/uuid.h>
 
20
  ],
 
21
  [
 
22
    uuid_t uout;
 
23
    uuid_generate(uout);
 
24
  ])
 
25
 
 
26
  AM_CONDITIONAL(HAVE_LIBUUID, [test "x${ac_cv_libuuid}" = "xyes"])
 
27
])
 
28
 
 
29
AC_DEFUN([_PANDORA_HAVE_LIBUUID],[
 
30
 
 
31
  AC_ARG_ENABLE([libuuid],
 
32
    [AS_HELP_STRING([--disable-libuuid],
 
33
      [Build with libuuid support @<:@default=on@:>@])],
 
34
    [ac_enable_libuuid="$enableval"],
 
35
    [ac_enable_libuuid="yes"])
 
36
 
 
37
  _PANDORA_SEARCH_LIBUUID
 
38
])
 
39
 
 
40
 
 
41
AC_DEFUN([PANDORA_HAVE_LIBUUID],[
 
42
  AC_REQUIRE([_PANDORA_HAVE_LIBUUID])
 
43
])
 
44
 
 
45
AC_DEFUN([_PANDORA_REQUIRE_LIBUUID],[
 
46
  ac_enable_libuuid="yes"
 
47
  _PANDORA_SEARCH_LIBUUID
 
48
  AS_IF([test "x$ac_cv_header_uuid_uuid_h" = "xno"],[
 
49
    AC_MSG_ERROR([Couldn't find uuid/uuid.h. On Debian this can be found in uuid-dev. On Redhat this can be found in e2fsprogs-devel.])
 
50
  ])
 
51
  AS_IF([test "x${ac_cv_libuuid}" = "xno"],[
 
52
    AC_MSG_ERROR([libuuid is required for ${PACKAGE}])
 
53
  ])
 
54
])
 
55
 
 
56
AC_DEFUN([PANDORA_REQUIRE_LIBUUID],[
 
57
  AC_REQUIRE([_PANDORA_REQUIRE_LIBUUID])
 
58
])