dnl Licensed under the Apache License, Version 2.0 (the "License"); you may not dnl use this file except in compliance with the License. dnl You may obtain a dnl copy of the License at dnl dnl http://www.apache.org/licenses/LICENSE-2.0 dnl dnl Unless required by applicable law or agreed to in writing, software dnl distributed under the License is distributed on an "AS IS" BASIS, WITHOUT dnl WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the dnl License for the specific language governing permissions and limitations dnl under the License. AC_INIT([LOCAL_PACKAGE_NAME], [LOCAL_VERSION], [], [LOCAL_PACKAGE_TARNAME]) AC_PREREQ([2.59]) AC_CONFIG_SRCDIR([CHANGES]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) AM_CONFIG_HEADER([config.h]) AC_CONFIG_HEADERS([src/snappy/google-snappy/config.h]) AM_INIT_AUTOMAKE([1.6.3 foreign]) AC_GNU_SOURCE AC_ENABLE_SHARED AC_DISABLE_STATIC AC_PROG_CC AC_PROG_LIBTOOL AC_PROG_LN_S PKG_PROG_PKG_CONFIG dnl Config for google snappy m4_define([snappy_major], [1]) m4_define([snappy_minor], [0]) m4_define([snappy_patchlevel], [3]) AC_PROG_CXX AC_LANG([C++]) AC_C_BIGENDIAN AC_CHECK_HEADERS([stdint.h stddef.h sys/mman.h sys/resource.h]) AC_CHECK_FUNC([mmap]) AC_MSG_CHECKING([if the compiler supports __builtin_expect]) AC_TRY_COMPILE(, [ return __builtin_expect(1, 1) ? 1 : 0 ], [ snappy_have_builtin_expect=yes AC_MSG_RESULT([yes]) ], [ snappy_have_builtin_expect=no AC_MSG_RESULT([no]) ]) if test x$snappy_have_builtin_expect = xyes ; then AC_DEFINE([HAVE_BUILTIN_EXPECT], [1], [Define to 1 if the compiler supports __builtin_expect.]) fi AC_MSG_CHECKING([if the compiler supports __builtin_ctzll]) AC_TRY_COMPILE(, [ return (__builtin_ctzll(0x100000000LL) == 32) ? 1 : 0 ], [ snappy_have_builtin_ctz=yes AC_MSG_RESULT([yes]) ], [ snappy_have_builtin_ctz=no AC_MSG_RESULT([no]) ]) if test x$snappy_have_builtin_ctz = xyes ; then AC_DEFINE([HAVE_BUILTIN_CTZ], [1], [Define to 1 if the compiler supports __builtin_ctz and friends.]) fi if test "$ac_cv_header_stdint_h" = "yes"; then AC_SUBST([ac_cv_have_stdint_h], [1]) else AC_SUBST([ac_cv_have_stdint_h], [0]) fi if test "$ac_cv_header_stddef_h" = "yes"; then AC_SUBST([ac_cv_have_stddef_h], [1]) else AC_SUBST([ac_cv_have_stddef_h], [0]) fi SNAPPY_MAJOR="snappy_major" SNAPPY_MINOR="snappy_minor" SNAPPY_PATCHLEVEL="snappy_patchlevel" AC_SUBST([SNAPPY_MAJOR]) AC_SUBST([SNAPPY_MINOR]) AC_SUBST([SNAPPY_PATCHLEVEL]) dnl End of google snappy specific config AC_MSG_CHECKING([for pthread_create in -lpthread]) original_LIBS="$LIBS" LIBS="-lpthread $original_LIBS" AC_TRY_LINK([#include], [pthread_create((void *)0, (void *)0, (void *)0, (void *)0)], [pthread=yes], [pthread=no]) if test x${pthread} = xyes; then AC_MSG_RESULT([yes]) else LIBS="$original_LIBS" AC_MSG_RESULT([no]) fi AC_ARG_WITH([erlang], [AC_HELP_STRING([--with-erlang=PATH], [set PATH to the Erlang include directory])], [ ERLANG_FLAGS="-I$withval" ], [ ERLANG_FLAGS="-I${libdir}/erlang/usr/include" ERLANG_FLAGS="$ERLANG_FLAGS -I/usr/lib/erlang/usr/include" ERLANG_FLAGS="$ERLANG_FLAGS -I/usr/local/lib/erlang/usr/include" ERLANG_FLAGS="$ERLANG_FLAGS -I/opt/local/lib/erlang/usr/include" ]) AC_SUBST(ERLANG_FLAGS) PKG_CHECK_MODULES([JS], [mozjs185], [ JS_LIB_DIR="$(${PKG_CONFIG} --variable=libdir mozjs185)" ], [ PKG_CHECK_MODULES([JS], [mozilla-js >= 1.7], [ JS_LIB_DIR="$(${PKG_CONFIG} --variable=sdkdir mozilla-js)/lib" ], [ JS_LIB_DIR="${libdir}" JS_CFLAGS="-I/usr/include" JS_CFLAGS="$JS_CFLAGS -I/usr/include/js" JS_CFLAGS="$JS_CFLAGS -I/usr/include/mozjs" JS_CFLAGS="$JS_CFLAGS -I/usr/local/include/js" JS_CFLAGS="$JS_CFLAGS -I/opt/local/include/js" ]) ]) AC_ARG_WITH([js-include], [AC_HELP_STRING([--with-js-include=PATH], [set PATH to the SpiderMonkey include directory])], [ JS_INCLUDE="$withval" JS_CFLAGS="-I$JS_INCLUDE" ], []) AC_ARG_WITH([js-lib], [AC_HELP_STRING([--with-js-lib=PATH], [set PATH to the SpiderMonkey library directory])], [ JS_LIB_DIR=$withval JS_LIBS="-L$withval" ], []) AC_ARG_VAR([ERLC_FLAGS], [general flags to prepend to ERLC_FLAGS]) AC_ARG_VAR([FLAGS], [general flags to prepend to LDFLAGS and CPPFLAGS]) CPPFLAGS="-I/usr/include $CPPFLAGS" CPPFLAGS="-I/usr/local/include $CPPFLAGS" CPPFLAGS="-I/opt/local/include $CPPFLAGS" CPPFLAGS="$FLAGS $CPPFLAGS" LDFLAGS="$FLAGS $LDFLAGS" # The erlang cc.sh/ld.sh scripts will convert a -O option # into the same optimization flags erlang itself uses. CFLAGS="-O2 $CFLAGS" LIB_FLAGS="-L/usr/local/lib -L/opt/local/lib" LIBS="$LIB_FLAGS $LIBS" case "$(uname -s)" in CYGWIN*) JS_CFLAGS="-DXP_WIN $JS_CFLAGS" IS_WINDOWS="TRUE" ;; *) # XP_UNIX required for jsapi.h and has been tested to work on Linux and Darwin. JS_CFLAGS="-DXP_UNIX $JS_CFLAGS" ;; esac AM_CONDITIONAL([WINDOWS], [test x$IS_WINDOWS = xTRUE]) OLD_LIBS="$LIBS" LIBS="$JS_LIBS $LIBS" AC_CHECK_LIB([mozjs185], [JS_NewContext], [JS_LIB_BASE=mozjs185], [ AC_CHECK_LIB([mozjs], [JS_NewContext], [JS_LIB_BASE=mozjs], [ AC_CHECK_LIB([js], [JS_NewContext], [JS_LIB_BASE=js], [ AC_CHECK_LIB([js3250], [JS_NewContext], [JS_LIB_BASE=js3250], [ AC_CHECK_LIB([js32], [JS_NewContext], [JS_LIB_BASE=js32], [ AC_MSG_ERROR([Could not find the js library. Is the Mozilla SpiderMonkey library installed?])])])])])]) AC_CHECK_LIB([$JS_LIB_BASE], [JS_FreezeObject], AC_DEFINE([HAVE_JS_FREEZE_OBJECT], [1], [Define whether we have JS_FreezeObject])) AC_CHECK_LIB([$JS_LIB_BASE], [JS_NewGlobalObject], AC_DEFINE([HAVE_JS_NEW_GLOBAL_OBJECT], [1], [Define whether we have JS_NewGlobalObject])) AC_CHECK_LIB([$JS_LIB_BASE], [JS_GetStringCharsAndLength], AC_DEFINE([HAVE_JS_GET_STRING_CHARS_AND_LENGTH], [1], [Define whether we have JS_GetStringCharsAndLength])) AC_CHECK_LIB([$JS_LIB_BASE], [JS_NewCompartmentAndGlobalObject], AC_DEFINE([HAVE_COMPARTMENTS], [1], [Define whether we have JS_NewCompartmentAndGlobalObject])) AC_CHECK_LIB([$JS_LIB_BASE], [JS_StrictPropertyStub], AC_DEFINE([HAVE_JS_STRICT_PROPERTY_STUB], [1], [Define whether we have JS_StrictPropertyStub])) AC_CHECK_LIB([$JS_LIB_BASE], [JS_DestroyScript], AC_DEFINE([HAVE_SCRIPT_TYPE], [1], [Define whether scripts have a special JSScript type])) LIBS="$OLD_LIBS" if test x${IS_WINDOWS} = xTRUE; then if test -f "$JS_LIB_DIR/$JS_LIB_BASE.dll"; then # seamonkey 1.7- build layout on Windows JS_LIB_BINARY="$JS_LIB_DIR/$JS_LIB_BASE.dll" else # seamonkey 1.8+ build layout on Windows if test -f "$JS_LIB_DIR/../bin/$JS_LIB_BASE.dll"; then JS_LIB_BINARY="$JS_LIB_DIR/../bin/$JS_LIB_BASE.dll" else AC_MSG_ERROR([Could not find $JS_LIB_BASE.dll.]) fi fi AC_SUBST(JS_LIB_BINARY) # On windows we need to know the path to the openssl binaries. AC_ARG_WITH([openssl-bin-dir], [AC_HELP_STRING([--with-openssl-bin-dir=PATH], [path to the open ssl binaries for distribution on Windows])], [ openssl_bin_dir=`cygpath -m "$withval"` AC_SUBST(openssl_bin_dir) ], []) # Windows uses Inno setup - look for its compiler. AC_PATH_PROG([INNO_COMPILER_EXECUTABLE], [iscc]) if test x${INNO_COMPILER_EXECUTABLE} = x; then AC_MSG_WARN([You will be unable to build the Windows installer.]) fi # We need the msvc redistributables for this platform too # (in theory we could just install the assembly locally - but # there are at least 4 directories with binaries, meaning 4 copies; # so using the redist .exe means it ends up installed globally...) AC_ARG_WITH([msvc-redist-dir], [AC_HELP_STRING([--with-msvc-redist-dir=PATH], [path to the msvc redistributables for the Windows platform])], [ msvc_redist_dir=`cygpath -m "$withval"` msvc_redist_name="vcredist_x86.exe" AC_SUBST(msvc_redist_dir) AC_SUBST(msvc_redist_name) ], []) if test ! -f ${msvc_redist_dir}/${msvc_redist_name}; then AC_MSG_WARN([The MSVC redistributable seems to be missing; expect the installer to fail.]) fi fi JS_LIBS="-l$JS_LIB_BASE $JS_LIBS" AC_SUBST(JS_LIBS) OLD_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$JS_CFLAGS $CPPFLAGS" AC_CHECK_HEADER([jsapi.h], [], [ AC_CHECK_HEADER([js/jsapi.h], [ CPPFLAGS="$CPPFLAGS -I$JS_INCLUDE/js" ], [ AC_MSG_ERROR([Could not find the jsapi header. Are the Mozilla SpiderMonkey headers installed?]) ])]) CPPFLAGS="$OLD_CPPFLAGS" AC_LANG_PUSH(C) OLDCFLAGS="$CFLAGS" CFLAGS="-Werror-implicit-function-declaration $JS_CFLAGS $OLDCFLAGS" AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[JS_SetOperationCallback(0, 0);]] )], AC_DEFINE([USE_JS_SETOPCB], [], [Use new JS_SetOperationCallback]) ) CFLAGS="$JS_CFLAGS $OLDCFLAGS" AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[static JSFunctionSpec fs; fs.extra = 0;]] )], AC_DEFINE([JS_FS_HAS_EXTRA], [1], [JSFunctionSpec has an extra member]) ) CFLAGS="$JS_CFLAGS $OLDCFLAGS -Werror" AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[#include static JSBool op(JSContext* cx, JSObject* obj, jsid id, jsval* vp) {}]], [[static JSPropertySpec spec; spec.getter = op;]] )], AC_DEFINE([JS_PROPERTY_OP_HAS_ID_AS_JSID], [1], [The type of "id" in the prototype for JSPropertyOp is a jsid]) ) CFLAGS="$OLD_CFLAGS" AC_LANG_POP(C) AC_ARG_WITH([win32-icu-binaries], [AC_HELP_STRING([--with-win32-icu-binaries=PATH], [set PATH to the Win32 native ICU binaries directory])], [ ICU_CFLAGS="-I$withval/include" ICU_LIBS="-L$withval/lib -licuuc -licudt -licuin" ICU_BIN=$withval/bin ], [ AC_CHECK_ICU([3.4.1]) ICU_BIN= ]) AC_SUBST(ICU_CFLAGS) AC_SUBST(ICU_LIBS) AC_SUBST(ICU_BIN) use_curl=yes AC_ARG_WITH([win32-curl], [AC_HELP_STRING([--with-win32-curl=PATH], [set PATH to the Win32 native curl directory])], [ # default build on windows is a static lib, and that's what we want too CURL_CFLAGS="-I$withval/include -DCURL_STATICLIB" CURL_LIBS="-L$withval/lib -lcurl -lWs2_32 -lkernel32 -luser32 -ladvapi32 -lWldap32" ], [ AC_CHECK_CURL([7.18.0], [AC_DEFINE([HAVE_CURL], [1], ["Provide HTTP support to couchjs"])], [ AC_MSG_WARN([You will be unable to run some JavaScript unit tests.]) use_curl=no CURL_LIBS= ]) ]) AC_SUBST(CURL_CFLAGS) AC_SUBST(CURL_LIBS) case "$(uname -s)" in Linux) LIBS="$LIBS -lcrypt" CPPFLAGS="-D_XOPEN_SOURCE $CPPFLAGS" ;; FreeBSD) LIBS="$LIBS -lcrypt" ;; OpenBSD) LIBS="$LIBS -lcrypto" ;; esac AC_PATH_PROG([ERL], [erl]) if test x${ERL} = x; then AC_MSG_ERROR([Could not find the `erl' executable. Is Erlang installed?]) fi erlang_version_error="The installed Erlang version is less than 5.6.5 (R12B05)." version="`${ERL} -version 2>&1 | ${SED} 's/[[^0-9]]/ /g'`" if test `echo $version | ${AWK} "{print \\$1}"` -lt 5; then AC_MSG_ERROR([$erlang_version_error]) fi if test `echo $version | ${AWK} "{print \\$2}"` -lt 6; then AC_MSG_ERROR([$erlang_version_error]) fi if test `echo $version | ${AWK} "{print \\$2}"` -eq 6; then if test `echo $version | ${AWK} "{print \\$3}"` -lt 5; then AC_MSG_ERROR([$erlang_version_error]) fi fi otp_release="`${ERL} -noshell -eval 'io:put_chars(erlang:system_info(otp_release)).' -s erlang halt`" AC_SUBST(otp_release) AM_CONDITIONAL([USE_OTP_NIFS], [test x$otp_release \> xR13B03]) has_crypto=`${ERL} -eval "case application:load(crypto) of ok -> ok; _ -> exit(no_crypto) end." -noshell -s init stop` if test -n "$has_crypto"; then AC_MSG_ERROR([Could not find the Erlang crypto library. Has Erlang been compiled with OpenSSL support?]) fi AC_PATH_PROG([ERLC], [erlc]) if test x${ERLC} = x; then AC_MSG_ERROR([Could not find the `erlc' executable. Is Erlang installed?]) fi OLD_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$ERLANG_FLAGS $CPPFLAGS" AC_CHECK_HEADER([erl_driver.h], [], [ AC_MSG_ERROR([Could not find the `erl_driver.h' header. Are the Erlang headers installed? Use the `--with-erlang' option to specify the path to the Erlang include directory.])]) CPPFLAGS="$OLD_CPPFLAGS" AC_PATH_PROG([HELP2MAN_EXECUTABLE], [help2man]) if test x${HELP2MAN_EXECUTABLE} = x; then AC_MSG_WARN([You will be unable to regenerate any man pages.]) fi use_init=yes use_launchd=yes native_mochijson_enabled=no AC_ARG_ENABLE([init], [AC_HELP_STRING([--disable-init], [don't install init script where applicable])], [ use_init=$enableval ], []) AC_ARG_ENABLE([launchd], [AC_HELP_STRING([--disable-launchd], [don't install launchd configuration where applicable])], [ use_launchd=$enableval ], []) AC_ARG_ENABLE([native-mochijson], [AC_HELP_STRING([--enable-native-mochijson], [compile mochijson to native code (EXPERIMENTAL)])], [ native_mochijson_enabled=$enableval ], []) init_enabled=false launchd_enabled=false if test "$use_init" = "yes"; then AC_MSG_CHECKING(location of init directory) if test -d /etc/rc.d; then init_enabled=true AC_SUBST([initdir], ['${sysconfdir}/rc.d']) AC_MSG_RESULT(${initdir}) else if test -d /etc/init.d; then init_enabled=true AC_SUBST([initdir], ['${sysconfdir}/init.d']) AC_MSG_RESULT(${initdir}) else AC_MSG_RESULT(not found) fi fi fi if test "$use_launchd" = "yes"; then AC_MSG_CHECKING(location of launchd directory) if test -d /Library/LaunchDaemons; then init_enabled=false launchd_enabled=true AC_SUBST([launchddir], ['${prefix}/Library/LaunchDaemons']) AC_MSG_RESULT(${launchddir}) else AC_MSG_RESULT(not found) fi fi AC_ARG_VAR([ERL], [path to the `erl' executable]) AC_ARG_VAR([ERLC], [path to the `erlc' executable]) AC_ARG_VAR([HELP2MAN_EXECUTABLE], [path to the `help2man' program]) if test -n "$HELP2MAN_EXECUTABLE"; then help2man_enabled=true else if test -f "$srcdir/bin/couchdb.1" -a -f "$srcdir/bin/couchjs.1"; then help2man_enabled=true else help2man_enabled=false fi fi AM_CONDITIONAL([INIT], [test x${init_enabled} = xtrue]) AM_CONDITIONAL([LAUNCHD], [test x${launchd_enabled} = xtrue]) AM_CONDITIONAL([HELP2MAN], [test x${help2man_enabled} = xtrue]) AM_CONDITIONAL([USE_NATIVE_MOCHIJSON], [test x${native_mochijson_enabled} = xyes]) AM_CONDITIONAL([USE_CURL], [test x${use_curl} = xyes]) AC_SUBST([package_author_name], ["LOCAL_PACKAGE_AUTHOR_NAME"]) AC_SUBST([package_author_address], ["LOCAL_PACKAGE_AUTHOR_ADDRESS"]) AC_SUBST([package_identifier], ["LOCAL_PACKAGE_IDENTIFIER"]) AC_SUBST([package_tarname], ["LOCAL_PACKAGE_TARNAME"]) AC_SUBST([package_name], ["LOCAL_PACKAGE_NAME"]) AC_SUBST([version], ["LOCAL_VERSION"]) AC_SUBST([version_major], ["LOCAL_VERSION_MAJOR"]) AC_SUBST([version_minor], ["LOCAL_VERSION_MINOR"]) AC_SUBST([version_revision], ["LOCAL_VERSION_REVISION"]) AC_SUBST([version_stage], ["LOCAL_VERSION_STAGE"]) AC_SUBST([version_release], ["LOCAL_VERSION_RELEASE"]) AC_SUBST([bug_uri], ["LOCAL_BUG_URI"]) AC_SUBST([localconfdir], [${sysconfdir}/${package_identifier}]) AC_SUBST([localdatadir], [${datadir}/${package_identifier}]) AC_SUBST([localdocdir], [${datadir}/doc/${package_identifier}]) AC_SUBST([locallibdir], [${libdir}/${package_identifier}]) AC_SUBST([localstatelibdir], [${localstatedir}/lib/${package_identifier}]) AC_SUBST([localstatelogdir], [${localstatedir}/log/${package_identifier}]) AC_SUBST([localstaterundir], [${localstatedir}/run/${package_identifier}]) # On Windows we install directly into our erlang distribution. if test x${IS_WINDOWS} = xTRUE; then AC_SUBST([locallibbindir], [${prefix}/bin]) AC_SUBST([localerlanglibdir], [${libdir}]) else AC_SUBST([locallibbindir], [${locallibdir}/bin]) AC_SUBST([localerlanglibdir], [${locallibdir}/erlang/lib]) fi # fix for older autotools that don't define "abs_top_YYY" by default AC_SUBST(abs_top_srcdir) AC_SUBST(abs_top_builddir) AC_REVISION([LOCAL_VERSION]) AC_CONFIG_FILES([Makefile]) AC_CONFIG_FILES([bin/couchjs.tpl]) AC_CONFIG_FILES([bin/couchdb.tpl]) AC_CONFIG_FILES([bin/couchdb.bat.tpl]) AC_CONFIG_FILES([bin/Makefile]) AC_CONFIG_FILES([etc/couchdb/Makefile]) AC_CONFIG_FILES([etc/couchdb/default.ini.tpl]) AC_CONFIG_FILES([etc/default/Makefile]) AC_CONFIG_FILES([etc/init/couchdb.tpl]) AC_CONFIG_FILES([etc/init/Makefile]) AC_CONFIG_FILES([etc/launchd/org.apache.couchdb.plist.tpl]) AC_CONFIG_FILES([etc/launchd/Makefile]) AC_CONFIG_FILES([etc/logrotate.d/couchdb.tpl]) AC_CONFIG_FILES([etc/logrotate.d/Makefile]) AC_CONFIG_FILES([etc/windows/Makefile]) AC_CONFIG_FILES([etc/Makefile]) AC_CONFIG_FILES([share/Makefile]) AC_CONFIG_FILES([src/Makefile]) AC_CONFIG_FILES([src/couchdb/couch.app.tpl]) AC_CONFIG_FILES([src/couchdb/Makefile]) AC_CONFIG_FILES([src/couchdb/priv/Makefile]) AC_CONFIG_FILES([src/erlang-oauth/Makefile]) AC_CONFIG_FILES([src/etap/Makefile]) AC_CONFIG_FILES([src/ibrowse/Makefile]) AC_CONFIG_FILES([src/mochiweb/Makefile]) AC_CONFIG_FILES([src/snappy/Makefile]) AC_CONFIG_FILES([src/snappy/google-snappy/snappy-stubs-public.h]) AC_CONFIG_FILES([src/ejson/Makefile]) AC_CONFIG_FILES([test/Makefile]) AC_CONFIG_FILES([test/bench/Makefile]) AC_CONFIG_FILES([test/etap/Makefile]) AC_CONFIG_FILES([test/etap/test_util.erl]) AC_CONFIG_FILES([test/javascript/Makefile]) AC_CONFIG_FILES([test/view_server/Makefile]) AC_CONFIG_FILES([utils/Makefile]) AC_CONFIG_FILES([var/Makefile]) AC_OUTPUT # *sob* - on Windows libtool fails as 'libname_spec' isn't correct (it # expects GNU style lib names). I can't work out how to configure this # option sanely, so we pass the script through sed to modify it. # Also, the erlang cc.sh script doesn't cope well with the '-link' command # line option libtool provides. # PLEASE, someone help put this out of its misery!! # This hackery is being tracked via COUCHDB-440. if test x${IS_WINDOWS} = xTRUE; then sed -e 's,libname_spec="lib\\$name",libname_spec="\\\$name",' \ -e 's,-link,,' \ < libtool > libtool.tmp mv libtool.tmp libtool # probably would chmod +x if we weren't on windows... fi echo echo "You have configured Apache CouchDB, time to relax." echo echo "Run \`make && sudo make install' to install."