acinclude.m4 59 KB
Newer Older
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1 2
# Local macros for automake & autoconf

vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
3

4
AC_DEFUN([MYSQL_CHECK_READLINE_DECLARES_HIST_ENTRY], [
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
5 6 7 8 9 10 11 12 13 14 15
    AC_CACHE_CHECK([HIST_ENTRY is declared in readline/readline.h], mysql_cv_hist_entry_declared,
	AC_TRY_COMPILE(
	    [
		#include "stdio.h"
		#include "readline/readline.h"
	    ],
	    [ 
		HIST_ENTRY entry;
	    ],
	    [
		mysql_cv_hist_entry_declared=yes
16 17
		AC_DEFINE_UNQUOTED(HAVE_HIST_ENTRY, [1],
                                   [HIST_ENTRY is defined in the outer libeditreadline])
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
18 19 20 21 22 23
	    ],
	    [mysql_cv_libedit_interface=no]
        )
    )
])

24
AC_DEFUN([MYSQL_CHECK_LIBEDIT_INTERFACE], [
25 26 27 28 29 30 31 32 33 34 35 36
    AC_CACHE_CHECK([libedit variant of rl_completion_entry_function], mysql_cv_libedit_interface,
	AC_TRY_COMPILE(
	    [
		#include "stdio.h"
		#include "readline/readline.h"
	    ],
	    [ 
		char res= *(*rl_completion_entry_function)(0,0);
		completion_matches(0,0);
	    ],
	    [
		mysql_cv_libedit_interface=yes
37 38
                AC_DEFINE_UNQUOTED([USE_LIBEDIT_INTERFACE], [1],
                                   [used libedit interface (can we dereference result of rl_completion_entry_function)])
39 40 41 42 43 44
	    ],
	    [mysql_cv_libedit_interface=no]
        )
    )
])

45
AC_DEFUN([MYSQL_CHECK_NEW_RL_INTERFACE], [
46 47 48 49 50 51 52 53 54 55 56 57
    AC_CACHE_CHECK([defined rl_compentry_func_t and rl_completion_func_t], mysql_cv_new_rl_interface,
	AC_TRY_COMPILE(
	    [
		#include "stdio.h"
		#include "readline/readline.h"
	    ],
	    [ 
		rl_completion_func_t *func1= (rl_completion_func_t*)0;
		rl_compentry_func_t *func2= (rl_compentry_func_t*)0;
	    ],
	    [
		mysql_cv_new_rl_interface=yes
58 59
                AC_DEFINE_UNQUOTED([USE_NEW_READLINE_INTERFACE], [1],
                                   [used new readline interface (are rl_completion_func_t and rl_compentry_func_t defined)])
60 61 62 63 64 65
	    ],
	    [mysql_cv_new_rl_interface=no]
        )
    )
])

bk@work.mysql.com's avatar
bk@work.mysql.com committed
66 67
# A local version of AC_CHECK_SIZEOF that includes sys/types.h
dnl MYSQL_CHECK_SIZEOF(TYPE [, CROSS-SIZE])
68
AC_DEFUN([MYSQL_CHECK_SIZEOF],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
[changequote(<<, >>)dnl
dnl The name to #define.
define(<<AC_TYPE_NAME>>, translit(sizeof_$1, [a-z *], [A-Z_P]))dnl
dnl The cache variable name.
define(<<AC_CV_NAME>>, translit(ac_cv_sizeof_$1, [ *], [_p]))dnl
changequote([, ])dnl
AC_MSG_CHECKING(size of $1)
AC_CACHE_VAL(AC_CV_NAME,
[AC_TRY_RUN([#include <stdio.h>
#include <sys/types.h>
#if STDC_HEADERS
#include <stdlib.h>
#include <stddef.h>
#endif
main()
{
  FILE *f=fopen("conftestval", "w");
  if (!f) exit(1);
  fprintf(f, "%d\n", sizeof($1));
  exit(0);
}], AC_CV_NAME=`cat conftestval`, AC_CV_NAME=0, ifelse([$2], , , AC_CV_NAME=$2))])dnl
AC_MSG_RESULT($AC_CV_NAME)
91
AC_DEFINE_UNQUOTED(AC_TYPE_NAME, $AC_CV_NAME, [ ])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
92 93 94 95 96
undefine([AC_TYPE_NAME])dnl
undefine([AC_CV_NAME])dnl
])

#---START: Used in for client configure
97
AC_DEFUN([MYSQL_TYPE_ACCEPT],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
98 99
[ac_save_CXXFLAGS="$CXXFLAGS"
AC_CACHE_CHECK([base type of last arg to accept], mysql_cv_btype_last_arg_accept,
100
AC_LANG_PUSH(C++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
101 102
if test "$ac_cv_prog_gxx" = "yes"
then
103
  # Add -Werror, remove -fbranch-probabilities (Bug #268)
104
  CXXFLAGS=`echo $CXXFLAGS -Werror | sed 's/-fbranch-probabilities//'`
bk@work.mysql.com's avatar
bk@work.mysql.com committed
105 106
fi
mysql_cv_btype_last_arg_accept=none
107 108 109 110
[AC_TRY_COMPILE([#if defined(inline)
#undef inline
#endif
#include <stdlib.h>
bk@work.mysql.com's avatar
bk@work.mysql.com committed
111 112 113 114 115
#include <sys/types.h>
#include <sys/socket.h>
],
[int a = accept(1, (struct sockaddr *) 0, (socklen_t *) 0); return (a != 0);],
mysql_cv_btype_last_arg_accept=socklen_t)]
116
if test "$mysql_cv_btype_last_arg_accept" = "none"; then
117 118 119 120
[AC_TRY_COMPILE([#if defined(inline)
#undef inline
#endif
#include <stdlib.h>
bk@work.mysql.com's avatar
bk@work.mysql.com committed
121 122 123 124 125 126
#include <sys/types.h>
#include <sys/socket.h>
],
[int a = accept(1, (struct sockaddr *) 0, (size_t *) 0); return (a != 0);],
mysql_cv_btype_last_arg_accept=size_t)]
fi
127
if test "$mysql_cv_btype_last_arg_accept" = "none"; then
bk@work.mysql.com's avatar
bk@work.mysql.com committed
128 129
mysql_cv_btype_last_arg_accept=int
fi)
130
AC_LANG_POP(C++)
131 132
AC_DEFINE_UNQUOTED([SOCKET_SIZE_TYPE], [$mysql_cv_btype_last_arg_accept],
                   [The base type of the last arg to accept])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
133 134 135 136 137
CXXFLAGS="$ac_save_CXXFLAGS"
])
#---END:

dnl Find type of qsort
138
AC_DEFUN([MYSQL_TYPE_QSORT],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
139 140 141 142 143 144 145 146 147
[AC_CACHE_CHECK([return type of qsort], mysql_cv_type_qsort,
[AC_TRY_COMPILE([#include <stdlib.h>
#ifdef __cplusplus
extern "C"
#endif
void qsort(void *base, size_t nel, size_t width,
 int (*compar) (const void *, const void *));
],
[int i;], mysql_cv_type_qsort=void, mysql_cv_type_qsort=int)])
148 149
AC_DEFINE_UNQUOTED([RETQSORTTYPE], [$mysql_cv_type_qsort],
                   [The return type of qsort (int or void).])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
150 151
if test "$mysql_cv_type_qsort" = "void"
then
152
 AC_DEFINE_UNQUOTED([QSORT_TYPE_IS_VOID], [1], [qsort returns void])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
153 154 155
fi
])

156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
#---START: Figure out whether to use 'struct rlimit' or 'struct rlimit64'
AC_DEFUN([MYSQL_TYPE_STRUCT_RLIMIT],
[ac_save_CXXFLAGS="$CXXFLAGS"
AC_CACHE_CHECK([struct type to use with setrlimit], mysql_cv_btype_struct_rlimit,
AC_LANG_PUSH(C++)
if test "$ac_cv_prog_gxx" = "yes"
then
  # Add -Werror, remove -fbranch-probabilities (Bug #268)
  CXXFLAGS=`echo $CXXFLAGS -Werror | sed 's/-fbranch-probabilities//'`
fi
mysql_cv_btype_struct_rlimit=none
[AC_TRY_COMPILE([#if defined(inline)
#undef inline
#endif
#include <stdlib.h>
171
#include <sys/resource.h>
172 173 174 175 176 177 178 179 180 181 182 183 184
],
[struct rlimit64 rl; setrlimit(RLIMIT_CORE, &rl);],
mysql_cv_btype_struct_rlimit="struct rlimit64")]
if test "$mysql_cv_btype_struct_rlimit" = "none"; then
mysql_cv_btype_struct_rlimit="struct rlimit"
fi)
AC_LANG_POP(C++)
AC_DEFINE_UNQUOTED([STRUCT_RLIMIT], [$mysql_cv_btype_struct_rlimit],
                   [The struct rlimit type to use with setrlimit])
CXXFLAGS="$ac_save_CXXFLAGS"
])
#---END:

185
AC_DEFUN([MYSQL_TIMESPEC_TS],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
186 187 188 189 190 191 192 193 194 195 196 197 198
[AC_CACHE_CHECK([if struct timespec has a ts_sec member], mysql_cv_timespec_ts,
[AC_TRY_COMPILE([#include <pthread.h>
#ifdef __cplusplus
extern "C"
#endif
],
[struct timespec abstime;

abstime.ts_sec = time(NULL)+1;
abstime.ts_nsec = 0;
], mysql_cv_timespec_ts=yes, mysql_cv_timespec_ts=no)])
if test "$mysql_cv_timespec_ts" = "yes"
then
199 200
  AC_DEFINE([HAVE_TIMESPEC_TS_SEC], [1],
            [Timespec has a ts_sec instead of tv_sev])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
201 202 203
fi
])

204
AC_DEFUN([MYSQL_TZNAME],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
205 206 207 208 209 210 211 212 213 214 215
[AC_CACHE_CHECK([if we have tzname variable], mysql_cv_tzname,
[AC_TRY_COMPILE([#include <time.h>
#ifdef __cplusplus
extern "C"
#endif
],
[ tzset();
  return tzname[0] != 0;
], mysql_cv_tzname=yes, mysql_cv_tzname=no)])
if test "$mysql_cv_tzname" = "yes"
then
216
  AC_DEFINE([HAVE_TZNAME], [1], [Have the tzname variable])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
217 218 219
fi
])

monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
220

221 222 223 224 225
dnl Define zlib paths to point at bundled zlib

AC_DEFUN([MYSQL_USE_BUNDLED_ZLIB], [
ZLIB_INCLUDES="-I\$(top_srcdir)/zlib"
ZLIB_LIBS="\$(top_builddir)/zlib/libz.la"
226 227
dnl Omit -L$pkglibdir as it's always in the list of mysql_config deps.
ZLIB_DEPS="-lz"
228 229 230 231 232
zlib_dir="zlib"
AC_SUBST([zlib_dir])
mysql_cv_compress="yes"
])

konstantin@mysql.com's avatar
konstantin@mysql.com committed
233
dnl Auxiliary macro to check for zlib at given path
234 235

AC_DEFUN([MYSQL_CHECK_ZLIB_DIR], [
kent@mysql.com's avatar
kent@mysql.com committed
236
save_CPPFLAGS="$CPPFLAGS"
237
save_LIBS="$LIBS"
kent@mysql.com's avatar
kent@mysql.com committed
238
CPPFLAGS="$ZLIB_INCLUDES $CPPFLAGS"
239
LIBS="$LIBS $ZLIB_LIBS"
240 241
AC_CACHE_VAL([mysql_cv_compress],
  [AC_TRY_LINK([#include <zlib.h>],
242
    [return compress(0, (unsigned long*) 0, "", 0);],
243 244 245 246
    [mysql_cv_compress="yes"
    AC_MSG_RESULT([ok])],
    [mysql_cv_compress="no"])
  ])
kent@mysql.com's avatar
kent@mysql.com committed
247
CPPFLAGS="$save_CPPFLAGS"
248 249 250
LIBS="$save_LIBS"
])

251 252 253 254 255
dnl MYSQL_CHECK_ZLIB_WITH_COMPRESS
dnl ------------------------------------------------------------------------
dnl @synopsis MYSQL_CHECK_ZLIB_WITH_COMPRESS
dnl
dnl Provides the following configure options:
256 257 258 259 260 261 262 263 264 265 266
dnl --with-zlib-dir=DIR
dnl Possible DIR values are:
dnl - "no" - the macro will disable use of compression functions
dnl - "bundled" - means use zlib bundled along with MySQL sources
dnl - empty, or not specified - the macro will try default system
dnl   library (if present), and in case of error will fall back to 
dnl   bundled zlib
dnl - zlib location prefix - given location prefix, the macro expects
dnl   to find the library headers in $prefix/include, and binaries in
dnl   $prefix/lib. If zlib headers or binaries weren't found at $prefix, the
dnl   macro bails out with error.
267 268
dnl 
dnl If the library was found, this function #defines HAVE_COMPRESS
269 270 271 272 273 274 275
dnl and configure variables ZLIB_INCLUDES (i.e. -I/path/to/zlib/include),
dnl ZLIB_LIBS (i. e. -L/path/to/zlib/lib -lz) and ZLIB_DEPS which is
dnl used in mysql_config and is always the same as ZLIB_LIBS except to
dnl when we use the bundled zlib. In the latter case ZLIB_LIBS points to the
dnl build dir ($top_builddir/zlib), while mysql_config must point to the
dnl installation dir ($pkglibdir), so ZLIB_DEPS is set to point to
dnl $pkglibdir.
276 277 278 279

AC_DEFUN([MYSQL_CHECK_ZLIB_WITH_COMPRESS], [
AC_MSG_CHECKING([for zlib compression library])
case $SYSTEM_TYPE in
280 281 282 283
*netware* | *modesto*)
     AC_MSG_RESULT(ok)
     AC_DEFINE([HAVE_COMPRESS], [1], [Define to enable compression support])
    ;;
284 285 286 287
  *)
    AC_ARG_WITH([zlib-dir],
                AC_HELP_STRING([--with-zlib-dir=DIR],
                               [Provide MySQL with a custom location of
serg@serg.mylan's avatar
serg@serg.mylan committed
288
                               compression library. Given DIR, zlib library is 
289
                               assumed to be in $DIR/lib and header files
serg@serg.mylan's avatar
serg@serg.mylan committed
290 291
                               in $DIR/include. Specify "bundled" to use
                               bundled zlib.]),
292 293
                [mysql_zlib_dir=${withval}],
                [mysql_zlib_dir=""])
294 295 296 297 298 299 300 301 302 303
    case "$mysql_zlib_dir" in
      "no")
        mysql_cv_compress="no"
        AC_MSG_RESULT([disabled])
        ;;
      "bundled")
        MYSQL_USE_BUNDLED_ZLIB
        AC_MSG_RESULT([using bundled zlib])
        ;;
      "")
304 305
        ZLIB_INCLUDES=""
        ZLIB_LIBS="-lz"
306 307 308 309 310 311 312
        MYSQL_CHECK_ZLIB_DIR
        if test "$mysql_cv_compress" = "no"; then
          MYSQL_USE_BUNDLED_ZLIB
          AC_MSG_RESULT([system-wide zlib not found, using one bundled with MySQL])
        fi
        ;;
      *)
kent@mysql.com's avatar
kent@mysql.com committed
313
        # Just to be safe, we test for ".so" anyway
314
	eval shrexts=\"$shrext_cmds\"
315
        if test \( -f "$mysql_zlib_dir/lib/libz.a"  -o -f "$mysql_zlib_dir/lib/libz.so" -o \
316
                   -f "$mysql_zlib_dir/lib/libz$shrexts" \) \
317
                -a -f "$mysql_zlib_dir/include/zlib.h"; then
318 319 320 321 322
          ZLIB_INCLUDES="-I$mysql_zlib_dir/include"
          ZLIB_LIBS="-L$mysql_zlib_dir/lib -lz"
          MYSQL_CHECK_ZLIB_DIR
        fi
        if test "x$mysql_cv_compress" != "xyes"; then 
323 324
          AC_MSG_ERROR([headers or binaries were not found in $mysql_zlib_dir/{include,lib}])
        fi
325 326 327
        ;;
    esac
    if test "$mysql_cv_compress" = "yes"; then
328 329 330
      if test "x$ZLIB_DEPS" = "x"; then
        ZLIB_DEPS="$ZLIB_LIBS"
      fi
331
      AC_SUBST([ZLIB_LIBS])
332
      AC_SUBST([ZLIB_DEPS])
333
      AC_SUBST([ZLIB_INCLUDES])
334
      AC_DEFINE([HAVE_COMPRESS], [1], [Define to enable compression support])
335 336 337
    fi
    ;;
esac
338 339
])

340 341
dnl ------------------------------------------------------------------------

bk@work.mysql.com's avatar
bk@work.mysql.com committed
342
#---START: Used in for client configure
343
AC_DEFUN([MYSQL_CHECK_ULONG],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
344 345 346 347 348 349 350 351 352 353 354 355 356
[AC_MSG_CHECKING(for type ulong)
AC_CACHE_VAL(ac_cv_ulong,
[AC_TRY_RUN([#include <stdio.h>
#include <sys/types.h>
main()
{
  ulong foo;
  foo++;
  exit(0);
}], ac_cv_ulong=yes, ac_cv_ulong=no, ac_cv_ulong=no)])
AC_MSG_RESULT($ac_cv_ulong)
if test "$ac_cv_ulong" = "yes"
then
357
  AC_DEFINE([HAVE_ULONG], [1], [system headers define ulong])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
358 359 360
fi
])

361
AC_DEFUN([MYSQL_CHECK_UCHAR],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
362 363 364 365 366 367 368 369 370 371 372 373 374
[AC_MSG_CHECKING(for type uchar)
AC_CACHE_VAL(ac_cv_uchar,
[AC_TRY_RUN([#include <stdio.h>
#include <sys/types.h>
main()
{
  uchar foo;
  foo++;
  exit(0);
}], ac_cv_uchar=yes, ac_cv_uchar=no, ac_cv_uchar=no)])
AC_MSG_RESULT($ac_cv_uchar)
if test "$ac_cv_uchar" = "yes"
then
375
  AC_DEFINE([HAVE_UCHAR], [1], [system headers define uchar])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
376 377 378
fi
])

379
AC_DEFUN([MYSQL_CHECK_UINT],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
380 381 382 383 384 385 386 387 388 389 390 391 392
[AC_MSG_CHECKING(for type uint)
AC_CACHE_VAL(ac_cv_uint,
[AC_TRY_RUN([#include <stdio.h>
#include <sys/types.h>
main()
{
  uint foo;
  foo++;
  exit(0);
}], ac_cv_uint=yes, ac_cv_uint=no, ac_cv_uint=no)])
AC_MSG_RESULT($ac_cv_uint)
if test "$ac_cv_uint" = "yes"
then
393
  AC_DEFINE([HAVE_UINT], [1], [system headers define uint])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
394 395 396
fi
])

397

398
AC_DEFUN([MYSQL_CHECK_IN_ADDR_T],
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
[AC_MSG_CHECKING(for type in_addr_t)
AC_CACHE_VAL(ac_cv_in_addr_t,
[AC_TRY_RUN([#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>

int main(int argc, char **argv)
{
  in_addr_t foo;
  exit(0);
}], ac_cv_in_addr_t=yes, ac_cv_in_addr_t=no, ac_cv_in_addr_t=no)])
AC_MSG_RESULT($ac_cv_in_addr_t)
if test "$ac_cv_in_addr_t" = "yes"
then
415
  AC_DEFINE([HAVE_IN_ADDR_T], [1], [system headers define in_addr_t])
416 417 418 419
fi
])


420
AC_DEFUN([MYSQL_PTHREAD_YIELD],
421
[AC_CACHE_CHECK([if pthread_yield takes zero arguments], ac_cv_pthread_yield_zero_arg,
422
[AC_TRY_LINK([#define _GNU_SOURCE
423 424 425 426 427 428 429 430 431 432
#include <pthread.h>
#ifdef __cplusplus
extern "C"
#endif
],
[
  pthread_yield();
], ac_cv_pthread_yield_zero_arg=yes, ac_cv_pthread_yield_zero_arg=yeso)])
if test "$ac_cv_pthread_yield_zero_arg" = "yes"
then
433 434
  AC_DEFINE([HAVE_PTHREAD_YIELD_ZERO_ARG], [1],
            [pthread_yield that doesn't take any arguments])
435 436 437
fi
]
[AC_CACHE_CHECK([if pthread_yield takes 1 argument], ac_cv_pthread_yield_one_arg,
438
[AC_TRY_LINK([#define _GNU_SOURCE
439 440 441 442 443 444 445 446 447 448
#include <pthread.h>
#ifdef __cplusplus
extern "C"
#endif
],
[
  pthread_yield(0);
], ac_cv_pthread_yield_one_arg=yes, ac_cv_pthread_yield_one_arg=no)])
if test "$ac_cv_pthread_yield_one_arg" = "yes"
then
449 450
  AC_DEFINE([HAVE_PTHREAD_YIELD_ONE_ARG], [1],
            [pthread_yield function with one argument])
451 452 453 454 455 456
fi
]
)



bk@work.mysql.com's avatar
bk@work.mysql.com committed
457 458
#---END:

459
AC_DEFUN([MYSQL_CHECK_FP_EXCEPT],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
460 461 462 463 464 465 466 467 468 469 470 471 472 473
[AC_MSG_CHECKING(for type fp_except)
AC_CACHE_VAL(ac_cv_fp_except,
[AC_TRY_RUN([#include <stdio.h>
#include <sys/types.h>
#include <ieeefp.h>
main()
{
  fp_except foo;
  foo++;
  exit(0);
}], ac_cv_fp_except=yes, ac_cv_fp_except=no, ac_cv_fp_except=no)])
AC_MSG_RESULT($ac_cv_fp_except)
if test "$ac_cv_fp_except" = "yes"
then
474
  AC_DEFINE([HAVE_FP_EXCEPT], [1], [fp_except from ieeefp.h])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
fi
])

# From fileutils-3.14/aclocal.m4

# @defmac AC_PROG_CC_STDC
# @maindex PROG_CC_STDC
# @ovindex CC
# If the C compiler in not in ANSI C mode by default, try to add an option
# to output variable @code{CC} to make it so.  This macro tries various
# options that select ANSI C on some system or another.  It considers the
# compiler to be in ANSI C mode if it defines @code{__STDC__} to 1 and
# handles function prototypes correctly.
#
# Patched by monty to only check if __STDC__ is defined. With the original 
# check it's impossible to get things to work with the Sunpro compiler from
# Workshop 4.2
#
# If you use this macro, you should check after calling it whether the C
# compiler has been set to accept ANSI C; if not, the shell variable
# @code{am_cv_prog_cc_stdc} is set to @samp{no}.  If you wrote your source
# code in ANSI C, you can make an un-ANSIfied copy of it by using the
# program @code{ansi2knr}, which comes with Ghostscript.
# @end defmac

500
AC_DEFUN([AM_PROG_CC_STDC],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
[AC_REQUIRE([AC_PROG_CC])
AC_MSG_CHECKING(for ${CC-cc} option to accept ANSI C)
AC_CACHE_VAL(am_cv_prog_cc_stdc,
[am_cv_prog_cc_stdc=no
ac_save_CC="$CC"
# Don't try gcc -ansi; that turns off useful extensions and
# breaks some systems' header files.
# AIX			-qlanglvl=ansi
# Ultrix and OSF/1	-std1
# HP-UX			-Aa -D_HPUX_SOURCE
# SVR4			-Xc -D__EXTENSIONS__
# removed "-Xc -D__EXTENSIONS__" beacause sun c++ does not like it.
for ac_arg in "" -qlanglvl=ansi -std1 "-Aa -D_HPUX_SOURCE" 
do
  CC="$ac_save_CC $ac_arg"
  AC_TRY_COMPILE(
[#if !defined(__STDC__)
choke me
#endif
/* DYNIX/ptx V4.1.3 can't compile sys/stat.h with -Xc -D__EXTENSIONS__. */
#ifdef _SEQUENT_
# include <sys/types.h>
# include <sys/stat.h>
#endif
], [
int test (int i, double x);
struct s1 {int (*f) (int a);};
struct s2 {int (*f) (double a);};],
[am_cv_prog_cc_stdc="$ac_arg"; break])
done
CC="$ac_save_CC"
])
AC_MSG_RESULT($am_cv_prog_cc_stdc)
case "x$am_cv_prog_cc_stdc" in
  x|xno) ;;
  *) CC="$CC $am_cv_prog_cc_stdc" ;;
esac
])

#
# Check to make sure that the build environment is sane.
#

544
AC_DEFUN([AM_SANITY_CHECK],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
[AC_MSG_CHECKING([whether build environment is sane])
sleep 1
echo timestamp > conftestfile
# Do this in a subshell so we don't clobber the current shell's
# arguments.  FIXME: maybe try `-L' hack like GETLOADAVG test?
if (set X `ls -t $srcdir/configure conftestfile`; test "[$]2" = conftestfile)
then
   # Ok.
   :
else
   AC_MSG_ERROR([newly created file is older than distributed files!
Check your system clock])
fi
rm -f conftest*
AC_MSG_RESULT(yes)])

# Orginal from bash-2.0 aclocal.m4, Changed to use termcap last by monty.
 
563
AC_DEFUN([MYSQL_CHECK_LIB_TERMCAP],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
564 565 566 567 568
[
AC_CACHE_VAL(mysql_cv_termcap_lib,
[AC_CHECK_LIB(ncurses, tgetent, mysql_cv_termcap_lib=libncurses,
    [AC_CHECK_LIB(curses, tgetent, mysql_cv_termcap_lib=libcurses,
	[AC_CHECK_LIB(termcap, tgetent, mysql_cv_termcap_lib=libtermcap,
569 570
	    [AC_CHECK_LIB(tinfo, tgetent, mysql_cv_termcap_lib=libtinfo,
	      mysql_cv_termcap_lib=NOT_FOUND)])])])])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
571
AC_MSG_CHECKING(for termcap functions library)
572
if test "$mysql_cv_termcap_lib" = "NOT_FOUND"; then
bk@work.mysql.com's avatar
bk@work.mysql.com committed
573
AC_MSG_ERROR([No curses/termcap library found])
574
elif test "$mysql_cv_termcap_lib" = "libtermcap"; then
bk@work.mysql.com's avatar
bk@work.mysql.com committed
575
TERMCAP_LIB=-ltermcap
576
elif test "$mysql_cv_termcap_lib" = "libncurses"; then
bk@work.mysql.com's avatar
bk@work.mysql.com committed
577
TERMCAP_LIB=-lncurses
578 579
elif test "$mysql_cv_termcap_lib" = "libtinfo"; then
TERMCAP_LIB=-ltinfo
bk@work.mysql.com's avatar
bk@work.mysql.com committed
580 581 582 583 584 585 586
else
TERMCAP_LIB=-lcurses
fi
AC_MSG_RESULT($TERMCAP_LIB)
])

dnl Check type of signal routines (posix, 4.2bsd, 4.1bsd or v7)
587
AC_DEFUN([MYSQL_SIGNAL_CHECK],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617
[AC_REQUIRE([AC_TYPE_SIGNAL])
AC_MSG_CHECKING(for type of signal functions)
AC_CACHE_VAL(mysql_cv_signal_vintage,
[
  AC_TRY_LINK([#include <signal.h>],[
    sigset_t ss;
    struct sigaction sa;
    sigemptyset(&ss); sigsuspend(&ss);
    sigaction(SIGINT, &sa, (struct sigaction *) 0);
    sigprocmask(SIG_BLOCK, &ss, (sigset_t *) 0);
  ], mysql_cv_signal_vintage=posix,
  [
    AC_TRY_LINK([#include <signal.h>], [
	int mask = sigmask(SIGINT);
	sigsetmask(mask); sigblock(mask); sigpause(mask);
    ], mysql_cv_signal_vintage=4.2bsd,
    [
      AC_TRY_LINK([
	#include <signal.h>
	RETSIGTYPE foo() { }], [
		int mask = sigmask(SIGINT);
		sigset(SIGINT, foo); sigrelse(SIGINT);
		sighold(SIGINT); sigpause(SIGINT);
        ], mysql_cv_signal_vintage=svr3, mysql_cv_signal_vintage=v7
    )]
  )]
)
])
AC_MSG_RESULT($mysql_cv_signal_vintage)
if test "$mysql_cv_signal_vintage" = posix; then
618 619
AC_DEFINE(HAVE_POSIX_SIGNALS, [1],
          [Signal handling is POSIX (sigset/sighold, etc)])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
620
elif test "$mysql_cv_signal_vintage" = "4.2bsd"; then
621
AC_DEFINE([HAVE_BSD_SIGNALS], [1], [BSD style signals])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
622
elif test "$mysql_cv_signal_vintage" = svr3; then
623
AC_DEFINE(HAVE_USG_SIGHOLD, [1], [sighold() is present and usable])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
624 625 626
fi
])

627
AC_DEFUN([MYSQL_CHECK_GETPW_FUNCS],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
628 629 630 631 632 633 634
[AC_MSG_CHECKING(whether programs are able to redeclare getpw functions)
AC_CACHE_VAL(mysql_cv_can_redecl_getpw,
[AC_TRY_COMPILE([#include <sys/types.h>
#include <pwd.h>
extern struct passwd *getpwent();], [struct passwd *z; z = getpwent();],
  mysql_cv_can_redecl_getpw=yes,mysql_cv_can_redecl_getpw=no)])
AC_MSG_RESULT($mysql_cv_can_redecl_getpw)
635
if test "$mysql_cv_can_redecl_getpw" = "no"; then
636
AC_DEFINE(HAVE_GETPW_DECLS, [1], [getpwent() declaration present])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
637 638 639
fi
])

640
AC_DEFUN([MYSQL_HAVE_TIOCGWINSZ],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
641 642 643 644 645 646
[AC_MSG_CHECKING(for TIOCGWINSZ in sys/ioctl.h)
AC_CACHE_VAL(mysql_cv_tiocgwinsz_in_ioctl,
[AC_TRY_COMPILE([#include <sys/types.h>
#include <sys/ioctl.h>], [int x = TIOCGWINSZ;],
  mysql_cv_tiocgwinsz_in_ioctl=yes,mysql_cv_tiocgwinsz_in_ioctl=no)])
AC_MSG_RESULT($mysql_cv_tiocgwinsz_in_ioctl)
647
if test "$mysql_cv_tiocgwinsz_in_ioctl" = "yes"; then   
648 649
AC_DEFINE([GWINSZ_IN_SYS_IOCTL], [1],
          [READLINE: your system defines TIOCGWINSZ in sys/ioctl.h.])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
650 651 652
fi
])

653
AC_DEFUN([MYSQL_HAVE_FIONREAD],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
654 655 656 657 658 659
[AC_MSG_CHECKING(for FIONREAD in sys/ioctl.h)
AC_CACHE_VAL(mysql_cv_fionread_in_ioctl,
[AC_TRY_COMPILE([#include <sys/types.h>
#include <sys/ioctl.h>], [int x = FIONREAD;],
  mysql_cv_fionread_in_ioctl=yes,mysql_cv_fionread_in_ioctl=no)])
AC_MSG_RESULT($mysql_cv_fionread_in_ioctl)
660
if test "$mysql_cv_fionread_in_ioctl" = "yes"; then   
661
AC_DEFINE([FIONREAD_IN_SYS_IOCTL], [1], [Do we have FIONREAD])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
662 663 664
fi
])

665
AC_DEFUN([MYSQL_HAVE_TIOCSTAT],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
666 667 668 669 670 671
[AC_MSG_CHECKING(for TIOCSTAT in sys/ioctl.h)
AC_CACHE_VAL(mysql_cv_tiocstat_in_ioctl,
[AC_TRY_COMPILE([#include <sys/types.h>
#include <sys/ioctl.h>], [int x = TIOCSTAT;],
  mysql_cv_tiocstat_in_ioctl=yes,mysql_cv_tiocstat_in_ioctl=no)])
AC_MSG_RESULT($mysql_cv_tiocstat_in_ioctl)
672
if test "$mysql_cv_tiocstat_in_ioctl" = "yes"; then   
673 674
AC_DEFINE(TIOCSTAT_IN_SYS_IOCTL, [1],
          [declaration of TIOCSTAT in sys/ioctl.h])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
675 676 677
fi
])

678
AC_DEFUN([MYSQL_STRUCT_DIRENT_D_INO],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
[AC_REQUIRE([AC_HEADER_DIRENT])
AC_MSG_CHECKING(if struct dirent has a d_ino member)
AC_CACHE_VAL(mysql_cv_dirent_has_dino,
[AC_TRY_COMPILE([
#include <stdio.h>
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif /* HAVE_UNISTD_H */
#if defined(HAVE_DIRENT_H)
# include <dirent.h>
#else
# define dirent direct
# ifdef HAVE_SYS_NDIR_H
#  include <sys/ndir.h>
# endif /* SYSNDIR */
# ifdef HAVE_SYS_DIR_H
#  include <sys/dir.h>
# endif /* SYSDIR */
# ifdef HAVE_NDIR_H
#  include <ndir.h>
# endif
#endif /* HAVE_DIRENT_H */
],[
struct dirent d; int z; z = d.d_ino;
], mysql_cv_dirent_has_dino=yes, mysql_cv_dirent_has_dino=no)])
AC_MSG_RESULT($mysql_cv_dirent_has_dino)
706
if test "$mysql_cv_dirent_has_dino" = "yes"; then
707 708
AC_DEFINE(STRUCT_DIRENT_HAS_D_INO, [1],
          [d_ino member present in struct dirent])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
709 710 711
fi
])

712
AC_DEFUN([MYSQL_STRUCT_DIRENT_D_NAMLEN],
713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746
[AC_REQUIRE([AC_HEADER_DIRENT])
AC_MSG_CHECKING(if struct dirent has a d_namlen member)
AC_CACHE_VAL(mysql_cv_dirent_has_dnamlen,
[AC_TRY_COMPILE([
#include <stdio.h>
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif /* HAVE_UNISTD_H */
#if defined(HAVE_DIRENT_H)
# include <dirent.h>
#else
# define dirent direct
# ifdef HAVE_SYS_NDIR_H
#  include <sys/ndir.h>
# endif /* SYSNDIR */
# ifdef HAVE_SYS_DIR_H
#  include <sys/dir.h>
# endif /* SYSDIR */
# ifdef HAVE_NDIR_H
#  include <ndir.h>
# endif
#endif /* HAVE_DIRENT_H */
],[
struct dirent d; int z; z = (int)d.d_namlen;
], mysql_cv_dirent_has_dnamlen=yes, mysql_cv_dirent_has_dnamlen=no)])
AC_MSG_RESULT($mysql_cv_dirent_has_dnamlen)
if test "$mysql_cv_dirent_has_dnamlen" = "yes"; then
AC_DEFINE(STRUCT_DIRENT_HAS_D_NAMLEN, [1],
          [d_namlen member present in struct dirent])
fi
])


747
AC_DEFUN([MYSQL_TYPE_SIGHANDLER],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
748 749 750 751 752 753 754 755 756 757 758 759 760
[AC_MSG_CHECKING([whether signal handlers are of type void])
AC_CACHE_VAL(mysql_cv_void_sighandler,
[AC_TRY_COMPILE([#include <sys/types.h>
#include <signal.h>
#ifdef signal
#undef signal
#endif
#ifdef __cplusplus
extern "C"
#endif
void (*signal ()) ();],
[int i;], mysql_cv_void_sighandler=yes, mysql_cv_void_sighandler=no)])dnl
AC_MSG_RESULT($mysql_cv_void_sighandler)
761
if test "$mysql_cv_void_sighandler" = "yes"; then
762
AC_DEFINE(VOID_SIGHANDLER, [1], [sighandler type is void (*signal ()) ();])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
763 764 765
fi
])

766
AC_DEFUN([MYSQL_CXX_BOOL],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
767 768 769 770 771 772 773 774 775 776 777 778 779 780
[
AC_REQUIRE([AC_PROG_CXX])
AC_MSG_CHECKING(if ${CXX} supports bool types)
AC_CACHE_VAL(mysql_cv_have_bool,
[
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
AC_TRY_COMPILE(,[bool b = true;],
mysql_cv_have_bool=yes,
mysql_cv_have_bool=no)
AC_LANG_RESTORE
])
AC_MSG_RESULT($mysql_cv_have_bool)
if test "$mysql_cv_have_bool" = yes; then
781
AC_DEFINE([HAVE_BOOL], [1], [bool is not defined by all C++ compilators])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
782 783 784
fi
])dnl

785
AC_DEFUN([MYSQL_STACK_DIRECTION],
786
 [AC_CACHE_CHECK(stack direction for C alloca, ac_cv_c_stack_direction,
787 788
 [AC_TRY_RUN([#include <stdlib.h>
 int find_stack_direction ()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
789 790 791 792 793 794 795 796 797 798 799
 {
   static char *addr = 0;
   auto char dummy;
   if (addr == 0)
     {
       addr = &dummy;
       return find_stack_direction ();
     }
   else
     return (&dummy > addr) ? 1 : -1;
 }
800
 int main ()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
801 802 803 804 805
 {
   exit (find_stack_direction() < 0);
 }], ac_cv_c_stack_direction=1, ac_cv_c_stack_direction=-1,
   ac_cv_c_stack_direction=0)])
 AC_DEFINE_UNQUOTED(STACK_DIRECTION, $ac_cv_c_stack_direction)
806
])dnl
bk@work.mysql.com's avatar
bk@work.mysql.com committed
807

808
AC_DEFUN([MYSQL_FUNC_ALLOCA],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
809
[
810 811
# Since we have heard that alloca fails on IRIX never define it on a
# SGI machine
bk@work.mysql.com's avatar
bk@work.mysql.com committed
812 813 814 815 816 817 818 819
if test ! "$host_vendor" = "sgi"
then
 AC_REQUIRE_CPP()dnl Set CPP; we run AC_EGREP_CPP conditionally.
 # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
 # for constant arguments.  Useless!
 AC_CACHE_CHECK([for working alloca.h], ac_cv_header_alloca_h,
 [AC_TRY_LINK([#include <alloca.h>], [char *p = alloca(2 * sizeof(int));],
   ac_cv_header_alloca_h=yes, ac_cv_header_alloca_h=no)])
820
 if test "$ac_cv_header_alloca_h" = "yes"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
821
 then
822
	AC_DEFINE(HAVE_ALLOCA, 1)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843
 fi
 
 AC_CACHE_CHECK([for alloca], ac_cv_func_alloca_works,
 [AC_TRY_LINK([
 #ifdef __GNUC__
 # define alloca __builtin_alloca
 #else
 # if HAVE_ALLOCA_H
 #  include <alloca.h>
 # else
 #  ifdef _AIX
  #pragma alloca
 #  else
 #   ifndef alloca /* predefined by HP cc +Olibcalls */
 char *alloca ();
 #   endif
 #  endif
 # endif
 #endif
 ], [char *p = (char *) alloca(1);],
   ac_cv_func_alloca_works=yes, ac_cv_func_alloca_works=no)])
844
 if test "$ac_cv_func_alloca_works" = "yes"; then
845
   AC_DEFINE([HAVE_ALLOCA], [1], [If we have a working alloca() implementation])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
846 847
 fi
 
848
 if test "$ac_cv_func_alloca_works" = "no"; then
bk@work.mysql.com's avatar
bk@work.mysql.com committed
849 850 851 852 853
   # The SVR3 libPW and SVR4 libucb both contain incompatible functions
   # that cause trouble.  Some versions do not even contain alloca or
   # contain a buggy version.  If you still want to use their alloca,
   # use ar to extract alloca.o from them instead of compiling alloca.c.
   ALLOCA=alloca.o
854
   AC_DEFINE(C_ALLOCA, 1)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
855 856 857 858 859 860 861 862 863
 
 AC_CACHE_CHECK(whether alloca needs Cray hooks, ac_cv_os_cray,
 [AC_EGREP_CPP(webecray,
 [#if defined(CRAY) && ! defined(CRAY2)
 webecray
 #else
 wenotbecray
 #endif
 ], ac_cv_os_cray=yes, ac_cv_os_cray=no)])
864
 if test "$ac_cv_os_cray" = "yes"; then
bk@work.mysql.com's avatar
bk@work.mysql.com committed
865 866 867 868 869 870 871 872 873 874 875 876
 for ac_func in _getb67 GETB67 getb67; do
   AC_CHECK_FUNC($ac_func, [AC_DEFINE_UNQUOTED(CRAY_STACKSEG_END, $ac_func)
   break])
 done
 fi
 fi
 AC_SUBST(ALLOCA)dnl
else
 AC_MSG_RESULT("Skipped alloca tests")
fi
])

877
AC_DEFUN([MYSQL_CHECK_LONGLONG_TO_FLOAT],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
878 879 880 881 882 883 884 885 886 887 888 889
[
AC_MSG_CHECKING(if conversion of longlong to float works)
AC_CACHE_VAL(ac_cv_conv_longlong_to_float,
[AC_TRY_RUN([#include <stdio.h>
typedef long long longlong;
main()
{
  longlong ll=1;
  float f;
  FILE *file=fopen("conftestval", "w");
  f = (float) ll;
  fprintf(file,"%g\n",f);
890
  fclose(file);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
891 892 893 894 895 896 897 898 899 900 901
  exit (0);
}], ac_cv_conv_longlong_to_float=`cat conftestval`, ac_cv_conv_longlong_to_float=0, ifelse([$2], , , ac_cv_conv_longlong_to_float=$2))])dnl
if test "$ac_cv_conv_longlong_to_float" = "1" -o "$ac_cv_conv_longlong_to_float" = "yes"
then
  ac_cv_conv_longlong_to_float=yes
else
  ac_cv_conv_longlong_to_float=no
fi
AC_MSG_RESULT($ac_cv_conv_longlong_to_float)
])

902
AC_DEFUN([MYSQL_CHECK_CPU],
903 904
[AC_CACHE_CHECK([if compiler supports optimizations for current cpu],
mysql_cv_cpu,[
905 906 907 908 909 910 911 912

ac_save_CFLAGS="$CFLAGS"
if test -r /proc/cpuinfo ; then
  cpuinfo="cat /proc/cpuinfo"
  cpu_family=`$cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1`
  cpu_vendor=`$cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1`
fi 
if test "$cpu_vendor" = "AuthenticAMD"; then
913
    if test $cpu_family -ge 6; then
914
      cpu_set="athlon pentiumpro k5 pentium i486 i386";
915
    elif test $cpu_family -eq 5; then
916
      cpu_set="k5 pentium i486 i386";
917
    elif test $cpu_family -eq 4; then
918 919 920 921 922
      cpu_set="i486 i386"
    else
      cpu_set="i386"
    fi
elif test "$cpu_vendor" = "GenuineIntel"; then
923
    if test $cpu_family -ge 6; then
924
      cpu_set="pentiumpro pentium i486 i386";
925
    elif test $cpu_family -eq 5; then
926
      cpu_set="pentium i486 i386";
927
    elif test $cpu_family -eq 4; then
928 929 930 931 932 933 934 935
      cpu_set="i486 i386"
    else
      cpu_set="i386"
    fi
fi

for ac_arg in $cpu_set;
do
tonu@x153.internalnet's avatar
tonu@x153.internalnet committed
936
  CFLAGS="$ac_save_CFLAGS -mcpu=$ac_arg -march=$ac_arg -DCPU=$ac_arg" 
937 938 939 940 941 942
  AC_TRY_COMPILE([],[int i],mysql_cv_cpu=$ac_arg; break;, mysql_cv_cpu="unknown")
done

if test "$mysql_cv_cpu" = "unknown"
then
  CFLAGS="$ac_save_CFLAGS"
943
  AC_MSG_RESULT(none)
944
else
945
  AC_MSG_RESULT($mysql_cv_cpu)
946
fi
947
]]))
948

949
AC_DEFUN([MYSQL_CHECK_VIO], [
950
  AC_ARG_WITH([vio],
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
951
              [  --with-vio              Include the Virtual IO support],
952 953 954 955 956 957 958
              [vio="$withval"],
              [vio=no])

  if test "$vio" = "yes"
  then
    vio_dir="vio"
    vio_libs="../vio/libvio.la"
959
    AC_DEFINE(HAVE_VIO, 1)
960 961 962 963 964 965 966 967
  else
    vio_dir=""
    vio_libs=""
  fi
  AC_SUBST([vio_dir])
  AC_SUBST([vio_libs])
])

968
AC_DEFUN([MYSQL_FIND_OPENSSL], [
969 970
  incs="$1"
  libs="$2"
971
  eval shrexts=\"$shrext_cmds\"
972
  case "$incs---$libs" in
973
    ---)
974
      for d in /usr/ssl/include /usr/local/ssl/include /usr/include \
975
/usr/include/ssl /opt/ssl/include /opt/openssl/include \
976
/usr/local/ssl/include /usr/local/include /usr/freeware/include ; do
977 978 979 980
       if test -f $d/openssl/ssl.h  ; then
         OPENSSL_INCLUDE=-I$d
       fi
      done
981

982
      for d in /usr/ssl/lib /usr/local/ssl/lib /usr/lib/openssl \
983 984
/usr/lib /usr/lib64 /opt/ssl/lib /opt/openssl/lib \
/usr/freeware/lib32 /usr/local/lib/ ; do
kent@mysql.com's avatar
kent@mysql.com committed
985
      # Just to be safe, we test for ".so" anyway
986
      if test -f $d/libssl.a || test -f $d/libssl.so || test -f $d/libssl$shrexts ; then
987 988 989 990
        OPENSSL_LIB=$d
      fi
      done
      ;;
991
    ---* | *---)
992 993 994 995 996 997
      AC_MSG_ERROR([if either 'includes' or 'libs' is specified, both must be specified])
      ;;
    * )
      if test -f $incs/openssl/ssl.h  ; then
        OPENSSL_INCLUDE=-I$incs
      fi
kent@mysql.com's avatar
kent@mysql.com committed
998
      # Just to be safe, we test for ".so" anyway
999
      if test -f $libs/libssl.a || test -f $libs/libssl.so || test -f "$libs/libssl$shrexts" ; then
1000 1001 1002 1003
        OPENSSL_LIB=$libs
      fi
      ;;
  esac
1004

1005 1006 1007 1008
  # On RedHat 9 we need kerberos to compile openssl
  for d in /usr/kerberos/include
  do
   if test -f $d/krb5.h  ; then
1009
     OPENSSL_KERBEROS_INCLUDE="$d"
1010 1011 1012 1013
   fi
  done


1014 1015 1016
 if test -z "$OPENSSL_LIB" -o -z "$OPENSSL_INCLUDE" ; then
   echo "Could not find an installation of OpenSSL"
   if test -n "$OPENSSL_LIB" ; then
1017
    if test "$TARGET_LINUX" = "true"; then
1018
      echo "Looks like you've forgotten to install OpenSSL development RPM"
1019 1020 1021 1022 1023 1024
    fi
   fi
  exit 1
 fi

])
1025

1026
AC_DEFUN([MYSQL_CHECK_OPENSSL], [
1027 1028
AC_MSG_CHECKING(for OpenSSL)
  AC_ARG_WITH([openssl],
1029
              [  --with-openssl[=DIR]    Include the OpenSSL support],
1030 1031 1032
              [openssl="$withval"],
              [openssl=no])

1033 1034 1035 1036 1037
  AC_ARG_WITH([openssl-includes],
              [
  --with-openssl-includes=DIR
                          Find OpenSSL headers in DIR],
              [openssl_includes="$withval"],
1038
              [openssl_includes=""])
1039 1040 1041 1042 1043 1044

  AC_ARG_WITH([openssl-libs],
              [
  --with-openssl-libs=DIR
                          Find OpenSSL libraries in DIR],
              [openssl_libs="$withval"],
1045
              [openssl_libs=""])
1046

1047
  if test "$openssl" != "no"
1048
  then
1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
	if test "$openssl" != "yes"
	then
		if test -z "$openssl_includes" 
		then
			openssl_includes="$openssl/include"
		fi
		if test -z "$openssl_libs" 
		then
			openssl_libs="$openssl/lib"
		fi
	fi
1060
    MYSQL_FIND_OPENSSL([$openssl_includes], [$openssl_libs])
1061 1062 1063
    #force VIO use
    vio_dir="vio"
    vio_libs="../vio/libvio.la"
1064
    AC_DEFINE([HAVE_VIO], [1], [Virtual IO])
1065 1066
    AC_MSG_RESULT(yes)
    openssl_libs="-L$OPENSSL_LIB -lssl -lcrypto"
1067 1068
    # Don't set openssl_includes to /usr/include as this gives us a lot of
    # compiler warnings when using gcc 3.x
1069
    openssl_includes=""
1070
    if test "$OPENSSL_INCLUDE" != "-I/usr/include"
1071
    then
1072
	openssl_includes="$OPENSSL_INCLUDE"
1073
    fi
1074 1075 1076 1077
    if test "$OPENSSL_KERBEROS_INCLUDE"
    then
    	openssl_includes="$openssl_includes -I$OPENSSL_KERBEROS_INCLUDE"
    fi
1078
    AC_DEFINE([HAVE_OPENSSL], [1], [OpenSSL])
1079 1080 1081 1082 1083 1084 1085 1086

    # openssl-devel-0.9.6 requires dlopen() and we can't link staticly
    # on many platforms (We should actually test this here, but it's quite
    # hard) to do as we are doing libtool for linking.
    using_static=""
    case "$CLIENT_EXTRA_LDFLAGS $MYSQLD_EXTRA_LDFLAGS" in
	*-all-static*) using_static="yes" ;;
    esac
1087
    if test "$using_static" = "yes"
1088 1089 1090 1091
    then
      echo "You can't use the --all-static link option when using openssl."
      exit 1
    fi
1092
  else
1093
    AC_MSG_RESULT(no)
1094 1095 1096 1097 1098 1099 1100 1101
	if test ! -z "$openssl_includes"
	then
		AC_MSG_ERROR(Can't have --with-openssl-includes without --with-openssl);
	fi
	if test ! -z "$openssl_libs"
	then
		AC_MSG_ERROR(Can't have --with-openssl-libs without --with-openssl);
	fi
1102
  fi
1103 1104
  AC_SUBST(openssl_libs)
  AC_SUBST(openssl_includes)
1105 1106 1107
])


1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
dnl ---------------------------------------------------------------------------
dnl Macro: MYSQL_CHECK_BIG_TABLES
dnl Sets BIG_TABLES if --with-big-tables is used
dnl ---------------------------------------------------------------------------
AC_DEFUN([MYSQL_CHECK_BIG_TABLES], [
  AC_ARG_WITH([big-tables],
              [
  --with-big-tables       Support tables with more than 4 G rows even on 32 bit platforms],
              [bigtables="$withval"],
              [bigtables=no])
  AC_MSG_CHECKING([for big tables support])

  case "$bigtables" in
    yes )
      AC_DEFINE([BIG_TABLES], [1], [Support big tables])
      AC_MSG_RESULT([yes])
      ;;
    * )
      AC_MSG_RESULT([no])
      ;;
  esac

])
dnl ---------------------------------------------------------------------------
dnl END OF MYSQL_CHECK_BIG_TABLES SECTION
dnl ---------------------------------------------------------------------------


1136
AC_DEFUN([MYSQL_CHECK_MYSQLFS], [
1137
  AC_ARG_WITH([mysqlfs],
1138
              [
1139 1140 1141 1142 1143 1144 1145 1146
  --with-mysqlfs          Include the corba-based MySQL file system],
              [mysqlfs="$withval"],
              [mysqlfs=no])

dnl Call MYSQL_CHECK_ORBIT even if mysqlfs == no, so that @orbit_*@
dnl get substituted.
  MYSQL_CHECK_ORBIT

1147
  AC_MSG_CHECKING(if we should build MySQLFS)
1148
  fs_dirs=""
1149 1150 1151 1152 1153
  if test "$mysqlfs" = "yes"
  then
    if test -n "$orbit_exec_prefix"
    then
      fs_dirs=fs
1154
      AC_MSG_RESULT([yes])
1155
    else
1156
      AC_MSG_RESULT(disabled because ORBIT, the CORBA ORB, was not found)
1157 1158
    fi
  else
1159
    AC_MSG_RESULT([no])
1160 1161 1162 1163
  fi
  AC_SUBST([fs_dirs])
])

1164
AC_DEFUN([MYSQL_CHECK_ORBIT], [
1165
AC_MSG_CHECKING(for ORBit)
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1166
orbit_config_path=`which orbit-config`
1167
if test -n "$orbit_config_path" -a $? = 0
1168 1169 1170 1171 1172 1173
then
  orbit_exec_prefix=`orbit-config --exec-prefix`
  orbit_includes=`orbit-config --cflags server`
  orbit_libs=`orbit-config --libs server`
  orbit_idl="$orbit_exec_prefix/bin/orbit-idl"
  AC_MSG_RESULT(found!)
1174
  AC_DEFINE([HAVE_ORBIT], [1], [ORBIT])
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186
else
  orbit_exec_prefix=
  orbit_includes=
  orbit_libs=
  orbit_idl=
  AC_MSG_RESULT(not found)
fi
AC_SUBST(orbit_includes)
AC_SUBST(orbit_libs)
AC_SUBST(orbit_idl)
])

1187
AC_DEFUN([MYSQL_CHECK_ISAM], [
1188
  AC_ARG_WITH([isam], [
1189
  --with-isam             Enable the ISAM table type],
1190
    [with_isam="$withval"],
1191
    [with_isam=no])
1192 1193 1194 1195

  isam_libs=
  if test X"$with_isam" = X"yes"
  then
1196
    AC_DEFINE([HAVE_ISAM], [1], [Using old ISAM tables])
1197 1198 1199 1200 1201 1202 1203
    isam_libs="\$(top_builddir)/isam/libnisam.a\
 \$(top_builddir)/merge/libmerge.a"
  fi
  AC_SUBST(isam_libs)
])


bk@work.mysql.com's avatar
bk@work.mysql.com committed
1204 1205 1206
dnl ---------------------------------------------------------------------------
dnl Macro: MYSQL_CHECK_BDB
dnl Sets HAVE_BERKELEY_DB if inst library is found
1207 1208
dnl Makes sure db version is correct.
dnl Looks in $srcdir for Berkeley distribution if not told otherwise
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1209 1210 1211 1212
dnl ---------------------------------------------------------------------------

AC_DEFUN([MYSQL_CHECK_BDB], [
  AC_ARG_WITH([berkeley-db],
1213
              [
1214 1215
  --with-berkeley-db[=DIR]
                          Use BerkeleyDB located in DIR],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1216
              [bdb="$withval"],
1217
              [bdb=no])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1218 1219

  AC_ARG_WITH([berkeley-db-includes],
1220
              [
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1221 1222 1223 1224 1225 1226
  --with-berkeley-db-includes=DIR
                          Find Berkeley DB headers in DIR],
              [bdb_includes="$withval"],
              [bdb_includes=default])

  AC_ARG_WITH([berkeley-db-libs],
1227
              [
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
  --with-berkeley-db-libs=DIR
                          Find Berkeley DB libraries in DIR],
              [bdb_libs="$withval"],
              [bdb_libs=default])

  AC_MSG_CHECKING([for BerkeleyDB])

dnl     SORT OUT THE SUPPLIED ARGUMENTS TO DETERMINE WHAT TO DO
dnl echo "DBG1: bdb='$bdb'; incl='$bdb_includes'; lib='$bdb_libs'"
  have_berkeley_db=no
  case "$bdb" in
    no )
      mode=no
      AC_MSG_RESULT([no])
      ;;
    yes | default )
      case "$bdb_includes---$bdb_libs" in
        default---default )
          mode=search-$bdb
          AC_MSG_RESULT([searching...])
          ;;
        default---* | *---default | yes---* | *---yes )
          AC_MSG_ERROR([if either 'includes' or 'libs' is specified, both must be specified])
          ;;
        * )
          mode=supplied-two
          AC_MSG_RESULT([supplied])
          ;;
      esac
      ;;
    * )
      mode=supplied-one
      AC_MSG_RESULT([supplied])
      ;;
  esac

dnl echo "DBG2: [$mode] bdb='$bdb'; incl='$bdb_includes'; lib='$bdb_libs'"

  case $mode in
    no )
      bdb_includes=
      bdb_libs=
1270
      bdb_libs_with_path=
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
      ;;
    supplied-two )
      MYSQL_CHECK_INSTALLED_BDB([$bdb_includes], [$bdb_libs])
      case $bdb_dir_ok in
        installed ) mode=yes ;;
        * ) AC_MSG_ERROR([didn't find valid BerkeleyDB: $bdb_dir_ok]) ;;
      esac
      ;;
    supplied-one )
      MYSQL_CHECK_BDB_DIR([$bdb])
      case $bdb_dir_ok in
        source ) mode=compile ;;
        installed ) mode=yes ;;
        * ) AC_MSG_ERROR([didn't find valid BerkeleyDB: $bdb_dir_ok]) ;;
      esac
      ;;
    search-* )
      MYSQL_SEARCH_FOR_BDB
      case $bdb_dir_ok in
        source ) mode=compile ;;
        installed ) mode=yes ;;
        * )
          # not found
          case $mode in
            *-yes ) AC_MSG_ERROR([no suitable BerkeleyDB found]) ;;
            * ) mode=no ;;
          esac
         bdb_includes=
         bdb_libs=
1300
	 bdb_libs_with_path=
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
          ;;
      esac
      ;;
    *)
      AC_MSG_ERROR([impossible case condition '$mode': please report this to bugs@lists.mysql.com])
      ;;
  esac

dnl echo "DBG3: [$mode] bdb='$bdb'; incl='$bdb_includes'; lib='$bdb_libs'"
  case $mode in
    no )
      AC_MSG_RESULT([Not using Berkeley DB])
      ;;
    yes )
      have_berkeley_db="yes"
      AC_MSG_RESULT([Using Berkeley DB in '$bdb_includes'])
      ;;
    compile )
      have_berkeley_db="$bdb"
1320
      AC_MSG_RESULT([Compiling Berekeley DB in '$have_berkeley_db'])
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1321 1322 1323 1324 1325 1326 1327 1328
      ;;
    * )
      AC_MSG_ERROR([impossible case condition '$mode': please report this to bugs@lists.mysql.com])
      ;;
  esac

  AC_SUBST(bdb_includes)
  AC_SUBST(bdb_libs)
1329
  AC_SUBST(bdb_libs_with_path)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
])

AC_DEFUN([MYSQL_CHECK_INSTALLED_BDB], [
dnl echo ["MYSQL_CHECK_INSTALLED_BDB ($1) ($2)"]
  inc="$1"
  lib="$2"
  if test -f "$inc/db.h"
  then
    MYSQL_CHECK_BDB_VERSION([$inc/db.h],
      [.*#define[ 	]*], [[ 	][ 	]*])

    if test X"$bdb_version_ok" = Xyes; then
monty@donna.mysql.com's avatar
monty@donna.mysql.com committed
1342 1343
      save_LDFLAGS="$LDFLAGS"
      LDFLAGS="-L$lib $LDFLAGS"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1344 1345 1346 1347 1348 1349
      AC_CHECK_LIB(db,db_env_create, [
        bdb_dir_ok=installed
        MYSQL_TOP_BUILDDIR([inc])
        MYSQL_TOP_BUILDDIR([lib])
        bdb_includes="-I$inc"
        bdb_libs="-L$lib -ldb"
1350
        bdb_libs_with_path="$lib/libdb.a"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1351
      ])
monty@donna.mysql.com's avatar
monty@donna.mysql.com committed
1352
      LDFLAGS="$save_LDFLAGS"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
    else
      bdb_dir_ok="$bdb_version_ok"
    fi
  else
    bdb_dir_ok="no db.h file in '$inc'"
  fi
])

AC_DEFUN([MYSQL_CHECK_BDB_DIR], [
dnl ([$bdb])
dnl echo ["MYSQL_CHECK_BDB_DIR ($1)"]
  dir="$1"

  MYSQL_CHECK_INSTALLED_BDB([$dir/include], [$dir/lib])

1368
  if test X"$bdb_dir_ok" != Xinstalled; then
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1369 1370 1371 1372 1373 1374 1375 1376 1377 1378
    # test to see if it's a source dir
    rel="$dir/dist/RELEASE"
    if test -f "$rel"; then
      MYSQL_CHECK_BDB_VERSION([$rel], [], [=])
      if test X"$bdb_version_ok" = Xyes; then
        bdb_dir_ok=source
        bdb="$dir"
        MYSQL_TOP_BUILDDIR([dir])
        bdb_includes="-I$dir/build_unix"
        bdb_libs="-L$dir/build_unix -ldb"
1379
	bdb_libs_with_path="$dir/build_unix/libdb.a"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1380 1381 1382 1383
      else
        bdb_dir_ok="$bdb_version_ok"
      fi
    else
1384
      bdb_dir_ok="'$dir' doesn't look like a BDB directory ($bdb_dir_ok)"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1385 1386 1387 1388 1389 1390 1391 1392
    fi
  fi
])

AC_DEFUN([MYSQL_SEARCH_FOR_BDB], [
dnl echo ["MYSQL_SEARCH_FOR_BDB"]
  bdb_dir_ok="no BerkeleyDB found"

1393 1394
  for test_dir in $srcdir/bdb $srcdir/db-*.*.* /usr/local/BerkeleyDB*; do
dnl    echo "-----------> Looking at ($test_dir; `cd $test_dir && pwd`)"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1395 1396
    MYSQL_CHECK_BDB_DIR([$test_dir])
    if test X"$bdb_dir_ok" = Xsource || test X"$bdb_dir_ok" = Xinstalled; then
1397 1398 1399 1400 1401 1402 1403 1404
dnl	echo "-----------> Found it ($bdb), ($srcdir)"
dnl     This is needed so that 'make distcheck' works properly (VPATH build).
dnl     VPATH build won't work if bdb is not under the source tree; but in
dnl     that case, hopefully people will just make and install inside the
dnl     tree, or install BDB first, and then use the installed version.
	case "$bdb" in
	"$srcdir/"* ) bdb=`echo "$bdb" | sed -e "s,^$srcdir/,,"` ;;
	esac
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422
        break
    fi
  done
])

dnl MYSQL_CHECK_BDB_VERSION takes 3 arguments:
dnl     1)  the file to look in
dnl     2)  the search pattern before DB_VERSION_XXX
dnl     3)  the search pattern between DB_VERSION_XXX and the number
dnl It assumes that the number is the last thing on the line
AC_DEFUN([MYSQL_CHECK_BDB_VERSION], [
  db_major=`sed -e '/^[$2]DB_VERSION_MAJOR[$3]/ !d' -e 's///' [$1]`
  db_minor=`sed -e '/^[$2]DB_VERSION_MINOR[$3]/ !d' -e 's///' [$1]`
  db_patch=`sed -e '/^[$2]DB_VERSION_PATCH[$3]/ !d' -e 's///' [$1]`
  test -z "$db_major" && db_major=0
  test -z "$db_minor" && db_minor=0
  test -z "$db_patch" && db_patch=0

1423
  # This is ugly, but about as good as it can get
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
1424 1425 1426 1427 1428 1429 1430 1431 1432 1433
#  mysql_bdb=
#  if test $db_major -eq 3 && test $db_minor -eq 2 && test $db_patch -eq 3
#  then
#    mysql_bdb=h
#  elif test $db_major -eq 3 && test $db_minor -eq 2 && test $db_patch -eq 9
#  then
#    want_bdb_version="3.2.9a"	# hopefully this will stay up-to-date
#    mysql_bdb=a
#  fi

1434
dnl RAM:
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445
want_bdb_version="4.1.24"
bdb_version_ok=yes

#  if test -n "$mysql_bdb" && \
#	grep "DB_VERSION_STRING.*:.*$mysql_bdb: " [$1] > /dev/null
#  then
#    bdb_version_ok=yes
#  else
#    bdb_version_ok="invalid version $db_major.$db_minor.$db_patch"
#    bdb_version_ok="$bdb_version_ok (must be version 3.2.3h or $want_bdb_version)"
#  fi
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1446 1447 1448
])

AC_DEFUN([MYSQL_TOP_BUILDDIR], [
1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460
  case "$[$1]" in
    /* ) ;;		# don't do anything with an absolute path
    "$srcdir"/* )
      # If BDB is under the source directory, we need to look under the
      # build directory for bdb/build_unix.
      # NOTE: I'm being lazy, and assuming the user did not specify
      # something like --with-berkeley-db=bdb (it would be missing "./").
      [$1]="\$(top_builddir)/"`echo "$[$1]" | sed -e "s,^$srcdir/,,"`
      ;;
    * )
      AC_MSG_ERROR([The BDB directory must be directly under the MySQL source directory, or be specified using the full path. ('$srcdir'; '$[$1]')])
      ;;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1461
  esac
1462
  if test X"$[$1]" != "/"
1463 1464 1465
  then
    [$1]=`echo $[$1] | sed -e 's,/$,,'`
  fi
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1466 1467 1468 1469 1470 1471
])

dnl ---------------------------------------------------------------------------
dnl END OF MYSQL_CHECK_BDB SECTION
dnl ---------------------------------------------------------------------------

1472
dnl ---------------------------------------------------------------------------
1473 1474
dnl Macro: MYSQL_CHECK_INNODB
dnl Sets HAVE_INNOBASE_DB if --with-innodb is used
1475 1476
dnl ---------------------------------------------------------------------------

1477 1478
AC_DEFUN([MYSQL_CHECK_INNODB], [
  AC_ARG_WITH([innodb],
1479
              [
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1480
  --without-innodb        Do not include the InnoDB table handler],
1481
              [innodb="$withval"],
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1482
              [innodb=yes])
1483

1484
  AC_MSG_CHECKING([for Innodb])
1485

1486 1487 1488 1489
  have_innodb=no
  innodb_includes=
  innodb_libs=
  case "$innodb" in
1490
    yes )
1491
      AC_MSG_RESULT([Using Innodb])
1492
      AC_DEFINE([HAVE_INNOBASE_DB], [1], [Using Innobase DB])
1493 1494
      have_innodb="yes"
      innodb_includes="-I../innobase/include"
1495
      innodb_system_libs=""
1496 1497
dnl Some libs are listed several times, in order for gcc to sort out
dnl circular references.
1498
      innodb_libs="\
1499 1500
 \$(top_builddir)/innobase/usr/libusr.a\
 \$(top_builddir)/innobase/srv/libsrv.a\
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1501
 \$(top_builddir)/innobase/dict/libdict.a\
1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532
 \$(top_builddir)/innobase/que/libque.a\
 \$(top_builddir)/innobase/srv/libsrv.a\
 \$(top_builddir)/innobase/ibuf/libibuf.a\
 \$(top_builddir)/innobase/row/librow.a\
 \$(top_builddir)/innobase/pars/libpars.a\
 \$(top_builddir)/innobase/btr/libbtr.a\
 \$(top_builddir)/innobase/trx/libtrx.a\
 \$(top_builddir)/innobase/read/libread.a\
 \$(top_builddir)/innobase/usr/libusr.a\
 \$(top_builddir)/innobase/buf/libbuf.a\
 \$(top_builddir)/innobase/ibuf/libibuf.a\
 \$(top_builddir)/innobase/eval/libeval.a\
 \$(top_builddir)/innobase/log/liblog.a\
 \$(top_builddir)/innobase/fsp/libfsp.a\
 \$(top_builddir)/innobase/fut/libfut.a\
 \$(top_builddir)/innobase/fil/libfil.a\
 \$(top_builddir)/innobase/lock/liblock.a\
 \$(top_builddir)/innobase/mtr/libmtr.a\
 \$(top_builddir)/innobase/page/libpage.a\
 \$(top_builddir)/innobase/rem/librem.a\
 \$(top_builddir)/innobase/thr/libthr.a\
 \$(top_builddir)/innobase/sync/libsync.a\
 \$(top_builddir)/innobase/data/libdata.a\
 \$(top_builddir)/innobase/mach/libmach.a\
 \$(top_builddir)/innobase/ha/libha.a\
 \$(top_builddir)/innobase/dyn/libdyn.a\
 \$(top_builddir)/innobase/mem/libmem.a\
 \$(top_builddir)/innobase/sync/libsync.a\
 \$(top_builddir)/innobase/ut/libut.a\
 \$(top_builddir)/innobase/os/libos.a\
 \$(top_builddir)/innobase/ut/libut.a"
1533

1534
      AC_CHECK_LIB(rt, aio_read, [innodb_system_libs="-lrt"])
1535 1536
      ;;
    * )
1537
      AC_MSG_RESULT([Not using Innodb])
1538 1539 1540
      ;;
  esac

1541 1542
  AC_SUBST(innodb_includes)
  AC_SUBST(innodb_libs)
1543
  AC_SUBST(innodb_system_libs)
1544 1545 1546
])

dnl ---------------------------------------------------------------------------
1547
dnl END OF MYSQL_CHECK_INNODB SECTION
1548 1549
dnl ---------------------------------------------------------------------------

1550 1551 1552 1553 1554 1555 1556 1557
dnl ---------------------------------------------------------------------------
dnl Macro: MYSQL_CHECK_EXAMPLEDB
dnl Sets HAVE_EXAMPLE_DB if --with-example-storage-engine is used
dnl ---------------------------------------------------------------------------
AC_DEFUN([MYSQL_CHECK_EXAMPLEDB], [
  AC_ARG_WITH([example-storage-engine],
              [
  --with-example-storage-engine
konstantin@mysql.com's avatar
konstantin@mysql.com committed
1558
                          Enable the Example Storage Engine],
1559 1560 1561 1562 1563 1564
              [exampledb="$withval"],
              [exampledb=no])
  AC_MSG_CHECKING([for example storage engine])

  case "$exampledb" in
    yes )
1565
      AC_DEFINE([HAVE_EXAMPLE_DB], [1], [Builds Example DB])
1566
      AC_MSG_RESULT([yes])
1567
      [exampledb=yes]
1568 1569 1570
      ;;
    * )
      AC_MSG_RESULT([no])
1571
      [exampledb=no]
1572 1573 1574 1575 1576 1577 1578 1579
      ;;
  esac

])
dnl ---------------------------------------------------------------------------
dnl END OF MYSQL_CHECK_EXAMPLE SECTION
dnl ---------------------------------------------------------------------------

1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594
dnl ---------------------------------------------------------------------------
dnl Macro: MYSQL_CHECK_BLACKHOLEDB
dnl Sets HAVE_BLACKHOLE_DB if --with-blackhole-storage-engine is used
dnl ---------------------------------------------------------------------------
AC_DEFUN([MYSQL_CHECK_BLACKHOLEDB], [
  AC_ARG_WITH([blackhole-storage-engine],
              [
  --with-blackhole-storage-engine
                          Enable the Blackhole Storage Engine],
              [blackholedb="$withval"],
              [blackholedb=no])
  AC_MSG_CHECKING([for blackhole storage engine])

  case "$blackholedb" in
    yes )
1595
      AC_DEFINE([HAVE_BLACKHOLE_DB], [1], [Builds Blackhole Storage Engine])
1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609
      AC_MSG_RESULT([yes])
      [blackholedb=yes]
      ;;
    * )
      AC_MSG_RESULT([no])
      [blackholedb=no]
      ;;
  esac

])
dnl ---------------------------------------------------------------------------
dnl END OF MYSQL_CHECK_BLACKHOLE SECTION
dnl ---------------------------------------------------------------------------

1610
dnl ---------------------------------------------------------------------------
1611 1612 1613 1614 1615 1616 1617
dnl Macro: MYSQL_CHECK_ARCHIVEDB
dnl Sets HAVE_ARCHIVE_DB if --with-archive-storage-engine is used
dnl ---------------------------------------------------------------------------
AC_DEFUN([MYSQL_CHECK_ARCHIVEDB], [
  AC_ARG_WITH([archive-storage-engine],
              [
  --with-archive-storage-engine
konstantin@mysql.com's avatar
konstantin@mysql.com committed
1618
                          Enable the Archive Storage Engine],
1619 1620 1621 1622 1623 1624
              [archivedb="$withval"],
              [archivedb=no])
  AC_MSG_CHECKING([for archive storage engine])

  case "$archivedb" in
    yes )
1625
      AC_DEFINE([HAVE_ARCHIVE_DB], [1], [Builds Archive Storage Engine])
1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639
      AC_MSG_RESULT([yes])
      [archivedb=yes]
      ;;
    * )
      AC_MSG_RESULT([no])
      [archivedb=no]
      ;;
  esac

])
dnl ---------------------------------------------------------------------------
dnl END OF MYSQL_CHECK_ARCHIVE SECTION
dnl ---------------------------------------------------------------------------

1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654
dnl ---------------------------------------------------------------------------
dnl Macro: MYSQL_CHECK_CSVDB
dnl Sets HAVE_CSV_DB if --with-csv-storage-engine is used
dnl ---------------------------------------------------------------------------
AC_DEFUN([MYSQL_CHECK_CSVDB], [
  AC_ARG_WITH([csv-storage-engine],
              [
  --with-csv-storage-engine
                          Enable the CSV Storage Engine],
              [csvdb="$withval"],
              [csvdb=no])
  AC_MSG_CHECKING([for csv storage engine])

  case "$csvdb" in
    yes )
1655
      AC_DEFINE([HAVE_CSV_DB], [1], [Builds the CSV Storage Engine])
1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670
      AC_MSG_RESULT([yes])
      [csvdb=yes]
      ;;
    * )
      AC_MSG_RESULT([no])
      [csvdb=no]
      ;;
  esac

])
dnl ---------------------------------------------------------------------------
dnl END OF MYSQL_CHECK_CSV SECTION
dnl ---------------------------------------------------------------------------


1671 1672 1673 1674 1675
dnl ---------------------------------------------------------------------------
dnl Macro: MYSQL_CHECK_NDBCLUSTER
dnl Sets HAVE_NDBCLUSTER_DB if --with-ndbcluster is used
dnl ---------------------------------------------------------------------------
                                                                                
tomas@poseidon.(none)'s avatar
tomas@poseidon.(none) committed
1676
AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [
mikael@mc04.(none)'s avatar
mikael@mc04.(none) committed
1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708
  AC_ARG_WITH([ndb-sci],
              AC_HELP_STRING([--with-ndb-sci=DIR],
                             [Provide MySQL with a custom location of
                             sci library. Given DIR, sci library is 
                             assumed to be in $DIR/lib and header files
                             in $DIR/include.]),
              [mysql_sci_dir=${withval}],
              [mysql_sci_dir=""])

  case "$mysql_sci_dir" in
    "no" )
      have_ndb_sci=no
      AC_MSG_RESULT([-- not including sci transporter])
      ;;
    * )
      if test -f "$mysql_sci_dir/lib/libsisci.a" -a \ 
              -f "$mysql_sci_dir/include/sisci_api.h"; then
        NDB_SCI_INCLUDES="-I$mysql_sci_dir/include"
        NDB_SCI_LIBS="-L$mysql_sci_dir/lib -lsisci"
        AC_MSG_RESULT([-- including sci transporter])
        AC_DEFINE([NDB_SCI_TRANSPORTER], [1],
                  [Including Ndb Cluster DB sci transporter])
        AC_SUBST(NDB_SCI_INCLUDES)
        AC_SUBST(NDB_SCI_LIBS)
        have_ndb_sci="yes"
        AC_MSG_RESULT([found sci transporter in $mysql_sci_dir/{include, lib}])
      else
        AC_MSG_RESULT([could not find sci transporter in $mysql_sci_dir/{include, lib}])
      fi
      ;;
  esac

1709 1710 1711 1712 1713
  AC_ARG_WITH([ndb-test],
              [
  --with-ndb-test       Include the NDB Cluster ndbapi test programs],
              [ndb_test="$withval"],
              [ndb_test=no])
tomas@mc05.(none)'s avatar
tomas@mc05.(none) committed
1714 1715 1716 1717 1718
  AC_ARG_WITH([ndb-docs],
              [
  --with-ndb-docs       Include the NDB Cluster ndbapi and mgmapi documentation],
              [ndb_docs="$withval"],
              [ndb_docs=no])
1719 1720 1721 1722 1723
  AC_ARG_WITH([ndb-port],
              [
  --with-ndb-port       Port for NDB Cluster management server],
              [ndb_port="$withval"],
              [ndb_port="default"])
1724 1725
  AC_ARG_WITH([ndb-port-base],
              [
1726
  --with-ndb-port-base  Base port for NDB Cluster transporters],
1727 1728
              [ndb_port_base="$withval"],
              [ndb_port_base="default"])
1729 1730 1731 1732
  AC_ARG_WITH([ndb-debug],
              [
  --without-ndb-debug   Disable special ndb debug features],
              [ndb_debug="$withval"],
1733
              [ndb_debug="default"])
1734
  AC_ARG_WITH([ndb-ccflags],
1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747
              AC_HELP_STRING([--with-ndb-ccflags=CFLAGS],
			   [Extra CFLAGS for ndb compile]),
              [ndb_ccflags=${withval}],
              [ndb_ccflags=""])

  case "$ndb_ccflags" in
    "yes")
	AC_MSG_RESULT([The --ndb-ccflags option requires a parameter (passed to CC for ndb compilation)])
	;;
    *)
        ndb_cxxflags_fix="$ndb_cxxflags_fix $ndb_ccflags"
    ;;
  esac
1748

tomas@poseidon.(none)'s avatar
tomas@poseidon.(none) committed
1749
  AC_MSG_CHECKING([for NDB Cluster options])
1750
  AC_MSG_RESULT([])
tomas@poseidon.(none)'s avatar
tomas@poseidon.(none) committed
1751
                                                                                
1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762
  have_ndb_test=no
  case "$ndb_test" in
    yes )
      AC_MSG_RESULT([-- including ndbapi test programs])
      have_ndb_test="yes"
      ;;
    * )
      AC_MSG_RESULT([-- not including ndbapi test programs])
      ;;
  esac

tomas@mc05.(none)'s avatar
tomas@mc05.(none) committed
1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773
  have_ndb_docs=no
  case "$ndb_docs" in
    yes )
      AC_MSG_RESULT([-- including ndbapi and mgmapi documentation])
      have_ndb_docs="yes"
      ;;
    * )
      AC_MSG_RESULT([-- not including ndbapi and mgmapi documentation])
      ;;
  esac

1774 1775 1776
  case "$ndb_debug" in
    yes )
      AC_MSG_RESULT([-- including ndb extra debug options])
1777
      have_ndb_debug="yes"
1778 1779 1780
      ;;
    full )
      AC_MSG_RESULT([-- including ndb extra extra debug options])
1781
      have_ndb_debug="full"
1782 1783 1784
      ;;
    no )
      AC_MSG_RESULT([-- not including ndb extra debug options])
1785
      have_ndb_debug="no"
1786 1787
      ;;
    * )
1788
      have_ndb_debug="default"
1789 1790 1791
      ;;
  esac

1792
  AC_MSG_RESULT([done.])
tomas@poseidon.(none)'s avatar
tomas@poseidon.(none) committed
1793 1794
])

1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806
AC_DEFUN([MYSQL_CHECK_NDBCLUSTER], [
  AC_ARG_WITH([ndbcluster],
              [
  --with-ndbcluster        Include the NDB Cluster table handler],
              [ndbcluster="$withval"],
              [ndbcluster=no])
                                                                                
  AC_MSG_CHECKING([for NDB Cluster])
                                                                                
  have_ndbcluster=no
  ndbcluster_includes=
  ndbcluster_libs=
1807
  ndb_mgmclient_libs=
1808 1809 1810
  case "$ndbcluster" in
    yes )
      AC_MSG_RESULT([Using NDB Cluster])
1811
      AC_DEFINE([HAVE_NDBCLUSTER_DB], [1], [Using Ndb Cluster DB])
1812 1813
      have_ndbcluster="yes"
      ndbcluster_includes="-I../ndb/include -I../ndb/include/ndbapi"
1814
      ndbcluster_libs="\$(top_builddir)/ndb/src/.libs/libndbclient.a"
1815
      ndbcluster_system_libs=""
1816
      ndb_mgmclient_libs="\$(top_builddir)/ndb/src/mgmclient/libndbmgmclient.la"
1817
      MYSQL_CHECK_NDB_OPTIONS
1818 1819 1820 1821 1822 1823
      ;;
    * )
      AC_MSG_RESULT([Not using NDB Cluster])
      ;;
  esac

1824
  AM_CONDITIONAL([HAVE_NDBCLUSTER_DB], [ test "$have_ndbcluster" = "yes" ])
1825 1826 1827
  AC_SUBST(ndbcluster_includes)
  AC_SUBST(ndbcluster_libs)
  AC_SUBST(ndbcluster_system_libs)
1828
  AC_SUBST(ndb_mgmclient_libs)
1829 1830 1831 1832 1833 1834 1835
])
                                                                                
dnl ---------------------------------------------------------------------------
dnl END OF MYSQL_CHECK_NDBCLUSTER SECTION
dnl ---------------------------------------------------------------------------


1836 1837 1838 1839 1840 1841 1842 1843 1844
dnl By default, many hosts won't let programs access large files;
dnl one must use special compiler options to get large-file access to work.
dnl For more details about this brain damage please see:
dnl http://www.sas.com/standards/large.file/x_open.20Mar96.html

dnl Written by Paul Eggert <eggert@twinsun.com>.

dnl Internal subroutine of AC_SYS_LARGEFILE.
dnl AC_SYS_LARGEFILE_FLAGS(FLAGSNAME)
1845
AC_DEFUN([AC_SYS_LARGEFILE_FLAGS],
1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859
  [AC_CACHE_CHECK([for $1 value to request large file support],
     ac_cv_sys_largefile_$1,
     [if ($GETCONF LFS_$1) >conftest.1 2>conftest.2 && test ! -s conftest.2
      then
        ac_cv_sys_largefile_$1=`cat conftest.1`
      else
	ac_cv_sys_largefile_$1=no
	ifelse($1, CFLAGS,
	  [case "$host_os" in
	   # HP-UX 10.20 requires -D__STDC_EXT__ with gcc 2.95.1.
changequote(, )dnl
	   hpux10.[2-9][0-9]* | hpux1[1-9]* | hpux[2-9][0-9]*)
changequote([, ])dnl
	     if test "$GCC" = yes; then
1860 1861 1862
	        case `$CC --version 2>/dev/null` in
	          2.95.*) ac_cv_sys_largefile_CFLAGS=-D__STDC_EXT__ ;;
		esac
1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883
	     fi
	     ;;
	   # IRIX 6.2 and later require cc -n32.
changequote(, )dnl
	   irix6.[2-9]* | irix6.1[0-9]* | irix[7-9].* | irix[1-9][0-9]*)
changequote([, ])dnl
	     if test "$GCC" != yes; then
	       ac_cv_sys_largefile_CFLAGS=-n32
	     fi
	   esac
	   if test "$ac_cv_sys_largefile_CFLAGS" != no; then
	     ac_save_CC="$CC"
	     CC="$CC $ac_cv_sys_largefile_CFLAGS"
	     AC_TRY_LINK(, , , ac_cv_sys_largefile_CFLAGS=no)
	     CC="$ac_save_CC"
	   fi])
      fi
      rm -f conftest*])])

dnl Internal subroutine of AC_SYS_LARGEFILE.
dnl AC_SYS_LARGEFILE_SPACE_APPEND(VAR, VAL)
1884
AC_DEFUN([AC_SYS_LARGEFILE_SPACE_APPEND],
1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895
  [case $2 in
   no) ;;
   ?*)
     case "[$]$1" in
     '') $1=$2 ;;
     *) $1=[$]$1' '$2 ;;
     esac ;;
   esac])

dnl Internal subroutine of AC_SYS_LARGEFILE.
dnl AC_SYS_LARGEFILE_MACRO_VALUE(C-MACRO, CACHE-VAR, COMMENT, CODE-TO-SET-DEFAULT)
1896
AC_DEFUN([AC_SYS_LARGEFILE_MACRO_VALUE],
1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914
  [AC_CACHE_CHECK([for $1], $2,
     [$2=no
changequote(, )dnl
      for ac_flag in $ac_cv_sys_largefile_CFLAGS no; do
	case "$ac_flag" in
	-D$1)
	  $2=1 ;;
	-D$1=*)
	  $2=`expr " $ac_flag" : '[^=]*=\(.*\)'` ;;
	esac
      done
      $4
changequote([, ])dnl
      ])
   if test "[$]$2" != no; then
     AC_DEFINE_UNQUOTED([$1], [$]$2, [$3])
   fi])

1915
AC_DEFUN([MYSQL_SYS_LARGEFILE],
1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957
  [AC_REQUIRE([AC_CANONICAL_HOST])
  AC_ARG_ENABLE(largefile,
     [  --disable-largefile     Omit support for large files])
   if test "$enable_largefile" != no; then
     AC_CHECK_TOOL(GETCONF, getconf)
     AC_SYS_LARGEFILE_FLAGS(CFLAGS)
     AC_SYS_LARGEFILE_FLAGS(LDFLAGS)
     AC_SYS_LARGEFILE_FLAGS(LIBS)

     for ac_flag in $ac_cv_sys_largefile_CFLAGS no; do
       case "$ac_flag" in
       no) ;;
       -D_FILE_OFFSET_BITS=*) ;;
       -D_LARGEFILE_SOURCE | -D_LARGEFILE_SOURCE=*) ;;
       -D_LARGE_FILES | -D_LARGE_FILES=*) ;;
       -D?* | -I?*)
	 AC_SYS_LARGEFILE_SPACE_APPEND(CPPFLAGS, "$ac_flag") ;;
       *)
	 AC_SYS_LARGEFILE_SPACE_APPEND(CFLAGS, "$ac_flag") ;;
       esac
     done
     AC_SYS_LARGEFILE_SPACE_APPEND(LDFLAGS, "$ac_cv_sys_largefile_LDFLAGS")
     AC_SYS_LARGEFILE_SPACE_APPEND(LIBS, "$ac_cv_sys_largefile_LIBS")

     AC_SYS_LARGEFILE_MACRO_VALUE(_FILE_OFFSET_BITS,
       ac_cv_sys_file_offset_bits,
       [Number of bits in a file offset, on hosts where this is settable.],
       [case "$host_os" in
	# HP-UX 10.20 and later
	hpux10.[2-9][0-9]* | hpux1[1-9]* | hpux[2-9][0-9]*)
	  ac_cv_sys_file_offset_bits=64 ;;
	# We can't declare _FILE_OFFSET_BITS here as this will cause
	# compile errors as AC_PROG_CC adds include files in confdefs.h
	# We solve this (until autoconf is fixed) by instead declaring it
	# as define instead
	solaris2.[8,9])
	  CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64"
	  CXXFLAGS="$CXXFLAGS -D_FILE_OFFSET_BITS=64"
	  ac_cv_sys_file_offset_bits=no ;;
	esac])
     AC_SYS_LARGEFILE_MACRO_VALUE(_LARGEFILE_SOURCE,
       ac_cv_sys_largefile_source,
1958
       [makes fseeko etc. visible, on some hosts.],
1959 1960 1961 1962 1963 1964 1965
       [case "$host_os" in
	# HP-UX 10.20 and later
	hpux10.[2-9][0-9]* | hpux1[1-9]* | hpux[2-9][0-9]*)
	  ac_cv_sys_largefile_source=1 ;;
	esac])
     AC_SYS_LARGEFILE_MACRO_VALUE(_LARGE_FILES,
       ac_cv_sys_large_files,
1966
       [Large files support on AIX-style hosts.],
1967 1968 1969 1970 1971 1972 1973 1974
       [case "$host_os" in
	# AIX 4.2 and later
	aix4.[2-9]* | aix4.1[0-9]* | aix[5-9].* | aix[1-9][0-9]*)
	  ac_cv_sys_large_files=1 ;;
	esac])
   fi
  ])

monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1975

1976
# Local version of _AC_PROG_CXX_EXIT_DECLARATION that does not
1977
# include #stdlib.h as default as this breaks things on Solaris
1978 1979 1980 1981 1982 1983 1984 1985 1986
# (Conflicts with pthreads and big file handling)

m4_define([_AC_PROG_CXX_EXIT_DECLARATION],
[for ac_declaration in \
   ''\
   'extern "C" void std::exit (int) throw (); using std::exit;' \
   'extern "C" void std::exit (int); using std::exit;' \
   'extern "C" void exit (int) throw ();' \
   'extern "C" void exit (int);' \
1987 1988
   'void exit (int);' \
   '#include <stdlib.h>'
1989
do
1990 1991
  _AC_COMPILE_IFELSE([AC_LANG_PROGRAM([$ac_declaration
@%:@include <stdlib.h>],
1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005
                                      [exit (42);])],
                     [],
                     [continue])
  _AC_COMPILE_IFELSE([AC_LANG_PROGRAM([$ac_declaration],
                                      [exit (42);])],
                     [break])
done
rm -f conftest*
if test -n "$ac_declaration"; then
  echo '#ifdef __cplusplus' >>confdefs.h
  echo $ac_declaration      >>confdefs.h
  echo '#endif'             >>confdefs.h
fi
])# _AC_PROG_CXX_EXIT_DECLARATION
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
2006

2007
dnl ---------------------------------------------------------------------------
2008