~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Paul McCullagh
  • Date: 2010-09-22 13:04:27 UTC
  • mto: (1787.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1788.
  • Revision ID: paul.mccullagh@primebase.org-20100922130427-utakdj4ec4uiv1kc
Fixed PBXT recovery and shutdown, added shutdownPlugin() call to all plugins before the plugins are deleted

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
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_CHECK_PROGS(YACC, ['bison -y'])
 
62
AS_IF([test "x$YACC" = "x" -a "$pandora_building_from_bzr" = "yes"],[
 
63
  AC_MSG_ERROR(["bison is required for Drizzle to build from a bzr branch"])
 
64
])
 
65
 
60
66
# libexecinfo provides backtrace_symbols on FreeBSD
61
67
AC_SEARCH_LIBS(backtrace_symbols, [execinfo])
62
68
 
134
140
dnl AM_CONDITIONAL([BUILD_GCC_PCH],[test "$GCC" = "yes"])
135
141
AM_CONDITIONAL([BUILD_GCC_PCH],[test "no" = "yes"])
136
142
 
137
 
AS_IF([test "$lt_cv_prog_gnu_ld" = "yes"],[
138
 
  LDFLAGS="${LDFLAGS} ${LD_VERSION_SCRIPT}"
139
 
  ])
140
 
 
141
 
WITH_VALGRIND
142
 
 
143
143
AC_CONFIG_FILES(Makefile dnl
144
144
 tests/Makefile dnl
145
145
 drizzled/plugin/version.h dnl