~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

Merged from trunk. 
Moved resolve_stack_dump to mysql-test. 
Removed perl-sub cruft in mysql-test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
AC_CONFIG_AUX_DIR(config)
9
9
AC_CONFIG_HEADERS([include/config.h:config.h.in])
10
10
AC_CANONICAL_TARGET
11
 
AM_INIT_AUTOMAKE(mysql, 7.0.0, no-define)
 
11
AM_INIT_AUTOMAKE(drizzle, 7.0.0, no-define)
12
12
 
13
13
PROTOCOL_VERSION=10
14
14
DOT_FRM_VERSION=6
419
419
 
420
420
if test "$am_cv_prog_cc_stdc" = "no"
421
421
then
422
 
  AC_MSG_ERROR([MySQL requires an ANSI C compiler (and a C++ compiler). Try gcc. See the Installation chapter in the Reference Manual.])
 
422
  AC_MSG_ERROR([Drizzle requires an ANSI C compiler (and a C++ compiler). Try gcc. See the Installation chapter in the Reference Manual.])
423
423
fi
424
424
 
425
425
 
481
481
 
482
482
AC_ARG_WITH([tcp-port],
483
483
    [AS_HELP_STRING([--with-tcp-port=port-number],
484
 
            [Which port to use for MySQL services @<:@default=3306@:>@])],
 
484
            [Which port to use for Drizzle services @<:@default=3306@:>@])],
485
485
    [ MYSQL_TCP_PORT=$withval ],
486
486
    [ MYSQL_TCP_PORT=$MYSQL_TCP_PORT_DEFAULT
487
487
      # if we actually defaulted (as opposed to the pathological case of
713
713
# If we should allow error injection tests
714
714
AC_ARG_WITH([error-inject],
715
715
    [AS_HELP_STRING([--with-error-inject],
716
 
            [Enable error injection in MySQL Server @<:@default=off@:>@])],
 
716
            [Enable error injection in Drizzle Server @<:@default=off@:>@])],
717
717
    [ with_error_inject=$withval ],
718
718
    [ with_error_inject=no ])
719
719
 
722
722
  if test "$with_error_inject" = "yes"
723
723
  then
724
724
    AC_DEFINE([ERROR_INJECT_SUPPORT], [1],
725
 
              [Enable error injection in MySQL Server])
 
725
              [Enable error injection in Drizzle Server])
726
726
  fi
727
727
fi
728
728
 
805
805
AC_CHECK_SIZEOF(long long, 8)
806
806
if test "$ac_cv_sizeof_long_long" -eq 0
807
807
then
808
 
  AC_MSG_ERROR("MySQL needs a long long type.")
 
808
  AC_MSG_ERROR("Drizzle needs a long long type.")
809
809
fi
810
810
# off_t is not a builtin type
811
811
AC_CHECK_SIZEOF(off_t, 4)
812
812
if test "$ac_cv_sizeof_off_t" -eq 0
813
813
then
814
 
  AC_MSG_ERROR("MySQL needs a off_t type.")
 
814
  AC_MSG_ERROR("Drizzle needs a off_t type.")
815
815
fi
816
816
 
817
817
dnl
1215
1215
 sql/sql_builtin.cc sql-common/Makefile dnl
1216
1216
 dbug/Makefile include/Makefile dnl
1217
1217
 support-files/Makefile dnl
1218
 
 mysql-test/Makefile dnl
 
1218
 mysql-test/Makefile mysql-test/install_test_db dnl
1219
1219
 include/mysql_version.h plugin/Makefile dnl
1220
1220
 sql/mysqld_safe support-files/libmysqlclient.pc dnl
1221
1221
 support-files/mysql.server support-files/mysql-log-rotate)