blob: 60076bd14599bb6b4ce1f68673fe9bd6e7290ef2 [file] [log] [blame]
temporal40ee5512008-07-10 02:12:20 +00001## Process this file with autoconf to produce configure.
2## In general, the safest way to proceed is to run ./autogen.sh
3
4AC_PREREQ(2.59)
5
6# Note: If you change the version, you must also update it in:
7# * java/pom.xml
8# * python/setup.py
9# * src/google/protobuf/stubs/common.h
kenton@google.coma001ed02008-12-01 23:47:49 +000010# * src/Makefile.am (Update -version-info for LDFLAGS if needed)
kenton@google.com37ad00d2009-04-21 21:00:39 +000011#
12# In the SVN trunk, the version should always be the next anticipated release
13# version with the "-pre" suffix. (We used to use "-SNAPSHOT" but this pushed
14# the size of one file name in the dist tarfile over the 99-char limit.)
Feng Xiao81a630c2014-12-03 11:52:21 -080015AC_INIT([Protocol Buffers],[3.0.0-alpha-1],[protobuf@googlegroups.com],[protobuf])
temporal40ee5512008-07-10 02:12:20 +000016
liujisi@google.com26261eb2012-07-03 09:39:26 +000017AM_MAINTAINER_MODE([enable])
kenton@google.com42c81e12009-05-06 01:15:06 +000018
temporal40ee5512008-07-10 02:12:20 +000019AC_CONFIG_SRCDIR(src/google/protobuf/message.cc)
kenton@google.comc76caac2008-09-30 22:11:21 +000020AC_CONFIG_HEADERS([config.h])
kenton@google.com25bc5cd2008-12-04 20:34:50 +000021AC_CONFIG_MACRO_DIR([m4])
kenton@google.com6be265a2009-08-06 20:47:45 +000022
Feng Xiao8f7dec82014-12-02 14:15:26 -080023AC_ARG_VAR(DIST_LANG, [language to include in the distribution package (i.e., make dist)])
24case "$DIST_LANG" in
Feng Xiao6936f172014-12-03 17:37:42 -080025 "") DIST_LANG=all ;;
Feng Xiao8f7dec82014-12-02 14:15:26 -080026 all | cpp | java | python | javanano) ;;
27 *) AC_MSG_FAILURE([unknown language: $DIST_LANG]) ;;
28esac
29AC_SUBST(DIST_LANG)
30
kenton@google.com6be265a2009-08-06 20:47:45 +000031# autoconf's default CXXFLAGS are usually "-g -O2". These aren't necessarily
32# the best choice for libprotobuf.
33AS_IF([test "x${ac_cv_env_CFLAGS_set}" = "x"],
34 [CFLAGS=""])
35AS_IF([test "x${ac_cv_env_CXXFLAGS_set}" = "x"],
36 [CXXFLAGS=""])
kenton@google.com445f1022009-08-06 23:01:43 +000037
kenton@google.com6be265a2009-08-06 20:47:45 +000038AC_CANONICAL_TARGET
39
jieluo@google.comabe61de2014-08-05 20:18:53 +000040AM_INIT_AUTOMAKE([subdir-objects])
temporal40ee5512008-07-10 02:12:20 +000041
kenton@google.come59427a2009-04-16 22:30:56 +000042AC_ARG_WITH([zlib],
43 [AS_HELP_STRING([--with-zlib],
44 [include classes for streaming compressed data in and out @<:@default=check@:>@])],
45 [],[with_zlib=check])
46
kenton@google.com9824eda2009-05-06 17:49:37 +000047AC_ARG_WITH([protoc],
48 [AS_HELP_STRING([--with-protoc=COMMAND],
49 [use the given protoc command instead of building a new one when building tests (useful for cross-compiling)])],
50 [],[with_protoc=no])
51
temporal40ee5512008-07-10 02:12:20 +000052# Checks for programs.
53AC_PROG_CC
54AC_PROG_CXX
kenton@google.com37ad00d2009-04-21 21:00:39 +000055AC_LANG([C++])
kenton@google.com25bc5cd2008-12-04 20:34:50 +000056ACX_USE_SYSTEM_EXTENSIONS
Feng Xiao9173ba22014-12-02 15:28:11 -080057AM_PROG_AR
temporal40ee5512008-07-10 02:12:20 +000058AM_CONDITIONAL(GCC, test "$GCC" = yes) # let the Makefile know if we're gcc
kenton@google.com25bc5cd2008-12-04 20:34:50 +000059
kenton@google.com6be265a2009-08-06 20:47:45 +000060# test_util.cc takes forever to compile with GCC and optimization turned on.
kenton@google.com42c81e12009-05-06 01:15:06 +000061AC_MSG_CHECKING([C++ compiler flags...])
kenton@google.com6be265a2009-08-06 20:47:45 +000062AS_IF([test "x${ac_cv_env_CXXFLAGS_set}" = "x"],[
63 AS_IF([test "$GCC" = "yes"],[
64 PROTOBUF_OPT_FLAG="-O2"
65 CXXFLAGS="${CXXFLAGS} -g"
66 ])
kenton@google.com42c81e12009-05-06 01:15:06 +000067
68 # Protocol Buffers contains several checks that are intended to be used only
69 # for debugging and which might hurt performance. Most users are probably
70 # end users who don't want these checks, so add -DNDEBUG by default.
71 CXXFLAGS="$CXXFLAGS -DNDEBUG"
72
73 AC_MSG_RESULT([use default: $PROTOBUF_OPT_FLAG $CXXFLAGS])
74],[
kenton@google.com42c81e12009-05-06 01:15:06 +000075 AC_MSG_RESULT([use user-supplied: $CXXFLAGS])
76])
77
78AC_SUBST(PROTOBUF_OPT_FLAG)
79
kenton@google.coma8923cd2009-05-01 21:53:10 +000080ACX_CHECK_SUNCC
temporal40ee5512008-07-10 02:12:20 +000081
kenton@google.com445f1022009-08-06 23:01:43 +000082# Have to do libtool after SUNCC, other wise it "helpfully" adds Crun Cstd
kenton@google.com6be265a2009-08-06 20:47:45 +000083# to the link
84AC_PROG_LIBTOOL
85
temporal40ee5512008-07-10 02:12:20 +000086# Checks for header files.
87AC_HEADER_STDC
88AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h stdlib.h unistd.h])
89
90# Checks for library functions.
91AC_FUNC_MEMCMP
92AC_FUNC_STRTOD
93AC_CHECK_FUNCS([ftruncate memset mkdir strchr strerror strtol])
94
kenton@google.com32f330f2009-09-15 17:15:43 +000095# Check for zlib.
kenton@google.come59427a2009-04-16 22:30:56 +000096HAVE_ZLIB=0
kenton@google.com32f330f2009-09-15 17:15:43 +000097AS_IF([test "$with_zlib" != no], [
98 AC_MSG_CHECKING([zlib version])
99
100 # First check the zlib header version.
101 AC_COMPILE_IFELSE(
liujisi@google.com8cc20172012-12-05 00:55:16 +0000102 [AC_LANG_PROGRAM([[
kenton@google.com32f330f2009-09-15 17:15:43 +0000103 #include <zlib.h>
104 #if !defined(ZLIB_VERNUM) || (ZLIB_VERNUM < 0x1204)
105 # error zlib version too old
106 #endif
liujisi@google.com8cc20172012-12-05 00:55:16 +0000107 ]], [])], [
kenton@google.com32f330f2009-09-15 17:15:43 +0000108 AC_MSG_RESULT([ok (1.2.0.4 or later)])
109
110 # Also need to add -lz to the linker flags and make sure this succeeds.
111 AC_SEARCH_LIBS([zlibVersion], [z], [
112 AC_DEFINE([HAVE_ZLIB], [1], [Enable classes using zlib compression.])
113 HAVE_ZLIB=1
114 ], [
115 AS_IF([test "$with_zlib" != check], [
116 AC_MSG_FAILURE([--with-zlib was given, but no working zlib library was found])
117 ])
118 ])
119 ], [
120 AS_IF([test "$with_zlib" = check], [
121 AC_MSG_RESULT([headers missing or too old (requires 1.2.0.4)])
122 ], [
123 AC_MSG_FAILURE([--with-zlib was given, but zlib headers were not present or were too old (requires 1.2.0.4)])
124 ])
125 ])
126])
kenton@google.come59427a2009-04-16 22:30:56 +0000127AM_CONDITIONAL([HAVE_ZLIB], [test $HAVE_ZLIB = 1])
128
kenton@google.com9824eda2009-05-06 17:49:37 +0000129AS_IF([test "$with_protoc" != "no"], [
130 PROTOC=$with_protoc
liujisi@google.com5d8d2b02010-12-06 06:20:14 +0000131 AS_IF([test "$with_protoc" = "yes"], [
kenton@google.com9824eda2009-05-06 17:49:37 +0000132 # No argument given. Use system protoc.
133 PROTOC=protoc
134 ])
135 AS_IF([echo "$PROTOC" | grep -q '^@<:@^/@:>@.*/'], [
136 # Does not start with a slash, but contains a slash. So, it's a relative
137 # path (as opposed to an absolute path or an executable in $PATH).
138 # Since it will actually be executed from the src directory, prefix with
139 # the current directory. We also insert $ac_top_build_prefix in case this
140 # is a nested package and --with-protoc was actually given on the outer
141 # package's configure script.
142 PROTOC=`pwd`/${ac_top_build_prefix}$PROTOC
143 ])
144 AC_SUBST([PROTOC])
145])
146AM_CONDITIONAL([USE_EXTERNAL_PROTOC], [test "$with_protoc" != "no"])
147
temporal40ee5512008-07-10 02:12:20 +0000148ACX_PTHREAD
149AC_CXX_STL_HASH
150
William Orr20e0a612014-10-10 22:50:39 -0700151case "$target_os" in
152 mingw* | cygwin* | win*)
153 ;;
154 *)
155 # Need to link against rt on Solaris
156 AC_SEARCH_LIBS([sched_yield], [rt], [], [AC_MSG_FAILURE([sched_yield was not found on your system])])
157 ;;
158esac
William Orr38b84942014-09-19 21:54:27 -0700159
kenton@google.com45258ff2009-12-23 22:12:22 +0000160# HACK: Make gtest's configure script pick up our copy of CFLAGS and CXXFLAGS,
161# since the flags added by ACX_CHECK_SUNCC must be used when compiling gtest
162# too.
163export CFLAGS
kenton@google.com304b7312009-08-10 23:52:27 +0000164export CXXFLAGS
kenton@google.com37ad00d2009-04-21 21:00:39 +0000165AC_CONFIG_SUBDIRS([gtest])
166
kenton@google.com3c66c2e2009-08-03 21:31:25 +0000167AC_CONFIG_FILES([Makefile src/Makefile protobuf.pc protobuf-lite.pc])
kenton@google.comc76caac2008-09-30 22:11:21 +0000168AC_OUTPUT