configure.ac 6.69 KB
Newer Older
temporal's avatar
temporal committed
1 2 3 4 5 6
## Process this file with autoconf to produce configure.
## In general, the safest way to proceed is to run ./autogen.sh

AC_PREREQ(2.59)

# Note:  If you change the version, you must also update it in:
7 8 9 10 11 12 13
# * Protobuf.podspec
# * csharp/Google.Protobuf.Tools.nuspec
# * csharp/src/*/AssemblyInfo.cs
# * csharp/src/Google.Protobuf/Google.Protobuf.nuspec
# * java/*/pom.xml
# * python/google/protobuf/__init__.py
# * protoc-artifacts/pom.xml
temporal's avatar
temporal committed
14
# * src/google/protobuf/stubs/common.h
15
# * src/Makefile.am (Update -version-info for LDFLAGS if needed)
16 17 18 19
#
# In the SVN trunk, the version should always be the next anticipated release
# version with the "-pre" suffix.  (We used to use "-SNAPSHOT" but this pushed
# the size of one file name in the dist tarfile over the 99-char limit.)
20
AC_INIT([Protocol Buffers],[3.5.1],[protobuf@googlegroups.com],[protobuf])
temporal's avatar
temporal committed
21

22
AM_MAINTAINER_MODE([enable])
23

temporal's avatar
temporal committed
24
AC_CONFIG_SRCDIR(src/google/protobuf/message.cc)
25 26 27
# The config file is generated but not used by the source code, since we only
# need very few of them, e.g. HAVE_PTHREAD and HAVE_ZLIB. Those macros are
# passed down in CXXFLAGS manually in src/Makefile.am
28
AC_CONFIG_HEADERS([config.h])
29
AC_CONFIG_MACRO_DIR([m4])
30

31 32
AC_ARG_VAR(DIST_LANG, [language to include in the distribution package (i.e., make dist)])
case "$DIST_LANG" in
33
  "") DIST_LANG=all ;;
Bo Yang's avatar
Bo Yang committed
34
  all | cpp | csharp | java | python | javanano | objectivec | ruby | js | php) ;;
35 36 37 38
  *) AC_MSG_FAILURE([unknown language: $DIST_LANG]) ;;
esac
AC_SUBST(DIST_LANG)

39 40 41 42 43 44
# autoconf's default CXXFLAGS are usually "-g -O2".  These aren't necessarily
# the best choice for libprotobuf.
AS_IF([test "x${ac_cv_env_CFLAGS_set}" = "x"],
      [CFLAGS=""])
AS_IF([test "x${ac_cv_env_CXXFLAGS_set}" = "x"],
      [CXXFLAGS=""])
45

46 47
AC_CANONICAL_TARGET

48
AM_INIT_AUTOMAKE([1.9 tar-ustar subdir-objects])
temporal's avatar
temporal committed
49

50 51 52 53 54
AC_ARG_WITH([zlib],
  [AS_HELP_STRING([--with-zlib],
    [include classes for streaming compressed data in and out @<:@default=check@:>@])],
  [],[with_zlib=check])

55 56 57 58 59
AC_ARG_WITH([protoc],
  [AS_HELP_STRING([--with-protoc=COMMAND],
    [use the given protoc command instead of building a new one when building tests (useful for cross-compiling)])],
  [],[with_protoc=no])

temporal's avatar
temporal committed
60 61 62
# Checks for programs.
AC_PROG_CC
AC_PROG_CXX
63
AC_PROG_CXX_FOR_BUILD
64
AC_LANG([C++])
65
ACX_USE_SYSTEM_EXTENSIONS
66
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
temporal's avatar
temporal committed
67
AM_CONDITIONAL(GCC, test "$GCC" = yes)   # let the Makefile know if we're gcc
68
AC_PROG_OBJC
69

70
# test_util.cc takes forever to compile with GCC and optimization turned on.
71
AC_MSG_CHECKING([C++ compiler flags...])
72 73 74 75 76
AS_IF([test "x${ac_cv_env_CXXFLAGS_set}" = "x"],[
  AS_IF([test "$GCC" = "yes"],[
    PROTOBUF_OPT_FLAG="-O2"
    CXXFLAGS="${CXXFLAGS} -g"
  ])
77 78 79 80 81 82 83 84 85 86 87 88 89

  # Protocol Buffers contains several checks that are intended to be used only
  # for debugging and which might hurt performance.  Most users are probably
  # end users who don't want these checks, so add -DNDEBUG by default.
  CXXFLAGS="$CXXFLAGS -DNDEBUG"

  AC_MSG_RESULT([use default: $PROTOBUF_OPT_FLAG $CXXFLAGS])
],[
  AC_MSG_RESULT([use user-supplied: $CXXFLAGS])
])

AC_SUBST(PROTOBUF_OPT_FLAG)

90
ACX_CHECK_SUNCC
temporal's avatar
temporal committed
91

92
# Have to do libtool after SUNCC, other wise it "helpfully" adds Crun Cstd
93 94 95
# to the link
AC_PROG_LIBTOOL

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
# Check whether the linker supports version scripts
AC_MSG_CHECKING([whether the linker supports version scripts])
save_LDFLAGS=$LDFLAGS
LDFLAGS="$LDFLAGS -Wl,--version-script=conftest.map"
cat > conftest.map <<EOF
{
  global:
    main;
  local:
    *;
};
EOF
AC_LINK_IFELSE(
  [AC_LANG_SOURCE([int main() { return 0; }])],
  [have_ld_version_script=yes; AC_MSG_RESULT(yes)],
  [have_ld_version_script=no; AC_MSG_RESULT(no)])
LDFLAGS=$save_LDFLAGS
AM_CONDITIONAL([HAVE_LD_VERSION_SCRIPT], [test "$have_ld_version_script" == "yes"])

temporal's avatar
temporal committed
115 116 117 118 119 120 121 122 123
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h stdlib.h unistd.h])

# Checks for library functions.
AC_FUNC_MEMCMP
AC_FUNC_STRTOD
AC_CHECK_FUNCS([ftruncate memset mkdir strchr strerror strtol])

124
# Check for zlib.
125
HAVE_ZLIB=0
126 127 128 129 130
AS_IF([test "$with_zlib" != no], [
  AC_MSG_CHECKING([zlib version])

  # First check the zlib header version.
  AC_COMPILE_IFELSE(
131
    [AC_LANG_PROGRAM([[
132 133 134 135
        #include <zlib.h>
        #if !defined(ZLIB_VERNUM) || (ZLIB_VERNUM < 0x1204)
        # error zlib version too old
        #endif
136
        ]], [])], [
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
    AC_MSG_RESULT([ok (1.2.0.4 or later)])

    # Also need to add -lz to the linker flags and make sure this succeeds.
    AC_SEARCH_LIBS([zlibVersion], [z], [
      AC_DEFINE([HAVE_ZLIB], [1], [Enable classes using zlib compression.])
      HAVE_ZLIB=1
    ], [
      AS_IF([test "$with_zlib" != check], [
        AC_MSG_FAILURE([--with-zlib was given, but no working zlib library was found])
      ])
    ])
  ], [
    AS_IF([test "$with_zlib" = check], [
      AC_MSG_RESULT([headers missing or too old (requires 1.2.0.4)])
    ], [
      AC_MSG_FAILURE([--with-zlib was given, but zlib headers were not present or were too old (requires 1.2.0.4)])
    ])
  ])
])
156 157
AM_CONDITIONAL([HAVE_ZLIB], [test $HAVE_ZLIB = 1])

158 159
AS_IF([test "$with_protoc" != "no"], [
  PROTOC=$with_protoc
160
  AS_IF([test "$with_protoc" = "yes"], [
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
    # No argument given.  Use system protoc.
    PROTOC=protoc
  ])
  AS_IF([echo "$PROTOC" | grep -q '^@<:@^/@:>@.*/'], [
    # Does not start with a slash, but contains a slash.  So, it's a relative
    # path (as opposed to an absolute path or an executable in $PATH).
    # Since it will actually be executed from the src directory, prefix with
    # the current directory.  We also insert $ac_top_build_prefix in case this
    # is a nested package and --with-protoc was actually given on the outer
    # package's configure script.
    PROTOC=`pwd`/${ac_top_build_prefix}$PROTOC
  ])
  AC_SUBST([PROTOC])
])
AM_CONDITIONAL([USE_EXTERNAL_PROTOC], [test "$with_protoc" != "no"])

temporal's avatar
temporal committed
177
ACX_PTHREAD
178 179 180
AM_CONDITIONAL([HAVE_PTHREAD], [test "x$acx_pthread_ok" = "xyes"])

# We still keep this for improving pbconfig.h for unsupported platforms.
temporal's avatar
temporal committed
181 182
AC_CXX_STL_HASH

183 184 185 186 187 188 189 190
case "$target_os" in
  mingw* | cygwin* | win*)
    ;;
  *)
    # Need to link against rt on Solaris
    AC_SEARCH_LIBS([sched_yield], [rt], [], [AC_MSG_FAILURE([sched_yield was not found on your system])])
    ;;
esac
191

192 193 194 195 196 197 198 199 200
# Enable ObjC support for conformance directory on OS X.
OBJC_CONFORMANCE_TEST=0
case "$target_os" in
  darwin*)
    OBJC_CONFORMANCE_TEST=1
    ;;
esac
AM_CONDITIONAL([OBJC_CONFORMANCE_TEST], [test $OBJC_CONFORMANCE_TEST = 1])

201 202
AX_CXX_COMPILE_STDCXX([11], [noext], [optional])

203 204
# HACK:  Make gmock's configure script pick up our copy of CFLAGS and CXXFLAGS,
#   since the flags added by ACX_CHECK_SUNCC must be used when compiling gmock
205 206
#   too.
export CFLAGS
207
export CXXFLAGS
208
AC_CONFIG_SUBDIRS([gmock])
209

210
AC_CONFIG_FILES([Makefile src/Makefile benchmarks/Makefile conformance/Makefile protobuf.pc protobuf-lite.pc])
211
AC_OUTPUT