~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
dnl  Copyright (C) 2011 Andrew Hutchings
dnl This file is free software; Sun Microsystems, Inc.
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.

#--------------------------------------------------------------------
# Check for libaio
#--------------------------------------------------------------------


AC_DEFUN([_PANDORA_SEARCH_LIBAIO],[
  AC_REQUIRE([AC_LIB_PREFIX])

  AC_CHECK_HEADERS(libaio.h)
  AC_LIB_HAVE_LINKFLAGS(aio,,
  [
    #include <libaio.h>
  ],
  [
    int aio_cmd= IO_CMD_PREAD;
  ])

  AM_CONDITIONAL(HAVE_LIBAIO, [test "x${ac_cv_libaio}" = "xyes"])

  AS_IF([test "x${ac_cv_libaio}" = "xyes"],[
    AC_DEFINE([LINUX_NATIVE_AIO], [1], [Enabel libaio support in InnoDB])
  ])
])

AC_DEFUN([_PANDORA_HAVE_LIBAIO],[

  AC_ARG_ENABLE([libaio],
    [AS_HELP_STRING([--disable-libaio],
      [Build with libaio support @<:@default=on@:>@])],
    [ac_enable_libaio="$enableval"],
    [ac_enable_libaio="yes"])

  _PANDORA_SEARCH_LIBAIO
])


AC_DEFUN([PANDORA_HAVE_LIBAIO],[
  AC_REQUIRE([_PANDORA_HAVE_LIBAIO])
])

AC_DEFUN([_PANDORA_REQUIRE_LIBAIO],[
  ac_enable_libaio="yes"
  _PANDORA_SEARCH_LIBAIO
  AS_IF([test "x$ac_cv_header_libaio_h" = "xno"],[
    PANDORA_MSG_ERROR([Couldn't find libaio.h. On Debian this can be found in libaio-dev. On Redhat this can be found in libaio-devel.])
  ])
])

AC_DEFUN([PANDORA_REQUIRE_LIBAIO],[
  AC_REQUIRE([_PANDORA_REQUIRE_LIBAIO])
])