~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

Added code necessary for building plugins dynamically.
Merged in changes from lifeless to allow autoreconf to work.
Touching plugin.ini files now triggers a rebuid - so config/autorun.sh is no
longer required to be run after touching those.
Removed the duplicate plugin names - also removed the issue that getting them
different would silently fail weirdly later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
PANDORA_VC_VERSION
31
31
 
32
32
 
33
 
AC_DEFINE([_BACKWARD_BACKWARD_WARNING_H],[1],[Hack to disable deprecation warning in gcc])
34
 
 
35
33
# The port that was assigned by IANA.
36
34
DRIZZLE_TCP_PORT_DEFAULT=4427
37
35
 
49
47
])
50
48
 
51
49
 
52
 
AM_GNU_GETTEXT(external, need-formatstring-macros)
53
 
if test "x$MSGMERGE" = "x" -o "x$MSGMERGE" = "x:"
54
 
then
55
 
  AM_PATH_PROG_WITH_TEST(GMSGMERGE, gmsgmerge,
56
 
    [$ac_dir/$ac_word --update -q /dev/null /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1], :)
57
 
  MSGMERGE="${GMSGMERGE}"
58
 
fi
59
 
AM_CONDITIONAL([BUILD_GETTEXT],[test "x$MSGMERGE" != "x" -a "x$MSGMERGE" != "x:"])
60
 
 
61
 
 
 
50
PANDORA_WITH_GETTEXT
 
51
 
 
52
dnl We need to turn on our CXXFLAGS to make sure it shows up correctly
 
53
save_CXXFLAGS="${CXXFLAGS}"
 
54
CXXFLAGS="${CXXFLAGS} ${AM_CXXFLAGS}"
62
55
AC_CXX_STL_HASH
 
56
CXXFLAGS="${save_CXXFLAGS}"
 
57
 
63
58
AC_CXX_CSTDINT
64
59
AC_CXX_CINTTYPES
65
60
 
66
61
PANDORA_REQUIRE_PTHREAD
67
62
 
68
63
PANDORA_REQUIRE_LIBPROTOBUF
69
 
PANDORA_PROTOBUF_REQUIRE_VERSION([2.0.3])
 
64
PANDORA_PROTOBUF_REQUIRE_VERSION([2.1.0])
70
65
PANDORA_REQUIRE_PROTOC
71
66
 
72
67
#--------------------------------------------------------------------
361
356
then
362
357
  COMPILATION_COMMENT=$with_comment
363
358
else
364
 
  COMPILATION_COMMENT="Source distribution (RELEASE_COMMENT)"
 
359
  COMPILATION_COMMENT="Source distribution (${PANDORA_RELEASE_COMMENT})"
365
360
fi
366
361
AC_DEFINE_UNQUOTED([COMPILATION_COMMENT],["$COMPILATION_COMMENT"],
367
362
                   [Comment about compilation environment])
654
649
AC_CONFIG_FILES(Makefile dnl
655
650
 gnulib/Makefile dnl
656
651
 po/Makefile.in dnl
 
652
 drizzled/hash/Makefile dnl
657
653
 drizzled/message/Makefile dnl
658
654
 drizzled/Makefile dnl
659
655
 support-files/Makefile dnl