~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

Merge to trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
dnl -*- bash -*-
2
2
dnl Process this file with autoconf to produce a configure script.
3
3
 
4
 
dnl  Copyright (C) 2009 Sun Microsystems, Inc.
 
4
dnl  Copyright (C) 2009 Sun Microsystems
5
5
dnl
6
6
dnl  This program is free software; you can redistribute it and/or modify
7
7
dnl  it under the terms of the GNU General Public License as published by
24
24
AC_CONFIG_SRCDIR([drizzled/drizzled.cc])
25
25
AC_CONFIG_AUX_DIR([config])
26
26
 
27
 
PANDORA_CANONICAL_TARGET(less-warnings, require-cxx, force-gcc42, version-from-vc) 
 
27
PANDORA_CANONICAL_TARGET(less-warnings, warnings-always-on, require-cxx, force-gcc42, version-from-vc, skip-visibility)
28
28
 
29
 
LIBDRIZZLE_LIBRARY_VERSION=1:0:0
 
29
LIBDRIZZLE_LIBRARY_VERSION=0:8:0
30
30
#                          | | |
31
31
#                   +------+ | +---+
32
32
#                   |        |     |
43
43
 
44
44
# libdrizzle versioning when linked with GNU ld.
45
45
AS_IF([test "$lt_cv_prog_gnu_ld" = "yes"],[
46
 
  LD_VERSION_SCRIPT="-Wl,--version-script=\$(top_srcdir)/config/drizzle.ver"
 
46
  LD_VERSION_SCRIPT="-Wl,--version-script=\$(top_srcdir)/libdrizzle/libdrizzle.ver"
47
47
  ])
48
48
AC_SUBST(LD_VERSION_SCRIPT)
49
49
 
 
50
 
50
51
dnl Set the default datadir location to /usr/local/var/drizzle. If a
51
52
dnl localstatedir is explicitly given, just use that.
52
53
AS_IF([test "x${localstatedir}" = 'x${prefix}/var'],[
57
58
AS_IF([test "x$GPERF" = "x"],
58
59
      AC_MSG_ERROR("Drizzle requires gperf to build."))
59
60
 
 
61
AC_PATH_PROG(LCOV, lcov)
 
62
AC_PATH_PROG(LCOV_GENHTML, genhtml)
 
63
 
 
64
AC_CHECK_PROGS(YACC, ['bison -y'])
 
65
AS_IF([test "x$YACC" = "x" -a "$pandora_building_from_bzr" = "yes"],[
 
66
   AC_MSG_ERROR(["bison is required for Drizzle to build from a bzr branch"])
 
67
])
 
68
AS_IF([test "x$YACC" = "x"],[
 
69
  YACC='if test -f "$@"; then echo "WARNING: no proper bison binary found, ignoring changes to $<"; exit 0; else echo "ERROR: no proper bison binary found"; exit 1; fi;'
 
70
])
 
71
 
60
72
# libexecinfo provides backtrace_symbols on FreeBSD
61
73
AC_SEARCH_LIBS(backtrace_symbols, [execinfo])
62
74
 
 
75
PANDORA_RUN_CPPLINT
 
76
 
63
77
PANDORA_REQUIRE_LIBPROTOBUF
64
78
PANDORA_PROTOBUF_REQUIRE_VERSION([2.1.0])
65
79
PANDORA_REQUIRE_PROTOC
81
95
AC_DEFINE([BUILDING_DRIZZLED],[1],
82
96
          [Define indicating we are building and not consuming drizzle.])
83
97
 
84
 
PANDORA_HAVE_BOOST_TEST
 
98
PANDORA_HAVE_LIBGTEST
85
99
PANDORA_HAVE_LIBSQLITE3
86
100
 
87
101
AC_CHECK_FUNC(inet_ntoa, [], [AC_CHECK_LIB(nsl, inet_ntoa)])
132
146
dnl AM_CONDITIONAL([BUILD_GCC_PCH],[test "$GCC" = "yes"])
133
147
AM_CONDITIONAL([BUILD_GCC_PCH],[test "no" = "yes"])
134
148
 
135
 
AS_IF([test "$lt_cv_prog_gnu_ld" = "yes"],[
136
 
  LDFLAGS="${LDFLAGS} ${LD_VERSION_SCRIPT}"
137
 
  ])
138
 
 
139
 
WITH_VALGRIND
140
 
AS_IF([test "x${ac_gcc_profile_mode}" = "xyes" -a "x${pandora_cv_boost_profile}" = "xyes"],[
141
 
    AC_DEFINE([_GLIBCXX_PROFILE],[1],[Enable GCC Profile Mode])
142
 
    ])
143
 
 
144
 
 
145
149
AC_CONFIG_FILES(Makefile dnl
146
150
 tests/Makefile dnl
147
151
 drizzled/plugin/version.h dnl
148
 
 support-files/drizzle7.pc dnl
149
152
 support-files/libdrizzle.pc dnl
 
153
 support-files/drizzle.server support-files/drizzle-log-rotate
150
154
 support-files/smf/install.sh dnl
 
155
 support-files/drizzle.spec dnl
151
156
 support-files/smf/drizzle.xml dnl
152
157
 support-files/smf/drizzle)
153
158