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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
dnl Copyright (C) 2009 Sun Microsystems, Inc.
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.
dnl Check for all of the headers and libs that Drizzle needs. We check all
dnl of these for plugins too, to ensure that all of the appropriate defines
dnl are set.
AC_DEFUN([PANDORA_DRIZZLE_BUILD],[
AC_STRUCT_TM
AC_FUNC_ALLOCA
AC_FUNC_UTIME_NULL
AC_FUNC_VPRINTF
PANDORA_WORKING_FDATASYNC
AC_CHECK_FUNCS(\
gethrtime \
setupterm \
backtrace \
backtrace_symbols \
backtrace_symbols_fd)
AC_HEADER_STAT
AC_HEADER_DIRENT
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_HEADER_STDBOOL
AC_CHECK_HEADERS(sys/types.h sys/fpu.h fpu_control.h ieeefp.h)
AC_CHECK_HEADERS(select.h sys/select.h)
AC_CHECK_HEADERS(utime.h sys/utime.h )
AC_CHECK_HEADERS(synch.h sys/mman.h)
AC_CHECK_HEADERS(sched.h)
AC_CHECK_HEADERS(sys/prctl.h)
AC_CHECK_HEADERS(execinfo.h)
AC_CHECK_HEADERS(locale.h)
AC_CHECK_HEADERS(termcap.h termio.h termios.h asm/termbits.h)
AC_CHECK_HEADERS(paths.h)
#--------------------------------------------------------------------
# Check for system libraries. Adds the library to $LIBS
# and defines HAVE_LIBM etc
#--------------------------------------------------------------------
# For the sched_yield() function on Solaris
AC_CHECK_FUNC(sched_yield, [],
[AC_CHECK_LIB(posix4, [sched_yield],
[AC_DEFINE(HAVE_SCHED_YIELD, 1, [Have sched_yield function]) LIBS="$LIBS -lposix4"])])
AS_IF([test "$ac_cv_header_termio_h" = "no" -a "$ac_cv_header_termios_h" = "no"],[
AC_CHECK_FUNC(gtty, [], [AC_CHECK_LIB(compat, gtty)])
])
AC_CHECK_HEADERS([curses.h term.h],[],[],[[
#ifdef HAVE_CURSES_H
# include <curses.h>
#endif
]])
AC_CHECK_TYPES([uint, ulong])
PANDORA_REQUIRE_BISON
PANDORA_CXX_DEMANGLE
PANDORA_REQUIRE_BOOST([1.38])
PANDORA_REQUIRE_BOOST_PROGRAM_OPTIONS
PANDORA_REQUIRE_BOOST_THREAD
PANDORA_REQUIRE_BOOST_REGEX
PANDORA_REQUIRE_BOOST_DATE_TIME
PANDORA_REQUIRE_BOOST_FILESYSTEM
PANDORA_REQUIRE_BOOST_IOSTREAMS
LIBDRIZZLE_CPPFLAGS="-I\${top_builddir}/libdrizzle-2.0 -I\${top_srcdir}/libdrizzle-2.0"
OLDLIBDRIZZLE_CPPFLAGS="-I\${top_builddir}/libdrizzle-1.0 -I\${top_srcdir}/libdrizzle-1.0"
AC_SUBST([LIBDRIZZLE_CPPFLAGS])
AC_SUBST([OLDLIBDRIZZLE_CPPFLAGS])
])
|