Add -lgflags into LD_FLAGS when gflags is detected and --with-gflags isn't specified...
[platform/upstream/glog.git] / configure.ac
1 ## Process this file with autoconf to produce configure.
2 ## In general, the safest way to proceed is to run the following:
3 ##    % aclocal -I . -I `pwd`/../autoconf && autoheader && autoconf && automake
4
5 # make sure we're interpreted by some minimal autoconf
6 AC_PREREQ(2.57)
7
8 AC_INIT(glog, 0.2.1, opensource@google.com)
9 # The argument here is just something that should be in the current directory
10 # (for sanity checking)
11 AC_CONFIG_SRCDIR(README)
12 AM_INIT_AUTOMAKE
13 AM_CONFIG_HEADER(src/config.h)
14
15 # Checks for programs.
16 AC_PROG_CC
17 AC_PROG_CPP
18 AC_PROG_CXX
19 AM_CONDITIONAL(GCC, test "$GCC" = yes)   # let the Makefile know if we're gcc
20
21 AC_PROG_LIBTOOL
22 AC_SUBST(LIBTOOL_DEPS)
23
24 # Check whether some low-level functions/files are available
25 AC_HEADER_STDC
26
27 # These are tested for by AC_HEADER_STDC, but I check again to set the var
28 AC_CHECK_HEADER(stdint.h, ac_cv_have_stdint_h=1, ac_cv_have_stdint_h=0)
29 AC_CHECK_HEADER(sys/types.h, ac_cv_have_systypes_h=1, ac_cv_have_systypes_h=0)
30 AC_CHECK_HEADER(inttypes.h, ac_cv_have_inttypes_h=1, ac_cv_have_inttypes_h=0)
31 AC_CHECK_HEADERS(unistd.h, ac_cv_have_unistd_h=1, ac_cv_have_unistd_h=0)
32 AC_CHECK_HEADERS(syscall.h)
33 AC_CHECK_HEADERS(sys/syscall.h)
34 # For backtrace with glibc.
35 AC_CHECK_HEADERS(execinfo.h)
36 # For backtrace with libunwind.
37 AC_CHECK_HEADERS(libunwind.h)
38 AC_CHECK_HEADERS(ucontext.h)
39 AC_CHECK_HEADERS(sys/utsname.h)
40 AC_CHECK_HEADERS(pwd.h)
41 AC_CHECK_HEADERS(syslog.h)
42 AC_CHECK_HEADERS(sys/time.h)
43 AC_CHECK_HEADERS(glob.h)
44
45 AC_CHECK_SIZEOF(void *)
46
47 # These are the types I need.  We look for them in either stdint.h,
48 # sys/types.h, or inttypes.h, all of which are part of the default-includes.
49 AC_CHECK_TYPE(uint16_t, ac_cv_have_uint16_t=1, ac_cv_have_uint16_t=0)
50 AC_CHECK_TYPE(u_int16_t, ac_cv_have_u_int16_t=1, ac_cv_have_u_int16_t=0)
51 AC_CHECK_TYPE(__uint16, ac_cv_have___uint16=1, ac_cv_have___uint16=0)
52
53 AC_CHECK_FUNC(sigaltstack,
54               AC_DEFINE(HAVE_SIGALTSTACK, 1,
55                         [Define if you have the `sigaltstack' function]))
56 AC_CHECK_FUNC(dladdr,
57               AC_DEFINE(HAVE_DLADDR, 1,
58                         [Define if you have the `dladdr' function]))
59 AC_CHECK_FUNC(fcntl,
60               AC_DEFINE(HAVE_FCNTL, 1,
61                         [Define if you have the `fcntl' function]))
62
63 AX_C___ATTRIBUTE__
64 # We only care about these two attributes.
65 if test x"$ac_cv___attribute__" = x"yes"; then
66   ac_cv___attribute___noreturn="__attribute__ ((noreturn))"
67   ac_cv___attribute___printf_4_5="__attribute__((__format__ (__printf__, 4, 5)))"
68 else
69   ac_cv___attribute___noreturn=
70   ac_cv___attribute___printf_4_5=
71 fi
72
73 AX_C___BUILTIN_EXPECT
74 if test x"$ac_cv___builtin_expect" = x"yes"; then
75   ac_cv_have___builtin_expect=1
76 else
77   ac_cv_have___builtin_expect=0
78 fi
79
80 AX_C___SYNC_VAL_COMPARE_AND_SWAP
81
82 # On x86_64, instead of libunwind, we can choose to compile with frame-pointers
83 # (This isn't needed on i386, where -fno-omit-frame-pointer is the default).
84 AC_ARG_ENABLE(frame_pointers,
85               AS_HELP_STRING([--enable-frame-pointers],
86                              [On x86_64 systems, compile with -fno-omit-frame-pointer (see INSTALL)]),
87               enable_frame_pointers=no)
88 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(, [return __x86_64__ == 1 ? 0 : 1])],
89                   [is_x86_64=yes], [is_x86_64=no])
90 AM_CONDITIONAL(ENABLE_FRAME_POINTERS, test "$enable_frame_pointers" = yes)
91 AM_CONDITIONAL(X86_64, test "$is_x86_64" = yes)
92
93 # Some of the code in this directory depends on pthreads
94 ACX_PTHREAD
95 if test x"$acx_pthread_ok" = x"yes"; then
96   # To make libglog depend on libpthread on Linux, we need to add
97   # -lpthread in addition to -pthread.
98   AC_CHECK_LIB(pthread, pthread_self)
99 fi
100
101 # Check if there is google-gflags library installed.
102 SAVE_CFLAGS="$CFLAGS"
103 SAVE_LIBS="$LIBS"
104 AC_ARG_WITH(gflags, AS_HELP_STRING[--with-gflags=GFLAGS_DIR],
105   GFLAGS_CFLAGS="-I${with_gflags}/include"
106   GFLAGS_LIBS="-L${with_gflags}/lib -lgflags"
107   CFLAGS="$CFLAGS $GFLAGS_CFLAGS"
108   LIBS="$LIBS $GFLAGS_LIBS"
109 )
110 AC_CHECK_LIB(gflags, main, ac_cv_have_libgflags=1, ac_cv_have_libgflags=0)
111 if test x"$ac_cv_have_libgflags" = x"1"; then
112   AC_DEFINE(HAVE_LIB_GFLAGS, 1, [define if you have google gflags library])
113   if test x"$GFLAGS_LIBS" = x""; then
114     GFLAGS_LIBS="-lgflags"
115   fi
116 else
117   GFLAGS_CFLAGS=
118   GFLAGS_LIBS=
119 fi
120 CFLAGS="$SAVE_CFLAGS"
121 LIBS="$SAVE_LIBS"
122
123 # TODO(hamaji): Use official m4 macros provided by testing libraries
124 #               once the m4 macro of Google Mocking becomes ready.
125 # Check if there is Google Test library installed.
126 AC_CHECK_PROG(GTEST_CONFIG, gtest-config, "yes")
127 if test x"$GTEST_CONFIG" = "xyes"; then
128   GTEST_CFLAGS=`gtest-config --cppflags --cxxflags`
129   GTEST_LIBS=`gtest-config --ldflags --libs`
130   AC_DEFINE(HAVE_LIB_GTEST, 1, [define if you have google gtest library])
131
132   # Check if there is Google Mocking library installed.
133   AC_CHECK_PROG(GMOCK_CONFIG, gmock-config, "yes")
134   if test x"$GMOCK_CONFIG" = "xyes"; then
135     GMOCK_CFLAGS=`gmock-config --cppflags --cxxflags`
136     GMOCK_LIBS=`gmock-config --ldflags --libs`
137     AC_DEFINE(HAVE_LIB_GMOCK, 1, [define if you have google gmock library])
138   else
139     # We don't run test cases which use Google Mocking framework.
140     GMOCK_CFLAGS=
141     GMOCK_LIBS=
142   fi
143 else
144   # We'll use src/googletest.h for our unittests.
145   GTEST_CFLAGS=
146   GTEST_LIBS=
147 fi
148 AM_CONDITIONAL(HAVE_GMOCK, test x"$GMOCK_CONFIG" = "xyes")
149
150 # We want to link in libunwind if it exists
151 UNWIND_LIBS=
152 # Unfortunately, we need to check the header file in addition to the
153 # lib file to check if libunwind is available since libunwind-0.98
154 # doesn't install all necessary header files.
155 if test x"$ac_cv_have_libunwind_h" = x"1"; then
156  AC_CHECK_LIB(unwind, backtrace, UNWIND_LIBS=-lunwind)
157 fi
158 AC_SUBST(UNWIND_LIBS)
159 if test x"$UNWIND_LIBS" != x""; then
160   AC_DEFINE(HAVE_LIB_UNWIND, 1, [define if you have libunwind])
161 fi
162
163 # We'd like to use read/write locks in several places in the code.
164 # See if our pthreads support extends to that.  Note: for linux, it
165 # does as long as you define _XOPEN_SOURCE appropriately.
166 AC_RWLOCK
167
168 # Find out what namespace 'normal' STL code lives in, and also what namespace
169 # the user wants our classes to be defined in
170 AC_CXX_STL_NAMESPACE
171 AC_DEFINE_GOOGLE_NAMESPACE(google)
172
173 AC_CXX_USING_OPERATOR
174
175 # We want to access the "PC" (Program Counter) register from a struct
176 # ucontext.  Every system has its own way of doing that.  We try all the
177 # possibilities we know about.  Note REG_PC should come first (REG_RIP
178 # is also defined on solaris, but does the wrong thing).
179 AC_MSG_CHECKING([how to access the program counter from a struct ucontext])
180 pc_fields="           uc_mcontext.gregs[[REG_PC]]"  # Solaris x86 (32 + 64 bit)
181 pc_fields="$pc_fields uc_mcontext.gregs[[REG_EIP]]" # Linux (i386)
182 pc_fields="$pc_fields uc_mcontext.gregs[[REG_RIP]]" # Linux (x86_64)
183 pc_fields="$pc_fields uc_mcontext.sc_ip"            # Linux (ia64)
184 pc_fields="$pc_fields uc_mcontext.uc_regs->gregs[[PT_NIP]]" # Linux (ppc)
185 pc_fields="$pc_fields uc_mcontext.gregs[[R15]]"     # Linux (arm old [untested])
186 pc_fields="$pc_fields uc_mcontext.arm_pc"           # Linux (arm new [untested])
187 pc_fields="$pc_fields uc_mcontext.mc_eip"           # FreeBSD (i386)
188 pc_fields="$pc_fields uc_mcontext.mc_rip"           # FreeBSD (x86_64 [untested])
189 pc_fields="$pc_fields uc_mcontext->ss.eip"          # OS X (i386, <=10.4)
190 pc_fields="$pc_fields uc_mcontext->__ss.__eip"      # OS X (i386, >=10.5)
191 pc_fields="$pc_fields uc_mcontext->ss.rip"          # OS X (x86_64)
192 pc_fields="$pc_fields uc_mcontext->__ss.__rip"      # OS X (>=10.5 [untested])
193 pc_fields="$pc_fields uc_mcontext->ss.srr0"         # OS X (ppc, ppc64 [untested])
194 pc_fields="$pc_fields uc_mcontext->__ss.__srr0"     # OS X (>=10.5 [untested])
195 pc_field_found=false
196 for pc_field in $pc_fields; do
197   if ! $pc_field_found; then
198     AC_TRY_COMPILE([#define _GNU_SOURCE 1
199                     #include <ucontext.h>],
200                    [ucontext_t u; return u.$pc_field == 0;],
201                    AC_DEFINE_UNQUOTED(PC_FROM_UCONTEXT, $pc_field,
202                                       How to access the PC from a struct ucontext)
203                    AC_MSG_RESULT([$pc_field])
204                  pc_field_found=true)
205   fi
206 done
207 if ! $pc_field_found; then
208   AC_MSG_WARN(Could not find the PC.  Will not output failed addresses...)
209 fi
210
211 # These are what's needed by logging.h.in and raw_logging.h.in
212 AC_SUBST(ac_google_start_namespace)
213 AC_SUBST(ac_google_end_namespace)
214 AC_SUBST(ac_google_namespace)
215 AC_SUBST(ac_cv_cxx_using_operator)
216 AC_SUBST(ac_cv___attribute___noreturn)
217 AC_SUBST(ac_cv___attribute___printf_4_5)
218 AC_SUBST(ac_cv_have___builtin_expect)
219 AC_SUBST(ac_cv_have_stdint_h)
220 AC_SUBST(ac_cv_have_systypes_h)
221 AC_SUBST(ac_cv_have_inttypes_h)
222 AC_SUBST(ac_cv_have_unistd_h)
223 AC_SUBST(ac_cv_have_uint16_t)
224 AC_SUBST(ac_cv_have_u_int16_t)
225 AC_SUBST(ac_cv_have___uint16)
226 AC_SUBST(ac_cv_have_libgflags)
227 AC_SUBST(GFLAGS_CFLAGS)
228 AC_SUBST(GTEST_CFLAGS)
229 AC_SUBST(GMOCK_CFLAGS)
230 AC_SUBST(GFLAGS_LIBS)
231 AC_SUBST(GTEST_LIBS)
232 AC_SUBST(GMOCK_LIBS)
233
234 # Write generated configuration file
235 AC_CONFIG_FILES([Makefile src/glog/logging.h src/glog/raw_logging.h src/glog/vlog_is_on.h src/glog/stl_logging.h])
236 AC_OUTPUT(libglog.pc)