mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
623c733895
Would you believe that I wrote all of this on a Mac? I just happen to be not using HFS for the partition I did this work on. Oops :) config/ac-macros/alloca.m4: mvdir config/ac-macros/character_sets.m4: mvdir config/ac-macros/check_cpu.m4: mvdir config/ac-macros/compiler_flag.m4: mvdir config/ac-macros/ha_archive.m4: mvdir config/ac-macros/ha_berkeley.m4: mvdir config/ac-macros/ha_example.m4: mvdir config/ac-macros/ha_innodb.m4: mvdir config/ac-macros/ha_isam.m4: mvdir config/ac-macros/ha_ndbcluster.m4: mvdir config/ac-macros/ha_tina.m4: mvdir config/ac-macros/large_file.m4: mvdir config/ac-macros/misc.m4: mvdir config/ac-macros/mysqlfs.m4: mvdir config/ac-macros/openssl.m4: mvdir config/ac-macros/readline.m4: mvdir config/ac-macros/sanity.m4: mvdir config/ac-macros/zlib.m4: mvdir configure.in: Fix silly little problem with case insensitive filesystems. Funny thing is that I wrote all this on a Mac, but I don't use HFS on that partition so I never noticed that it would be an issue. Oops :)
51 lines
1.2 KiB
Text
51 lines
1.2 KiB
Text
|
|
AC_DEFUN([MYSQL_CHECK_MYSQLFS], [
|
|
AC_ARG_WITH([mysqlfs],
|
|
[
|
|
--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
|
|
|
|
AC_MSG_CHECKING(if we should build MySQLFS)
|
|
fs_dirs=""
|
|
if test "$mysqlfs" = "yes"
|
|
then
|
|
if test -n "$orbit_exec_prefix"
|
|
then
|
|
fs_dirs=fs
|
|
AC_MSG_RESULT([yes])
|
|
else
|
|
AC_MSG_RESULT(disabled because ORBIT, the CORBA ORB, was not found)
|
|
fi
|
|
else
|
|
AC_MSG_RESULT([no])
|
|
fi
|
|
AC_SUBST([fs_dirs])
|
|
])
|
|
|
|
AC_DEFUN([MYSQL_CHECK_ORBIT], [
|
|
AC_MSG_CHECKING(for ORBit)
|
|
orbit_config_path=`which orbit-config`
|
|
if test -n "$orbit_config_path" -a $? = 0
|
|
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!)
|
|
AC_DEFINE([HAVE_ORBIT], [1], [ORBIT])
|
|
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)
|
|
])
|