blob: ba408af3683174392539202e6e69c68db1acc632 [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 Xiaod9d1da92014-10-08 18:44:37 -070015AC_INIT([Protocol Buffers],[2.6.1rc1],[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
23# autoconf's default CXXFLAGS are usually "-g -O2". These aren't necessarily
24# the best choice for libprotobuf.
25AS_IF([test "x${ac_cv_env_CFLAGS_set}" = "x"],
26 [CFLAGS=""])
27AS_IF([test "x${ac_cv_env_CXXFLAGS_set}" = "x"],
28 [CXXFLAGS=""])
kenton@google.com445f1022009-08-06 23:01:43 +000029
kenton@google.com6be265a2009-08-06 20:47:45 +000030AC_CANONICAL_TARGET
31
jieluo@google.comabe61de2014-08-05 20:18:53 +000032AM_INIT_AUTOMAKE([subdir-objects])
temporal40ee5512008-07-10 02:12:20 +000033
kenton@google.come59427a2009-04-16 22:30:56 +000034AC_ARG_WITH([zlib],
35 [AS_HELP_STRING([--with-zlib],
36 [include classes for streaming compressed data in and out @<:@default=check@:>@])],
37 [],[with_zlib=check])
38
kenton@google.com9824eda2009-05-06 17:49:37 +000039AC_ARG_WITH([protoc],
40 [AS_HELP_STRING([--with-protoc=COMMAND],
41 [use the given protoc command instead of building a new one when building tests (useful for cross-compiling)])],
42 [],[with_protoc=no])
43
temporal40ee5512008-07-10 02:12:20 +000044# Checks for programs.
45AC_PROG_CC
46AC_PROG_CXX
kenton@google.com37ad00d2009-04-21 21:00:39 +000047AC_LANG([C++])
kenton@google.com25bc5cd2008-12-04 20:34:50 +000048ACX_USE_SYSTEM_EXTENSIONS
temporal40ee5512008-07-10 02:12:20 +000049AM_CONDITIONAL(GCC, test "$GCC" = yes) # let the Makefile know if we're gcc
kenton@google.com25bc5cd2008-12-04 20:34:50 +000050
kenton@google.com6be265a2009-08-06 20:47:45 +000051# test_util.cc takes forever to compile with GCC and optimization turned on.
kenton@google.com42c81e12009-05-06 01:15:06 +000052AC_MSG_CHECKING([C++ compiler flags...])
kenton@google.com6be265a2009-08-06 20:47:45 +000053AS_IF([test "x${ac_cv_env_CXXFLAGS_set}" = "x"],[
54 AS_IF([test "$GCC" = "yes"],[
55 PROTOBUF_OPT_FLAG="-O2"
56 CXXFLAGS="${CXXFLAGS} -g"
57 ])
kenton@google.com42c81e12009-05-06 01:15:06 +000058
59 # Protocol Buffers contains several checks that are intended to be used only
60 # for debugging and which might hurt performance. Most users are probably
61 # end users who don't want these checks, so add -DNDEBUG by default.
62 CXXFLAGS="$CXXFLAGS -DNDEBUG"
63
64 AC_MSG_RESULT([use default: $PROTOBUF_OPT_FLAG $CXXFLAGS])
65],[
kenton@google.com42c81e12009-05-06 01:15:06 +000066 AC_MSG_RESULT([use user-supplied: $CXXFLAGS])
67])
68
69AC_SUBST(PROTOBUF_OPT_FLAG)
70
kenton@google.coma8923cd2009-05-01 21:53:10 +000071ACX_CHECK_SUNCC
temporal40ee5512008-07-10 02:12:20 +000072
kenton@google.com445f1022009-08-06 23:01:43 +000073# Have to do libtool after SUNCC, other wise it "helpfully" adds Crun Cstd
kenton@google.com6be265a2009-08-06 20:47:45 +000074# to the link
75AC_PROG_LIBTOOL
76
temporal40ee5512008-07-10 02:12:20 +000077# Checks for header files.
78AC_HEADER_STDC
79AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h stdlib.h unistd.h])
80
81# Checks for library functions.
82AC_FUNC_MEMCMP
83AC_FUNC_STRTOD
84AC_CHECK_FUNCS([ftruncate memset mkdir strchr strerror strtol])
85
kenton@google.com32f330f2009-09-15 17:15:43 +000086# Check for zlib.
kenton@google.come59427a2009-04-16 22:30:56 +000087HAVE_ZLIB=0
kenton@google.com32f330f2009-09-15 17:15:43 +000088AS_IF([test "$with_zlib" != no], [
89 AC_MSG_CHECKING([zlib version])
90
91 # First check the zlib header version.
92 AC_COMPILE_IFELSE(
liujisi@google.com8cc20172012-12-05 00:55:16 +000093 [AC_LANG_PROGRAM([[
kenton@google.com32f330f2009-09-15 17:15:43 +000094 #include <zlib.h>
95 #if !defined(ZLIB_VERNUM) || (ZLIB_VERNUM < 0x1204)
96 # error zlib version too old
97 #endif
liujisi@google.com8cc20172012-12-05 00:55:16 +000098 ]], [])], [
kenton@google.com32f330f2009-09-15 17:15:43 +000099 AC_MSG_RESULT([ok (1.2.0.4 or later)])
100
101 # Also need to add -lz to the linker flags and make sure this succeeds.
102 AC_SEARCH_LIBS([zlibVersion], [z], [
103 AC_DEFINE([HAVE_ZLIB], [1], [Enable classes using zlib compression.])
104 HAVE_ZLIB=1
105 ], [
106 AS_IF([test "$with_zlib" != check], [
107 AC_MSG_FAILURE([--with-zlib was given, but no working zlib library was found])
108 ])
109 ])
110 ], [
111 AS_IF([test "$with_zlib" = check], [
112 AC_MSG_RESULT([headers missing or too old (requires 1.2.0.4)])
113 ], [
114 AC_MSG_FAILURE([--with-zlib was given, but zlib headers were not present or were too old (requires 1.2.0.4)])
115 ])
116 ])
117])
kenton@google.come59427a2009-04-16 22:30:56 +0000118AM_CONDITIONAL([HAVE_ZLIB], [test $HAVE_ZLIB = 1])
119
kenton@google.com9824eda2009-05-06 17:49:37 +0000120AS_IF([test "$with_protoc" != "no"], [
121 PROTOC=$with_protoc
liujisi@google.com5d8d2b02010-12-06 06:20:14 +0000122 AS_IF([test "$with_protoc" = "yes"], [
kenton@google.com9824eda2009-05-06 17:49:37 +0000123 # No argument given. Use system protoc.
124 PROTOC=protoc
125 ])
126 AS_IF([echo "$PROTOC" | grep -q '^@<:@^/@:>@.*/'], [
127 # Does not start with a slash, but contains a slash. So, it's a relative
128 # path (as opposed to an absolute path or an executable in $PATH).
129 # Since it will actually be executed from the src directory, prefix with
130 # the current directory. We also insert $ac_top_build_prefix in case this
131 # is a nested package and --with-protoc was actually given on the outer
132 # package's configure script.
133 PROTOC=`pwd`/${ac_top_build_prefix}$PROTOC
134 ])
135 AC_SUBST([PROTOC])
136])
137AM_CONDITIONAL([USE_EXTERNAL_PROTOC], [test "$with_protoc" != "no"])
138
temporal40ee5512008-07-10 02:12:20 +0000139ACX_PTHREAD
140AC_CXX_STL_HASH
141
William Orr20e0a612014-10-10 22:50:39 -0700142case "$target_os" in
143 mingw* | cygwin* | win*)
144 ;;
145 *)
146 # Need to link against rt on Solaris
147 AC_SEARCH_LIBS([sched_yield], [rt], [], [AC_MSG_FAILURE([sched_yield was not found on your system])])
148 ;;
149esac
William Orr38b84942014-09-19 21:54:27 -0700150
kenton@google.com45258ff2009-12-23 22:12:22 +0000151# HACK: Make gtest's configure script pick up our copy of CFLAGS and CXXFLAGS,
152# since the flags added by ACX_CHECK_SUNCC must be used when compiling gtest
153# too.
154export CFLAGS
kenton@google.com304b7312009-08-10 23:52:27 +0000155export CXXFLAGS
kenton@google.com37ad00d2009-04-21 21:00:39 +0000156AC_CONFIG_SUBDIRS([gtest])
157
kenton@google.com3c66c2e2009-08-03 21:31:25 +0000158AC_CONFIG_FILES([Makefile src/Makefile protobuf.pc protobuf-lite.pc])
kenton@google.comc76caac2008-09-30 22:11:21 +0000159AC_OUTPUT