blob: ce9191fd095795066075bd5991ccdb3520e7e60d [file] [log] [blame]
David Reissfeab7732009-03-30 22:52:44 +00001#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
19
T Jake Luciani03ec1e42011-01-27 02:53:57 +000020AC_PREREQ(2.65)
Marc Slemkob09f5882006-08-23 22:03:34 +000021
Jake Farrell6fcecd42012-10-11 20:34:25 +000022AC_INIT([thrift], [1.0.0-dev])
Marc Slemkob09f5882006-08-23 22:03:34 +000023
24AC_CONFIG_AUX_DIR([.])
25
Roger Meier81a1f992014-10-22 14:09:43 +020026AM_INIT_AUTOMAKE([1.13 tar-ustar])
Bryan Duxburyb005c1f2011-02-09 17:05:11 +000027PKG_PROG_PKG_CONFIG
Marc Slemkob09f5882006-08-23 22:03:34 +000028
David Reissd6832192007-09-05 00:47:32 +000029AC_ARG_VAR([PY_PREFIX], [Prefix for installing Python modules.
30 (Normal --prefix is ignored for Python because
31 Python has different conventions.)
32 Default = "/usr"])
David Reisscdd6f3c2008-03-04 21:10:29 +000033AS_IF([test "x$PY_PREFIX" = x], [PY_PREFIX="/usr"])
David Reissd6832192007-09-05 00:47:32 +000034
David Reissf0c21a72008-07-11 01:26:16 +000035AC_ARG_VAR([JAVA_PREFIX], [Prefix for installing the Java lib jar.
36 (Normal --prefix is ignored for Java because
Christian Lavoieafc6d8f2011-02-20 02:39:19 +000037 Java has different conventions.)
David Reissf0c21a72008-07-11 01:26:16 +000038 Default = "/usr/local/lib"])
39AS_IF([test "x$JAVA_PREFIX" = x], [JAVA_PREFIX="/usr/local/lib"])
David Reiss832b2622007-12-28 18:25:33 +000040
Bryan Duxbury3f0b5262010-05-12 21:31:58 +000041AC_ARG_VAR([RUBY_PREFIX], [Prefix for installing Ruby modules.
42 (Normal --prefix is ignored for Ruby because
43 Ruby has different conventions.)
44 Default = none, let ruby setup decide])
45
Bryan Duxbury6a681872010-05-02 22:39:31 +000046AC_ARG_VAR([PHP_PREFIX], [Prefix for installing PHP modules.
47 (Normal --prefix is ignored for PHP because
48 PHP has different conventions.)
49 Default = "/usr/lib/php"])
50AS_IF([test "x$PHP_PREFIX" = x], [PHP_PREFIX="/usr/lib/php"])
51
Bryan Duxbury89200e12010-08-25 17:09:02 +000052AC_ARG_VAR([PHP_CONFIG_PREFIX],
53 [Prefix for installing PHP extension module .ini file.
54 (Normal --prefix is ignored for PHP because PHP has
55 different conventions.)
56 Default = "/etc/php.d"])
57AS_IF([test "x$PHP_CONFIG_PREFIX" = x], [PHP_CONFIG_PREFIX="/etc/php.d"])
58
Jake Farrell05e0cdb2011-05-05 13:45:26 +000059AC_ARG_VAR([INSTALLDIRS], [When installing Perl modules, specifies which
60 of the sets of installation directories
61 to choose: perl, site or vendor.
62 Default = "vendor"])
63AS_IF([test "x$INSTALLDIRS" = x], [INSTALLDIRS="vendor"])
64
David Reissc07057e2010-06-11 17:57:32 +000065AC_ARG_VAR([PERL_PREFIX], [Prefix for installing Perl modules.
66 (Normal --prefix is ignored for Perl because
67 Perl has different conventions.)
Jake Farrell05e0cdb2011-05-05 13:45:26 +000068 Ignored, when INSTALLDIRS set to site or vendor.
David Reissc07057e2010-06-11 17:57:32 +000069 Default = "/usr/local/lib"])
70AS_IF([test "x$PERL_PREFIX" = x], [PERL_PREFIX="/usr/local"])
71
Anthony F. Molinaroa5df7c72010-09-27 17:22:17 +000072AC_ARG_VAR([CABAL_CONFIGURE_FLAGS],
73 [Extra flags to pass to cabal: "cabal Setup.lhs configure $CABAL_CONFIGURE_FLAGS".
74 (Typically used to set --user or force --global.)])
75
76AC_SUBST(CABAL_CONFIGURE_FLAGS)
77
Jake Farrellb95b0ff2012-03-22 21:49:10 +000078AC_ARG_VAR([D_IMPORT_PREFIX], [Prefix for installing D modules.
79 [INCLUDEDIR/d2]])
80AS_IF([test "x$D_IMPORT_PREFIX" = x], [D_IMPORT_PREFIX="${includedir}/d2"])
81
82AC_ARG_VAR([DMD_LIBEVENT_FLAGS], [DMD flags for linking libevent (auto-detected if not set).])
83AC_ARG_VAR([DMD_OPENSSL_FLAGS], [DMD flags for linking OpenSSL (auto-detected if not set).])
84
David Reiss832b2622007-12-28 18:25:33 +000085AC_PROG_CC
86AC_PROG_CPP
87AC_PROG_CXX
88AC_PROG_INSTALL
89AC_PROG_LIBTOOL
90AC_PROG_MAKE_SET
Roger Meier3974aab2014-07-14 20:22:12 +020091AC_PROG_BISON(2.5)
David Reiss832b2622007-12-28 18:25:33 +000092AC_PROG_YACC
93AC_PROG_LEX
94AM_PROG_LEX
David Reiss7ed4b982008-02-11 23:24:47 +000095AC_PROG_LN_S
96AC_PROG_MKDIR_P
Christian Lavoieafc6d8f2011-02-20 02:39:19 +000097AC_PROG_AWK
98AC_PROG_RANLIB
David Reiss832b2622007-12-28 18:25:33 +000099
100AC_LANG([C++])
jfarrell84cd2842014-01-14 21:51:59 -0500101AX_CXX_COMPILE_STDCXX_11([noext])
David Reiss832b2622007-12-28 18:25:33 +0000102
Konrad Grochowski16a23a62014-11-13 15:33:38 +0100103AM_EXTRA_RECURSIVE_TARGETS([style])
104AC_SUBST(CPPSTYLE_CMD, 'find . -type f \( -iname "*.h" -or -iname "*.cpp" -or -iname "*.cc" -or -iname "*.tcc" \) -printf "Reformatting: %h/%f\n" -exec clang-format -i {} \;')
105
Roger Meierc92cda02014-02-09 21:13:53 +0100106AC_ARG_ENABLE([libs],
107 AS_HELP_STRING([--enable-libs], [build the Apache Thrift libraries [default=yes]]),
108 [], enable_libs=yes
109)
110have_libs=yes
111if test "$enable_libs" = "no"; then
112 have_libs="no"
113 with_cpp="no"
114 with_c_glib="no"
115 with_java="no"
116 with_csharp="no"
117 with_python="no"
118 with_ruby="no"
119 with_haskell="no"
Jens Geyerbd52f1a2014-07-28 01:25:30 +0200120 with_haxe="no"
Roger Meierc92cda02014-02-09 21:13:53 +0100121 with_perl="no"
122 with_php="no"
123 with_php_extension="no"
124 with_erlang="no"
125 with_go="no"
126 with_d="no"
127 with_nodejs="no"
Roger Meier6cf0ffc2014-04-05 00:45:42 +0200128 with_lua="no"
Roger Meierc92cda02014-02-09 21:13:53 +0100129fi
130
131
David Reissea4c9812010-08-31 16:51:21 +0000132AX_THRIFT_LIB(cpp, [C++], yes)
133have_cpp=no
134if test "$with_cpp" = "yes"; then
henrique48b18972014-06-10 15:19:55 +0200135 AX_BOOST_BASE([1.54.0])
Jake Farrell3ad80812011-06-09 19:14:22 +0000136 if test "x$succeeded" = "xyes" ; then
David Reissef5e81b2010-08-31 16:51:28 +0000137 have_cpp="yes"
138 fi
David Reiss5cc3ba82010-08-31 16:51:20 +0000139
David Reissea4c9812010-08-31 16:51:21 +0000140 AX_LIB_EVENT([1.0])
141 have_libevent=$success
David Reiss832b2622007-12-28 18:25:33 +0000142
David Reissea4c9812010-08-31 16:51:21 +0000143 AX_LIB_ZLIB([1.2.3])
144 have_zlib=$success
Chris Piro20c81ad2013-03-07 11:32:48 -0500145
Jake Farrelld6d3e372012-07-27 16:01:33 +0000146 AX_THRIFT_LIB(qt4, [Qt], yes)
147 have_qt=no
148 if test "$with_qt4" = "yes"; then
149 PKG_CHECK_MODULES([QT], [QtCore >= 4.3, QtNetwork >= 4.3], have_qt=yes, have_qt=no)
150 fi
Roger Meier86e89862012-02-10 19:53:20 +0000151 if test "$have_qt" = "yes"; then
152 AC_PATH_PROGS([QT_MOC], [moc-qt4 moc])
153 have_qt=$success
154 fi
David Reissea4c9812010-08-31 16:51:21 +0000155fi
156AM_CONDITIONAL([WITH_CPP], [test "$have_cpp" = "yes"])
157AM_CONDITIONAL([AMX_HAVE_LIBEVENT], [test "$have_libevent" = "yes"])
158AM_CONDITIONAL([AMX_HAVE_ZLIB], [test "$have_zlib" = "yes"])
Roger Meier86e89862012-02-10 19:53:20 +0000159AM_CONDITIONAL([AMX_HAVE_QT], [test "$have_qt" = "yes"])
David Reiss832b2622007-12-28 18:25:33 +0000160
Roger Meier32177232012-05-01 11:19:53 +0000161AX_THRIFT_LIB(c_glib, [C (GLib)], yes)
Roger Meier213a6642010-10-27 12:30:11 +0000162if test "$with_c_glib" = "yes"; then
163 PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.0], have_glib2=yes, have_glib2=no)
164 PKG_CHECK_MODULES([GOBJECT], [gobject-2.0 >= 2.0], have_gobject2=yes, have_gobject2=no)
165 if test "$have_glib2" = "yes" -a "$have_gobject2" = "yes" ; then
166 have_c_glib="yes"
167 fi
168fi
169AM_CONDITIONAL(WITH_C_GLIB, [test "$have_glib2" = "yes" -a "$have_gobject2" = "yes"])
170
David Reiss520b5ee2008-03-02 07:00:26 +0000171AX_THRIFT_LIB(csharp, [C#], yes)
172if test "$with_csharp" = "yes"; then
David Reissd831a212009-02-13 03:09:52 +0000173 PKG_CHECK_MODULES(MONO, mono >= 2.0.0, net_3_5=yes, net_3_5=no)
174 PKG_CHECK_MODULES(MONO, mono >= 1.2.4, have_mono=yes, have_mono=no)
David Reiss5cc3ba82010-08-31 16:51:20 +0000175 if test "$have_mono" = "yes" ; then
176 have_csharp="yes"
177 fi
David Reiss520b5ee2008-03-02 07:00:26 +0000178fi
David Reiss5cc3ba82010-08-31 16:51:20 +0000179AM_CONDITIONAL(WITH_MONO, [test "$have_csharp" = "yes"])
David Reissd831a212009-02-13 03:09:52 +0000180AM_CONDITIONAL(NET_2_0, [test "$net_3_5" = "no"])
David Reiss1fdb5922008-02-06 22:10:12 +0000181
David Reiss62d39812008-03-02 07:00:22 +0000182AX_THRIFT_LIB(java, [Java], yes)
183if test "$with_java" = "yes"; then
David Reissd9cdf422009-03-13 21:25:29 +0000184 AX_JAVAC_AND_JAVA
Bryan Duxbury38bab122010-08-12 00:27:14 +0000185 AC_PATH_PROG([ANT], [ant])
Jake Farrell210d7662011-05-25 21:07:29 +0000186 AX_CHECK_ANT_VERSION($ANT, 1.7)
David Reissfff84d12009-05-22 19:50:33 +0000187 AC_SUBST(CLASSPATH)
David Reiss4ca0c8e2009-05-12 23:16:55 +0000188 AC_SUBST(ANT_FLAGS)
jfarrellea2fbcf2014-11-21 10:06:01 -0500189 if test "x$JAVA" != "x" && test "x$JAVAC" != "x" && test "x$ANT" != "x" ; then
David Reiss5cc3ba82010-08-31 16:51:20 +0000190 have_java="yes"
191 fi
David Reiss62d39812008-03-02 07:00:22 +0000192fi
David Reiss5cc3ba82010-08-31 16:51:20 +0000193AM_CONDITIONAL([WITH_JAVA], [test "$have_java" = "yes"])
David Reiss1fdb5922008-02-06 22:10:12 +0000194
Christopher Pirob6f18c22008-03-04 07:09:12 +0000195AX_THRIFT_LIB(erlang, [Erlang], yes)
196if test "$with_erlang" = "yes"; then
David Reiss9e2fd792010-05-18 16:52:48 +0000197 AC_ERLANG_PATH_ERL
198 AC_ERLANG_PATH_ERLC
David Reiss31e1b6e2010-08-24 20:45:24 +0000199 if test -n "$ERLC" ; then
200 AC_ERLANG_SUBST_LIB_DIR
201 # Install into the detected Erlang directory instead of $libdir/erlang/lib
202 ERLANG_INSTALL_LIB_DIR="$ERLANG_LIB_DIR"
203 AC_ERLANG_SUBST_INSTALL_LIB_SUBDIR(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
204 fi
David Reiss5cc3ba82010-08-31 16:51:20 +0000205 if test -n "$ERL" -a -n "$ERLC" ; then
206 have_erlang="yes"
207 fi
Christopher Pirob6f18c22008-03-04 07:09:12 +0000208fi
David Reiss5cc3ba82010-08-31 16:51:20 +0000209AM_CONDITIONAL(WITH_ERLANG, [test "$have_erlang" = "yes"])
Christopher Pirob6f18c22008-03-04 07:09:12 +0000210
Roger Meier8909cbd2014-01-26 11:44:27 +0100211AX_THRIFT_LIB(nodejs, [Nodejs], yes)
212have_nodejs=no
213if test "$with_nodejs" = "yes"; then
214 AC_PATH_PROGS([NODEJS], [nodejs node])
215 AC_PATH_PROG([NPM], [npm])
216 if test "x$NODEJS" != "x" -a "x$NPM" != "x"; then
217 have_nodejs="yes"
218 fi
219fi
220AM_CONDITIONAL(WITH_NODEJS, [test "$have_nodejs" = "yes"])
221AM_CONDITIONAL(HAVE_NPM, [test "x$NPM" != "x"])
222
Roger Meier6cf0ffc2014-04-05 00:45:42 +0200223AX_THRIFT_LIB(lua, [Lua], yes)
224have_lua=no
225if test "$with_lua" = "yes"; then
226 AC_PATH_PROGS([LUA], [lua])
227 if test "x$LUA" != "x"; then
228 have_lua="yes"
229 fi
230fi
231AM_CONDITIONAL(WITH_LUA, [test "$have_lua" = "yes"])
232
David Reiss5cc3ba82010-08-31 16:51:20 +0000233AX_THRIFT_LIB(python, [Python], yes)
234if test "$with_python" = "yes"; then
David Reiss1a140912008-06-11 01:16:37 +0000235 AM_PATH_PYTHON(2.4,, :)
David Reiss5cc3ba82010-08-31 16:51:20 +0000236 if test "x$PYTHON" != "x" && test "x$PYTHON" != "x:" ; then
237 have_python="yes"
238 fi
David Reiss1a140912008-06-11 01:16:37 +0000239fi
David Reiss5cc3ba82010-08-31 16:51:20 +0000240AM_CONDITIONAL(WITH_PYTHON, [test "$have_python" = "yes"])
David Reiss1a140912008-06-11 01:16:37 +0000241
Roger Meier50e43492010-10-08 17:46:06 +0000242AC_PATH_PROG([TRIAL], [trial])
243
T Jake Luciani1952e542009-02-01 04:47:30 +0000244AX_THRIFT_LIB(perl, [Perl], yes)
245if test "$with_perl" = "yes"; then
246 AC_PATH_PROG([PERL], [perl])
David Reissdcc7e9b2010-08-31 16:51:22 +0000247 if test -n "$PERL" ; then
248 AC_PROG_PERL_MODULES([Bit::Vector], success="yes", success="no")
249 have_perl_bit_vector="$success"
Roger Meieraae8acb2014-01-15 13:55:09 +0100250 AC_PROG_PERL_MODULES([Class::Accessor], success="yes", success="no")
251 have_perl_class_accessor="$success"
Bryan Duxbury12373692010-08-19 05:23:59 +0000252 fi
David Reissdcc7e9b2010-08-31 16:51:22 +0000253 if test -n "$PERL" -a "$have_perl_bit_vector" = "yes" ; then
Roger Meieraae8acb2014-01-15 13:55:09 +0100254 if test -n "$PERL" -a "$have_perl_class_accessor" = "yes" ; then
255 have_perl="yes"
256 fi
David Reiss5cc3ba82010-08-31 16:51:20 +0000257 fi
T Jake Luciani1952e542009-02-01 04:47:30 +0000258fi
David Reiss5cc3ba82010-08-31 16:51:20 +0000259AM_CONDITIONAL(WITH_PERL, [test "$have_perl" = "yes"])
T Jake Luciani1952e542009-02-01 04:47:30 +0000260
Bryan Duxbury6a681872010-05-02 22:39:31 +0000261AX_THRIFT_LIB(php, [PHP], yes)
262if test "$with_php" = "yes"; then
263 AC_PATH_PROG([PHP], [php])
David Reiss5cc3ba82010-08-31 16:51:20 +0000264 if test -n "$PHP" ; then
265 have_php="yes"
266 fi
Bryan Duxbury6a681872010-05-02 22:39:31 +0000267fi
David Reiss5cc3ba82010-08-31 16:51:20 +0000268AM_CONDITIONAL(WITH_PHP, [test "$have_php" = "yes"])
Bryan Duxbury6a681872010-05-02 22:39:31 +0000269
Bryan Duxbury89200e12010-08-25 17:09:02 +0000270AX_THRIFT_LIB(php_extension, [PHP_EXTENSION], yes)
271if test "$with_php_extension" = "yes"; then
jfarrell30a472e2014-07-10 18:42:30 -0400272 if test -f "lib/php/src/ext/thrift_protocol/configure"; then
273 AC_PATH_PROG([PHP_CONFIG], [php-config])
274 if test -n "$PHP_CONFIG" ; then
275 AC_CONFIG_SUBDIRS([lib/php/src/ext/thrift_protocol])
276 have_php_extension="yes"
277 fi
Anthony F. Molinaroddcf32a2010-10-05 16:45:50 +0000278 fi
Bryan Duxbury89200e12010-08-25 17:09:02 +0000279fi
Anthony F. Molinaroddcf32a2010-10-05 16:45:50 +0000280AM_CONDITIONAL(WITH_PHP_EXTENSION, [test "$have_php_extension" = "yes"])
Bryan Duxbury89200e12010-08-25 17:09:02 +0000281
Roger Meier33b720a2012-01-24 18:42:46 +0000282AC_PATH_PROG([PHPUNIT], [phpunit])
283AM_CONDITIONAL(HAVE_PHPUNIT, [test "x$PHPUNIT" != "x"])
284
Kevin Clark4bd89162008-07-08 00:47:49 +0000285AX_THRIFT_LIB(ruby, [Ruby], yes)
David Reiss5cc3ba82010-08-31 16:51:20 +0000286have_ruby=no
Kevin Clark4bd89162008-07-08 00:47:49 +0000287if test "$with_ruby" = "yes"; then
288 AC_PATH_PROG([RUBY], [ruby])
Jake Farrell9c39f772011-08-30 19:12:10 +0000289 AC_PATH_PROG([BUNDLER], [bundle])
jfarrell507740c2014-01-22 22:20:21 -0500290 if test "x$RUBY" != "x" -a "x$BUNDLER" != "x"; then
David Reiss5cc3ba82010-08-31 16:51:20 +0000291 have_ruby="yes"
292 fi
Kevin Clark4bd89162008-07-08 00:47:49 +0000293fi
David Reiss5cc3ba82010-08-31 16:51:20 +0000294AM_CONDITIONAL(WITH_RUBY, [test "$have_ruby" = "yes"])
Jake Farrell9c39f772011-08-30 19:12:10 +0000295AM_CONDITIONAL(HAVE_BUNDLER, [test "x$BUNDLER" != "x"])
Bryan Duxburyec473582009-04-07 16:31:04 +0000296
Anthony F. Molinaroa5df7c72010-09-27 17:22:17 +0000297AX_THRIFT_LIB(haskell, [Haskell], yes)
298have_haskell=no
299RUNHASKELL=true
Bryan Duxburyc6574472010-10-06 00:12:33 +0000300CABAL=true
Anthony F. Molinaroa5df7c72010-09-27 17:22:17 +0000301if test "$with_haskell" = "yes"; then
Bryan Duxburyc6574472010-10-06 00:12:33 +0000302 AC_PATH_PROG([CABAL], [cabal])
Anthony F. Molinaroa5df7c72010-09-27 17:22:17 +0000303 AC_PATH_PROG([RUNHASKELL], [runhaskell])
Bryan Duxburyc6574472010-10-06 00:12:33 +0000304 if test "x$CABAL" != "x" -a "x$RUNHASKELL" != "x"; then
Anthony F. Molinaroa5df7c72010-09-27 17:22:17 +0000305 have_haskell="yes"
306 else
307 RUNHASKELL=true
Bryan Duxburyc6574472010-10-06 00:12:33 +0000308 CABAL=true
Anthony F. Molinaroa5df7c72010-09-27 17:22:17 +0000309 fi
310fi
Bryan Duxburyc6574472010-10-06 00:12:33 +0000311AC_SUBST(CABAL)
Anthony F. Molinaroa5df7c72010-09-27 17:22:17 +0000312AC_SUBST(RUNHASKELL)
313AM_CONDITIONAL(WITH_HASKELL, [test "$have_haskell" = "yes"])
Kevin Clark4bd89162008-07-08 00:47:49 +0000314
Christian Lavoieafc6d8f2011-02-20 02:39:19 +0000315AX_THRIFT_LIB(go, [Go], yes)
316if test "$with_go" = "yes"; then
Jens Geyer0e87c462013-06-18 22:25:07 +0200317 AC_PATH_PROG([GO], [go])
318 if [[ -x "$GO" ]] ; then
Christian Lavoieafc6d8f2011-02-20 02:39:19 +0000319 have_go="yes"
320 fi
321fi
322AM_CONDITIONAL(WITH_GO, [test "$have_go" = "yes"])
323
Jake Farrellb95b0ff2012-03-22 21:49:10 +0000324
Jens Geyerbd52f1a2014-07-28 01:25:30 +0200325AX_THRIFT_LIB(haxe, [Haxe], yes)
326if test "$with_haxe" = "yes"; then
327 AC_PATH_PROG([HAXE], [haxe])
328 if [[ -x "$HAXE" ]] ; then
329 have_haxe="yes"
330 fi
331fi
332AM_CONDITIONAL(WITH_HAXE, [test "$have_haxe" = "yes"])
333
334
Jake Farrellb95b0ff2012-03-22 21:49:10 +0000335AX_THRIFT_LIB(d, [D], yes)
336if test "$with_d" = "yes"; then
337 AX_DMD
338 AC_SUBST(DMD)
339 if test "x$DMD" != "x"; then
340 have_d="yes"
341 fi
342fi
343
344# Determine actual name of the generated D library for use in the command line
345# when compiling tests. This is needed because the -l<lib> syntax doesn't work
346# with OPTLINK (Windows).
347lib_prefix=lib
348lib_suffix=a
349case "$host_os" in
350 cygwin* | mingw* | pw32* | cegcc*)
351 lib_prefix=""
352 lib_suffix=lib
353 ;;
354esac
355D_LIB_NAME="${lib_prefix}thriftd.${lib_suffix}"
356AC_SUBST(D_LIB_NAME)
357D_EVENT_LIB_NAME="${lib_prefix}thriftd-event.${lib_suffix}"
358AC_SUBST(D_EVENT_LIB_NAME)
359D_SSL_LIB_NAME="${lib_prefix}thriftd-ssl.${lib_suffix}"
360AC_SUBST(D_SSL_LIB_NAME)
361
362if test "$have_d" = "yes"; then
363 AX_CHECK_D_MODULE(deimos.event2.event)
364 have_deimos_event2=$success
365
366 with_d_event_tests="no"
367 if test "$have_deimos_event2" = "yes"; then
368 if test "x$DMD_LIBEVENT_FLAGS" = "x"; then
369 if test "$dmd_optlink" = "yes"; then
370 AC_MSG_WARN([D libevent interface found, but cannot auto-detect \
371linker flags for OPTLINK. Please set DMD_LIBEVENT_FLAGS manually.])
372 else
373 AX_LIB_EVENT([2.0])
374 if test "$success" = "yes"; then
375 DMD_LIBEVENT_FLAGS=$(echo "$LIBEVENT_LDFLAGS $LIBEVENT_LIBS" | \
376 sed -e 's/^ *//g;s/ *$//g;s/^\(.\)/-L\1/g;s/ */ -L/g')
377 with_d_event_tests="yes"
378 else
379 AC_MSG_WARN([D libevent interface present, but libevent library not found.])
380 fi
381 fi
382 else
383 with_d_event_tests="yes"
384 fi
385 fi
386
387 AX_CHECK_D_MODULE(deimos.openssl.ssl)
388 have_deimos_openssl=$success
389
390 with_d_ssl_tests="no"
391 if test "$have_deimos_openssl" = "yes"; then
392 if test "x$DMD_OPENSSL_FLAGS" = "x"; then
393 if test "$dmd_optlink" = "yes"; then
394 AC_MSG_WARN([D OpenSSL interface found, but cannot auto-detect \
395linker flags for OPTLINK. Please set DMD_OPENSSL_FLAGS manually.])
396 else
397 AX_CHECK_OPENSSL([with_d_ssl_tests="yes"])
398 if test "$with_d_ssl_tests" = "yes"; then
399 DMD_OPENSSL_FLAGS=$(echo "$OPENSSL_LDFLAGS $OPENSSL_LIBS" | \
400 sed -e 's/^ *//g;s/ *$//g;s/^\(.\)/-L\1/g;s/ */ -L/g')
401 else
402 AC_MSG_WARN([D OpenSSL interface present, but OpenSSL library not found.])
403 fi
404 fi
405 else
406 with_d_ssl_tests="yes"
407 fi
408 fi
409fi
410
411AM_CONDITIONAL(WITH_D, [test "$have_d" = "yes"])
412AM_CONDITIONAL(DMD_OPTLINK, [test "$dmd_optlink" = "yes"])
413AC_SUBST(DMD_OF_DIRSEP, "$dmd_of_dirsep")
414AM_CONDITIONAL(HAVE_DEIMOS_EVENT2, [test "$have_deimos_event2" = "yes"])
415AM_CONDITIONAL(WITH_D_EVENT_TESTS, [test "$with_d_event_tests" = "yes"])
416AC_SUBST(DMD_LIBEVENT_FLAGS)
417AM_CONDITIONAL(HAVE_DEIMOS_OPENSSL, [test "$have_deimos_openssl" = "yes"])
418AM_CONDITIONAL(WITH_D_SSL_TESTS, [test "$with_d_ssl_tests" = "yes"])
419AC_SUBST(DMD_OPENSSL_FLAGS)
420
Roger Meierc88d5812014-01-26 11:51:26 +0100421AC_ARG_ENABLE([tests],
422 AS_HELP_STRING([--enable-tests], [build tests [default=yes]]),
423 [], enable_tests=yes
424)
Jake Farrell627f1a02011-09-14 03:43:49 +0000425have_tests=yes
Roger Meierc88d5812014-01-26 11:51:26 +0100426if test "$enable_tests" = "no"; then
Jake Farrell627f1a02011-09-14 03:43:49 +0000427 have_tests="no"
428fi
429AM_CONDITIONAL(WITH_TESTS, [test "$have_tests" = "yes"])
430
Roger Meierc88d5812014-01-26 11:51:26 +0100431AC_ARG_ENABLE([tutorial],
432 AS_HELP_STRING([--enable-tutorial], [build tutorial [default=yes]]),
433 [], enable_tutorial=yes
434)
435have_tutorial=yes
436if test "$enable_tutorial" = "no"; then
437 have_tutorial="no"
438fi
439AM_CONDITIONAL(WITH_TUTORIAL, [test "$have_tutorial" = "yes"])
440
Roger Meier6e969652011-12-13 00:36:01 +0000441AM_CONDITIONAL(MINGW, false)
442case "${host_os}" in
443*mingw*)
444 mingw32_support="yes"
445 AC_CHECK_HEADER(windows.h)
446 AM_CONDITIONAL(MINGW, true)
447 ;;
448*)
449 AC_ISC_POSIX
450 ;;
451esac
452
David Reiss832b2622007-12-28 18:25:33 +0000453AC_C_CONST
454AC_C_INLINE
455AC_C_VOLATILE
456
457AC_HEADER_STDBOOL
458AC_HEADER_STDC
459AC_HEADER_TIME
Christian Lavoieafc6d8f2011-02-20 02:39:19 +0000460AC_HEADER_SYS_WAIT
461AC_TYPE_SIGNAL
David Reiss832b2622007-12-28 18:25:33 +0000462AC_CHECK_HEADERS([arpa/inet.h])
Bryan Duxbury184d2622010-08-17 17:43:58 +0000463AC_CHECK_HEADERS([sys/param.h])
David Reiss832b2622007-12-28 18:25:33 +0000464AC_CHECK_HEADERS([fcntl.h])
465AC_CHECK_HEADERS([inttypes.h])
David Reiss7ed4b982008-02-11 23:24:47 +0000466AC_CHECK_HEADERS([limits.h])
David Reiss832b2622007-12-28 18:25:33 +0000467AC_CHECK_HEADERS([netdb.h])
468AC_CHECK_HEADERS([netinet/in.h])
469AC_CHECK_HEADERS([pthread.h])
470AC_CHECK_HEADERS([stddef.h])
David Reissd7a16f42008-02-19 22:47:29 +0000471AC_CHECK_HEADERS([stdlib.h])
David Reiss832b2622007-12-28 18:25:33 +0000472AC_CHECK_HEADERS([sys/socket.h])
473AC_CHECK_HEADERS([sys/time.h])
Roger Meier2fa9c312011-09-05 19:15:53 +0000474AC_CHECK_HEADERS([sys/un.h])
475AC_CHECK_HEADERS([sys/poll.h])
476AC_CHECK_HEADERS([sys/resource.h])
David Reiss832b2622007-12-28 18:25:33 +0000477AC_CHECK_HEADERS([unistd.h])
478AC_CHECK_HEADERS([libintl.h])
479AC_CHECK_HEADERS([malloc.h])
Roger Meier9d9c4b92011-02-23 20:27:54 +0000480AC_CHECK_HEADERS([openssl/ssl.h])
481AC_CHECK_HEADERS([openssl/rand.h])
482AC_CHECK_HEADERS([openssl/x509v3.h])
Roger Meier12d70532011-12-14 23:35:28 +0000483AC_CHECK_HEADERS([sched.h])
Roger Meier93576362013-03-15 19:49:23 +0100484AC_CHECK_HEADERS([wchar.h])
David Reiss832b2622007-12-28 18:25:33 +0000485
486AC_CHECK_LIB(pthread, pthread_create)
David Reisse4ca1792009-05-21 02:28:19 +0000487dnl NOTE(dreiss): I haven't been able to find any really solid docs
488dnl on what librt is and how it fits into various Unix systems.
489dnl My best guess is that it is where glibc stashes its implementation
490dnl of the POSIX Real-Time Extensions. This seems necessary on Linux,
491dnl and we haven't yet found a system where this is a problem.
492AC_CHECK_LIB(rt, clock_gettime)
David Reiss9b903442009-10-21 05:51:28 +0000493AC_CHECK_LIB(socket, setsockopt)
Roger Meier68691122011-09-09 06:19:35 +0000494
495if test "$have_cpp" = "yes" ; then
496# mingw toolchain used to build "Thrift Compiler for Windows"
497# does not support libcrypto, so we just check if we building the cpp library
Jake Farrell012dfda2011-08-29 18:18:55 +0000498AC_CHECK_LIB(crypto,
499 BN_init,
500 [AC_CHECK_LIB(ssl,
501 SSL_ctrl,
502 [LIBS="-lssl -lcrypto $LIBS"],
503 [AC_MSG_ERROR(["Error: libssl required"])],
504 -lcrypto
505 )],
506 [AC_MSG_ERROR(["Error: libcrypto required."])]
507)
Roger Meier68691122011-09-09 06:19:35 +0000508fi
David Reiss832b2622007-12-28 18:25:33 +0000509
510AC_TYPE_INT16_T
511AC_TYPE_INT32_T
512AC_TYPE_INT64_T
513AC_TYPE_INT8_T
514AC_TYPE_MODE_T
515AC_TYPE_OFF_T
516AC_TYPE_SIZE_T
David Reiss847a2942008-04-21 18:07:43 +0000517AC_TYPE_SSIZE_T
David Reiss832b2622007-12-28 18:25:33 +0000518AC_TYPE_UINT16_T
519AC_TYPE_UINT32_T
520AC_TYPE_UINT64_T
521AC_TYPE_UINT8_T
David Reiss33fc5ad2008-05-09 07:17:34 +0000522AC_CHECK_TYPES([ptrdiff_t], [], [exit 1])
David Reiss832b2622007-12-28 18:25:33 +0000523
David Reiss7ed4b982008-02-11 23:24:47 +0000524AC_STRUCT_TM
525
David Reiss85a8f7b2009-05-21 02:28:16 +0000526dnl NOTE(dreiss): AI_ADDRCONFIG is not defined on OpenBSD.
527AC_CHECK_DECL([AI_ADDRCONFIG], [],
528 [AC_DEFINE([AI_ADDRCONFIG], 0,
529 [Define if the AI_ADDRCONFIG symbol is unavailable])],
530 [
531 #include <sys/types.h>
532 #include <sys/socket.h>
533 #include <netdb.h>
534])
535
David Reiss832b2622007-12-28 18:25:33 +0000536AC_FUNC_ALLOCA
Roger Meier213a6642010-10-27 12:30:11 +0000537AC_FUNC_FORK
David Reiss832b2622007-12-28 18:25:33 +0000538AC_FUNC_MALLOC
David Reiss7ed4b982008-02-11 23:24:47 +0000539AC_FUNC_MEMCMP
David Reiss832b2622007-12-28 18:25:33 +0000540AC_FUNC_REALLOC
541AC_FUNC_SELECT_ARGTYPES
542AC_FUNC_STAT
543AC_FUNC_STRERROR_R
David Reiss7ed4b982008-02-11 23:24:47 +0000544AC_FUNC_STRFTIME
David Reiss832b2622007-12-28 18:25:33 +0000545AC_FUNC_VPRINTF
546AC_CHECK_FUNCS([strtoul])
547AC_CHECK_FUNCS([bzero])
David Reiss7ed4b982008-02-11 23:24:47 +0000548AC_CHECK_FUNCS([ftruncate])
David Reiss832b2622007-12-28 18:25:33 +0000549AC_CHECK_FUNCS([gethostbyname])
Roger Meierbea31442014-04-08 23:52:01 +0200550AC_CHECK_FUNCS([gethostbyname_r])
David Reiss832b2622007-12-28 18:25:33 +0000551AC_CHECK_FUNCS([gettimeofday])
552AC_CHECK_FUNCS([memmove])
553AC_CHECK_FUNCS([memset])
554AC_CHECK_FUNCS([mkdir])
555AC_CHECK_FUNCS([realpath])
556AC_CHECK_FUNCS([select])
557AC_CHECK_FUNCS([socket])
558AC_CHECK_FUNCS([strchr])
559AC_CHECK_FUNCS([strdup])
David Reiss7ed4b982008-02-11 23:24:47 +0000560AC_CHECK_FUNCS([strerror])
David Reiss832b2622007-12-28 18:25:33 +0000561AC_CHECK_FUNCS([strstr])
562AC_CHECK_FUNCS([strtol])
563AC_CHECK_FUNCS([sqrt])
David Reisse4ca1792009-05-21 02:28:19 +0000564dnl The following functions are optional.
Roger Meier213a6642010-10-27 12:30:11 +0000565AC_CHECK_FUNCS([alarm])
David Reisse4ca1792009-05-21 02:28:19 +0000566AC_CHECK_FUNCS([clock_gettime])
567AC_CHECK_FUNCS([sched_get_priority_min])
568AC_CHECK_FUNCS([sched_get_priority_max])
Jens Geyer0cf802a2014-05-27 23:10:11 +0200569AC_CHECK_FUNCS([inet_ntoa])
570AC_CHECK_FUNCS([pow])
David Reiss832b2622007-12-28 18:25:33 +0000571
David Reiss79db3e12010-08-31 16:51:31 +0000572if test "$cross_compiling" = "no" ; then
573 AX_SIGNED_RIGHT_SHIFT
574fi
David Reisse4d4ea02009-04-02 21:37:17 +0000575
David Reiss5ddabb82010-10-06 17:09:37 +0000576dnl autoscan thinks we need this macro because we have a member function
577dnl called "error". Invoke the macro but don't run the check so autoscan
578dnl thinks we are in the clear. It's highly unlikely that we will ever
579dnl actually use the function that this checks for.
580if false ; then
581 AC_FUNC_ERROR_AT_LINE
582fi
583
Roger Meier213a6642010-10-27 12:30:11 +0000584# --- Coverage hooks ---
585
586AC_ARG_ENABLE(coverage,
587 [ --enable-coverage turn on -fprofile-arcs -ftest-coverage],
588 [case "${enableval}" in
589 yes) ENABLE_COVERAGE=1 ;;
590 no) ENABLE_COVERAGE=0 ;;
591 *) AC_MSG_ERROR(bad value ${enableval} for --enable-cov) ;;
592 esac],
593 [ENABLE_COVERAGE=2])
594
595if test "x[$]ENABLE_COVERAGE" = "x1"; then
596 AC_MSG_WARN(enable coverage)
597 GCOV_CFLAGS="`echo \"[$]CFLAGS\" | perl -pe 's/-O\d+//g;'` -fprofile-arcs -ftest-coverage"
598 GCOV_CXXFLAGS="`echo \"[$]CXXFLAGS\" | perl -pe 's/-O\d+//g;'` -fprofile-arcs -ftest-coverage"
599 GCOV_LDFLAGS="-XCClinker -fprofile-arcs -XCClinker -ftest-coverage"
600fi
601
602AC_SUBST(ENABLE_COVERAGE)
603AC_SUBST(GCOV_CFLAGS)
604AC_SUBST(GCOV_CXXFLAGS)
605AC_SUBST(GCOV_LDFLAGS)
606
Roger Meier3faaedf2011-10-02 10:51:45 +0000607AC_ARG_ENABLE(boostthreads,
608 [ --enable-boostthreads use boost threads, instead of POSIX pthread (experimental) ],
609 [case "${enableval}" in
610 yes) ENABLE_BOOSTTHREADS=1 ;;
611 no) ENABLE_BOOSTTHREADS=0 ;;
612 *) AC_MSG_ERROR(bad value ${enableval} for --enable-cov) ;;
613 esac],
614 [ENABLE_BOOSTTHREADS=2])
615
616
617if test "x[$]ENABLE_BOOSTTHREADS" = "x1"; then
618 AC_MSG_WARN(enable boostthreads)
619 AC_DEFINE([USE_BOOST_THREAD], [1], [experimental --enable-boostthreads that replaces POSIX pthread by boost::thread])
Roger Meier38315782011-11-06 11:29:41 +0000620 LIBS="-lboost_thread $LIBS"
Roger Meier3faaedf2011-10-02 10:51:45 +0000621fi
622
623AM_CONDITIONAL([WITH_BOOSTTHREADS], [test "x[$]ENABLE_BOOSTTHREADS" = "x1"])
624
David Reiss832b2622007-12-28 18:25:33 +0000625AC_CONFIG_HEADERS(config.h:config.hin)
Roger Meier58fe5362013-06-22 22:05:22 +0200626AC_CONFIG_HEADERS(lib/cpp/src/thrift/config.h:config.hin)
Jake Farrell240df172013-06-04 23:59:34 -0400627# gruard against pre defined config.h
628AH_TOP([
629#ifndef CONFIG_H
Roger Meier8909cbd2014-01-26 11:44:27 +0100630#define CONFIG_H
Jake Farrell240df172013-06-04 23:59:34 -0400631])
632AH_BOTTOM([
633#endif
634])
635
David Reiss832b2622007-12-28 18:25:33 +0000636
637AC_CONFIG_FILES([
638 Makefile
639 compiler/cpp/Makefile
Bryan Duxburya1e268c2010-05-03 21:33:00 +0000640 compiler/cpp/version.h
Jake Farrell16b76412012-06-22 03:51:38 +0000641 compiler/cpp/src/windows/version.h
David Reiss832b2622007-12-28 18:25:33 +0000642 lib/Makefile
643 lib/cpp/Makefile
David Reiss351e22b2010-08-31 16:51:19 +0000644 lib/cpp/test/Makefile
David Reiss832b2622007-12-28 18:25:33 +0000645 lib/cpp/thrift-nb.pc
646 lib/cpp/thrift-z.pc
Roger Meier86e89862012-02-10 19:53:20 +0000647 lib/cpp/thrift-qt.pc
Bryan Duxburyc6574472010-10-06 00:12:33 +0000648 lib/cpp/thrift.pc
Roger Meier213a6642010-10-27 12:30:11 +0000649 lib/c_glib/Makefile
650 lib/c_glib/thrift_c_glib.pc
651 lib/c_glib/test/Makefile
David Reiss1fdb5922008-02-06 22:10:12 +0000652 lib/csharp/Makefile
Jake Farrellb95b0ff2012-03-22 21:49:10 +0000653 lib/d/Makefile
654 lib/d/test/Makefile
Bryan Duxbury7173bd92010-05-02 22:54:22 +0000655 lib/erl/Makefile
Jens Geyer0e87c462013-06-18 22:25:07 +0200656 lib/go/Makefile
Jens Geyera7da4882013-07-18 00:33:05 +0200657 lib/go/test/Makefile
Jens Geyerfea00ac2014-10-01 02:22:48 +0200658 lib/haxe/test/Makefile
Anthony F. Molinaroa5df7c72010-09-27 17:22:17 +0000659 lib/hs/Makefile
David Reissf8dcf032008-02-23 22:07:39 +0000660 lib/java/Makefile
Roger Meierf2495762011-03-17 19:13:36 +0000661 lib/js/test/Makefile
Roger Meier8909cbd2014-01-26 11:44:27 +0100662 lib/nodejs/Makefile
T Jake Luciani1952e542009-02-01 04:47:30 +0000663 lib/perl/Makefile
664 lib/perl/test/Makefile
Bryan Duxbury6a681872010-05-02 22:39:31 +0000665 lib/php/Makefile
Roger Meier33b720a2012-01-24 18:42:46 +0000666 lib/php/test/Makefile
David Reiss832b2622007-12-28 18:25:33 +0000667 lib/py/Makefile
Kevin Clark4bd89162008-07-08 00:47:49 +0000668 lib/rb/Makefile
Roger Meier6cf0ffc2014-04-05 00:45:42 +0200669 lib/lua/Makefile
David Reiss8180c0c2008-02-04 21:14:14 +0000670 test/Makefile
Roger Meierb3c84092014-09-01 21:53:40 +0200671 test/c_glib/Makefile
Roger Meierd3b9dca2011-06-24 14:01:10 +0000672 test/cpp/Makefile
alisdair sullivan06d0fa02014-08-05 19:54:57 -0700673 test/erl/Makefile
Jens Geyerf4598682014-05-08 23:18:44 +0200674 test/go/Makefile
Jens Geyerbd52f1a2014-07-28 01:25:30 +0200675 test/haxe/Makefile
Bryan Duxburyc6574472010-10-06 00:12:33 +0000676 test/hs/Makefile
Roger Meierb33967b2012-01-21 09:18:05 +0000677 test/php/Makefile
Roger Meier01b568c2012-01-10 21:30:02 +0000678 test/perl/Makefile
David Reiss9ff3b9d2008-02-15 01:10:23 +0000679 test/py/Makefile
Roger Meier50e43492010-10-08 17:46:06 +0000680 test/py.twisted/Makefile
Chris Piro20c81ad2013-03-07 11:32:48 -0500681 test/py.tornado/Makefile
Kevin Clark4bd89162008-07-08 00:47:49 +0000682 test/rb/Makefile
Roger Meierfa899322012-10-22 19:27:38 +0000683 tutorial/Makefile
Roger Meier2814c2e2014-07-29 23:28:46 +0200684 tutorial/c_glib/Makefile
Roger Meier18a90d12012-10-24 18:40:06 +0000685 tutorial/cpp/Makefile
Jens Geyer0e87c462013-06-18 22:25:07 +0200686 tutorial/go/Makefile
Jens Geyerbd52f1a2014-07-28 01:25:30 +0200687 tutorial/haxe/Makefile
Roger Meier303eb1b2014-05-14 00:49:41 +0200688 tutorial/hs/Makefile
Roger Meierfa899322012-10-22 19:27:38 +0000689 tutorial/java/Makefile
690 tutorial/js/Makefile
Roger Meier64998e22014-01-27 21:15:56 +0100691 tutorial/nodejs/Makefile
Roger Meier1d66d062012-10-26 21:46:18 +0000692 tutorial/py/Makefile
693 tutorial/py.twisted/Makefile
Chris Piro20c81ad2013-03-07 11:32:48 -0500694 tutorial/py.tornado/Makefile
Roger Meiered817d02013-06-09 23:10:06 +0200695 tutorial/rb/Makefile
David Reiss832b2622007-12-28 18:25:33 +0000696])
Marc Slemkob09f5882006-08-23 22:03:34 +0000697
698AC_OUTPUT
David Reiss5cc3ba82010-08-31 16:51:20 +0000699
700
701echo
702echo "$PACKAGE $VERSION"
703echo
David Reissea4c9812010-08-31 16:51:21 +0000704echo "Building C++ Library ......... : $have_cpp"
Roger Meier213a6642010-10-27 12:30:11 +0000705echo "Building C (GLib) Library .... : $have_c_glib"
David Reiss5cc3ba82010-08-31 16:51:20 +0000706echo "Building Java Library ........ : $have_java"
707echo "Building C# Library .......... : $have_csharp"
708echo "Building Python Library ...... : $have_python"
709echo "Building Ruby Library ........ : $have_ruby"
Jens Geyerbd52f1a2014-07-28 01:25:30 +0200710echo "Building Haxe Library ........ : $have_haxe"
Anthony F. Molinaroa5df7c72010-09-27 17:22:17 +0000711echo "Building Haskell Library ..... : $have_haskell"
David Reiss5cc3ba82010-08-31 16:51:20 +0000712echo "Building Perl Library ........ : $have_perl"
713echo "Building PHP Library ......... : $have_php"
714echo "Building Erlang Library ...... : $have_erlang"
Christian Lavoieafc6d8f2011-02-20 02:39:19 +0000715echo "Building Go Library .......... : $have_go"
Jake Farrellb95b0ff2012-03-22 21:49:10 +0000716echo "Building D Library ........... : $have_d"
Roger Meier8909cbd2014-01-26 11:44:27 +0100717echo "Building NodeJS Library ...... : $have_nodejs"
Roger Meier6cf0ffc2014-04-05 00:45:42 +0200718echo "Building Lua Library ......... : $have_lua"
Jake Farrellc9c972b2012-07-24 17:28:24 +0000719
David Reiss5cc3ba82010-08-31 16:51:20 +0000720if test "$have_cpp" = "yes" ; then
721 echo
Roger Meier86e89862012-02-10 19:53:20 +0000722 echo "C++ Library:"
723 echo " Build TZlibTransport ...... : $have_zlib"
724 echo " Build TNonblockingServer .. : $have_libevent"
725 echo " Build TQTcpServer (Qt) .... : $have_qt"
David Reiss5cc3ba82010-08-31 16:51:20 +0000726fi
727if test "$have_java" = "yes" ; then
728 echo
Roger Meier86e89862012-02-10 19:53:20 +0000729 echo "Java Library:"
730 echo " Using javac ............... : $JAVAC"
731 echo " Using java ................ : $JAVA"
732 echo " Using ant ................. : $ANT"
David Reiss5cc3ba82010-08-31 16:51:20 +0000733fi
734if test "$have_csharp" = "yes" ; then
735 echo
Roger Meier86e89862012-02-10 19:53:20 +0000736 echo "C# Library:"
737 echo " Using .NET 3.5 ............ : $net_3_5"
David Reiss5cc3ba82010-08-31 16:51:20 +0000738fi
739if test "$have_python" = "yes" ; then
740 echo
Roger Meier86e89862012-02-10 19:53:20 +0000741 echo "Python Library:"
742 echo " Using Python .............. : $PYTHON"
David Reiss5cc3ba82010-08-31 16:51:20 +0000743fi
Anthony F. Molinaroddcf32a2010-10-05 16:45:50 +0000744if test "$have_php" = "yes" ; then
745 echo
Roger Meier86e89862012-02-10 19:53:20 +0000746 echo "PHP Library:"
747 echo " Using php-config .......... : $PHP_CONFIG"
Anthony F. Molinaroddcf32a2010-10-05 16:45:50 +0000748fi
David Reiss5cc3ba82010-08-31 16:51:20 +0000749if test "$have_ruby" = "yes" ; then
750 echo
Roger Meier86e89862012-02-10 19:53:20 +0000751 echo "Ruby Library:"
752 echo " Using Ruby ................ : $RUBY"
David Reiss5cc3ba82010-08-31 16:51:20 +0000753fi
Anthony F. Molinaroa5df7c72010-09-27 17:22:17 +0000754if test "$have_haskell" = "yes" ; then
755 echo
Roger Meier86e89862012-02-10 19:53:20 +0000756 echo "Haskell Library:"
757 echo " Using Haskell ............. : $RUNHASKELL"
758 echo " Using Cabal ............... : $CABAL"
Anthony F. Molinaroa5df7c72010-09-27 17:22:17 +0000759fi
Jens Geyerbd52f1a2014-07-28 01:25:30 +0200760if test "$have_haxe" = "yes" ; then
761 echo
762 echo "Haxe Library:"
763 echo " Using Haxe ................ : $HAXE"
764fi
David Reiss5cc3ba82010-08-31 16:51:20 +0000765if test "$have_perl" = "yes" ; then
766 echo
Roger Meier86e89862012-02-10 19:53:20 +0000767 echo "Perl Library:"
768 echo " Using Perl ................ : $PERL"
David Reiss5cc3ba82010-08-31 16:51:20 +0000769fi
770if test "$have_erlang" = "yes" ; then
771 echo
Roger Meier86e89862012-02-10 19:53:20 +0000772 echo "Erlang Library:"
773 echo " Using erlc ................ : $ERLC"
David Reiss5cc3ba82010-08-31 16:51:20 +0000774fi
Christian Lavoieafc6d8f2011-02-20 02:39:19 +0000775if test "$have_go" = "yes" ; then
776 echo
Roger Meier86e89862012-02-10 19:53:20 +0000777 echo "Go Library:"
Jens Geyer0e87c462013-06-18 22:25:07 +0200778 echo " Using Go................... : $GO"
Jens Geyera7da4882013-07-18 00:33:05 +0200779 echo " Using Go version........... : $($GO version)"
Christian Lavoieafc6d8f2011-02-20 02:39:19 +0000780fi
Jake Farrellb95b0ff2012-03-22 21:49:10 +0000781if test "$have_d" = "yes" ; then
782 echo
Jens Geyerbcca1d92013-12-26 19:24:30 +0100783 echo "D Library:"
784 echo " Using D Compiler .......... : $DMD"
785 echo " Building D libevent tests . : $with_d_event_tests"
786 echo " Building D SSL tests ...... : $with_d_ssl_tests"
Jake Farrellb95b0ff2012-03-22 21:49:10 +0000787fi
Roger Meier8909cbd2014-01-26 11:44:27 +0100788if test "$have_nodejs" = "yes" ; then
789 echo
790 echo "NodeJS Library:"
791 echo " Using NodeJS .............. : $NODEJS"
792 echo " Using NodeJS version....... : $($NODEJS --version)"
793fi
Roger Meier6cf0ffc2014-04-05 00:45:42 +0200794if test "$have_lua" = "yes" ; then
795 echo
796 echo "Lua Library:"
797 echo " Using Lua .............. : $LUA"
798fi
David Reiss5cc3ba82010-08-31 16:51:20 +0000799echo
800echo "If something is missing that you think should be present,"
801echo "please skim the output of configure to find the missing"
802echo "component. Details are present in config.log."