~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Monty Taylor
  • Date: 2009-01-09 19:40:29 UTC
  • mto: (779.1.4 devel)
  • mto: This revision was merged to the branch mainline in revision 784.
  • Revision ID: mordred@inaugust.com-20090109194029-vcic3m30e4uj0smj
General build cleanup - removed cruft, removed depreated checks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
AC_PREREQ(2.59)dnl              Minimum Autoconf version required.
5
5
 
6
 
AC_INIT(drizzle, [7.0.0], [http://bugs.launchpad.net/drizzle])
 
6
AC_INIT([drizzle],[7.0.0],[http://bugs.launchpad.net/drizzle])
7
7
AC_CONFIG_SRCDIR([drizzled/drizzled.cc])
8
8
AC_CONFIG_AUX_DIR(config)
9
9
AC_CONFIG_HEADERS([config.h])
220
220
# We use libtool
221
221
AC_PROG_LIBTOOL
222
222
 
223
 
# Ensure that we have --preserve-dup-deps defines, otherwise we get link
224
 
# problems of 'mysql' with CXX=g++
225
 
LIBTOOL="$LIBTOOL --preserve-dup-deps"
226
 
AC_SUBST(LIBTOOL)dnl
227
 
 
228
223
AC_SUBST(NM)dnl
229
224
 
230
225
AC_PROG_INSTALL
883
878
DRIZZLE_CHECK_GETPW_FUNCS
884
879
DRIZZLE_HAVE_TIOCGWINSZ
885
880
DRIZZLE_HAVE_TIOCSTAT
886
 
DRIZZLE_TYPE_SIGHANDLER
887
881
 
888
882
#########################################################################
889
883
 
890
884
dnl Checks for library functions.
891
885
 
892
 
#
893
 
# The following code disables intrinsic function support while we test for
894
 
# library functions.  This is to avoid configure problems with Intel ecc
895
 
# compiler
896
 
 
897
 
ORG_CFLAGS="$CFLAGS"
898
 
if test "$GCC" != "yes"; then
899
 
  AC_SYS_COMPILER_FLAG(-nolib_inline,nolib_inline,CFLAGS,[],[])
900
 
fi
901
 
 
902
 
#AC_FUNC_MMAP
903
 
AC_TYPE_SIGNAL
904
 
DRIZZLE_TYPE_QSORT
905
886
AC_FUNC_UTIME_NULL
906
887
AC_FUNC_VPRINTF
907
888