*** empty log message ***
[gnutls.git] / configure.in
blob2bc0c6b54fce4250de77d7c08440c0039719b3bb
1 dnl Process this file with autoconf to produce a configure script.
2 AC_PREREQ(2.50)
3 AC_INIT
5 AC_PREFIX_DEFAULT(/usr/local)
7 AC_CANONICAL_TARGET([])
8 AC_DEFINE_UNQUOTED(T_CPU, "$target_cpu")
9 AC_DEFINE_UNQUOTED(T_VENDOR, "$target_vendor")
10 AC_DEFINE_UNQUOTED(T_OS, "$target_os")
12 dnl Gnutls Version
13 GNUTLS_MAJOR_VERSION=0
14 GNUTLS_MINOR_VERSION=4
15 GNUTLS_MICRO_VERSION=4
16 GNUTLS_VERSION=$GNUTLS_MAJOR_VERSION.$GNUTLS_MINOR_VERSION.$GNUTLS_MICRO_VERSION
18 AC_DEFINE_UNQUOTED(GNUTLS_VERSION, "$GNUTLS_VERSION")
20 AM_INIT_AUTOMAKE(gnutls, $GNUTLS_VERSION)
21 AM_CONFIG_HEADER(config.h)
23 dnl This is the library version
24 GNUTLS_MOST_RECENT_INTERFACE=5
25 GNUTLS_CURRENT_INTERFACE_IMPLEMENTATION_NUMBER=$GNUTLS_MICRO_VERSION
26 GNUTLS_OLDEST_INTERFACE=4
29 AC_SUBST(GNUTLS_MAJOR_VERSION)
30 AC_SUBST(GNUTLS_MINOR_VERSION)
31 AC_SUBST(GNUTLS_MICRO_VERSION)
32 AC_SUBST(GNUTLS_VERSION)
34 AC_SUBST(GNUTLS_MOST_RECENT_INTERFACE)
35 AC_SUBST(GNUTLS_CURRENT_INTERFACE_IMPLEMENTATION_NUMBER)
36 AC_SUBST(GNUTLS_OLDEST_INTERFACE)
38 LT_CURRENT=$GNUTLS_MOST_RECENT_INTERFACE
39 LT_REVISION=$GNUTLS_CURRENT_INTERFACE_IMPLEMENTATION_NUMBER
40 LT_AGE=`expr $GNUTLS_MOST_RECENT_INTERFACE - $GNUTLS_OLDEST_INTERFACE`
41 AC_SUBST(LT_CURRENT)
42 AC_SUBST(LT_REVISION)
43 AC_SUBST(LT_AGE)
45 opt_dmalloc_mode=no
46 AC_MSG_CHECKING([whether in dmalloc mode])
47 AC_ARG_ENABLE(dmalloc-mode,
48 [  --enable-dmalloc-mode      enable dmalloc mode],
49 opt_dmalloc_mode=$enableval)
50 AC_MSG_RESULT($opt_dmalloc_mode)
52 opt_efence_mode=no
53 AC_MSG_CHECKING([whether in electric fence mode])
54 AC_ARG_ENABLE(efence-mode,
55 [  --enable-efence-mode       enable electric fence mode],
56 opt_efence_mode=$enableval)
57 AC_MSG_RESULT($opt_efence_mode)
59 opt_maintainer_mode=no
60 AC_MSG_CHECKING([whether in maintanance mode])
61 AC_ARG_ENABLE(maintainer-mode,
62 [  --enable-maintainer-mode   enable maintainer mode],
63 opt_maintainer_mode=$enableval)
64 AC_MSG_RESULT($opt_maintainer_mode)
66 opt_profiler_mode=no
67 AC_MSG_CHECKING([whether in profile mode])
68 AC_ARG_ENABLE(profile-mode,
69 [  --enable-profile-mode      enable profiler],
70 opt_profiler_mode=$enableval)
71 AC_MSG_RESULT($opt_profiler_mode)
73 AC_MSG_RESULT([***
74 *** Checking for compilation programs...
77 AC_PROG_CC
79 AC_PROG_YACC
81 AC_PROG_LN_S
84 dnl Checks for programs.
85 AC_PROG_INSTALL
87 dnl AC_PROG_MAKE_SET
90 AC_MSG_RESULT([***
91 *** Detecting compiler options...
95 AC_C_CONST
96 AC_C_INLINE
99 if test $ac_cv_c_compiler_gnu != no; then
101         if test x$opt_maintainer_mode = xyes; then
103           CFLAGS="${CFLAGS} -ggdb3 -Wall -Wpointer-arith -Wstrict-prototypes" # -Werror
104         else
105           CFLAGS="${CFLAGS} -O2 -finline-functions -fexpensive-optimizations -fomit-frame-pointer"
106         fi
108         if test x$opt_dmalloc_mode = xyes; then
109           AC_CHECK_LIB( dmalloc, main)
110           AC_DEFINE(USE_DMALLOC)
111         else
112                 if test x$opt_efence_mode = xyes; then
113                   AC_CHECK_LIB( efence, main)
114                   AC_DEFINE(USE_EFENCE)
115                 fi
116         fi
119         AC_MSG_CHECKING([whether we have GNU assembler])
120         
121         GAS=`as --version < /dev/null|grep GNU`
122         if test "$GAS"; then
123           CFLAGS="${CFLAGS} -pipe"
124           AC_MSG_RESULT(yes)
125         else
126           AC_MSG_RESULT(no)
127         fi
131 AC_MSG_RESULT([***
132 *** Detecting C library capabilities...
135 AC_HEADER_STDC
136 AC_HEADER_TIME
137 AC_CHECK_HEADERS(unistd.h pwd.h locale.h strings.h stdarg.h)
138 AC_CHECK_HEADERS(sys/stat.h sys/types.h sys/socket.h)
139 AC_CHECK_HEADERS(errno.h sys/time.h time.h)
140 AC_CHECK_FUNCS(bzero memset memmove bcopy,,)
141 AC_FUNC_ALLOCA
144 AC_MSG_RESULT([***
145 *** Detecting system's parameters...
148 AC_CHECK_SIZEOF(unsigned long long, 8)
149 AC_CHECK_SIZEOF(unsigned long int, 4)
150 AC_CHECK_SIZEOF(unsigned int, 4)
151 AC_CHECK_SIZEOF(unsigned short int, 2)
152 AC_CHECK_SIZEOF(unsigned char, 1)
154 AC_CHECK_TYPES(ptrdiff_t,,, [
155 # include <sys/types.h>
158 AC_CHECK_TYPE(size_t,
159 DEFINE_SIZE_T="#include <sys/types.h>"
160 AC_SUBST( DEFINE_SIZE_T)
162 AC_DEFINE(NO_SIZE_T)
163 DEFINE_SIZE_T="typedef unsigned int size_t; typedef int ssize_t;"
164 AC_SUBST( DEFINE_SIZE_T)
166 #ifdef HAVE_SYS_TYPES_H
167 # include <sys/types.h>
168 #endif
169 #ifdef HAVE_UNISTD_H
170 # include <unistd.h>
171 #endif
175 AC_CHECK_TYPE(time_t,
176  DEFINE_TIME_T="#include <time.h>"
177  AC_SUBST( DEFINE_TIME_T)
179   AC_CHECK_TYPE(time_t,
180    DEFINE_TIME_T="#include <sys/time.h>"
181    AC_SUBST( DEFINE_TIME_T)
182    ,
183     DEFINE_TIME_T="typedef unsigned int time_t;"
184     AC_SUBST( DEFINE_TIME_T)
185     AC_DEFINE(NO_TIME_T),
186   [
187    #include <sys/time.h>
188   ]
189   )
192  #include <time.h>
196 AC_C_BIGENDIAN
199 AC_MSG_RESULT([***
200 *** Checking for external libraries...
203 AM_PATH_LIBGCRYPT(1.1.7,,
204         AC_MSG_ERROR([[
205 ***  
206 *** libgcrypt was not found. You may want to get it from
207 *** ftp://ftp.gnupg.org/pub/gcrypt/alpha/libgcrypt/
209 ]]))
210 dnl Can't disable - gnutls depends on gcrypt
211 AC_DEFINE(USE_GCRYPT)
213 dnl MCRYPT
215 AC_ARG_WITH( mcrypt, [  --with-mcrypt           enable libmcrypt support],
216  [AM_PATH_LIBMCRYPT( 2.4.0,, 
217         AC_MSG_ERROR([[*** libmcrypt was not found]])
218     AC_MSG_ERROR([[*** You need libmcrypt 2.4.x to compile this program. http://mcrypt.hellug.gr]])
223 LIBS="${LIBS} ${LIBMCRYPT_LIBS}"
225 AC_ARG_WITH( mhash, [  --with-mhash            enable libmhash support],
226  [AC_CHECK_LIB(mhash, mhash_init, AC_DEFINE(USE_MHASH) 
227 LIBS="${LIBS} -lmhash")])
229 AC_MSG_CHECKING([whether to check for external libraries])
231 dnl if used --without-ext-libraries then we will not check
232 dnl for any library (libz, libgdbm)
234 AC_ARG_WITH( ext-libraries, [  --without-ext-libraries disable external libraries support],
235  ac_ext_libraries=$withval
238 if test x$ac_ext_libraries != xno; then
239  AC_MSG_RESULT(yes)
240  AC_CHECK_LIB(gdbm, gdbm_open,, AC_MSG_WARN(
241 *** 
242 *** GDBM was not found. You will not be able to use the default gdbm session resumption backend.))
243  AC_CHECK_LIB(z, compress,,AC_MSG_WARN(
244 *** 
245 *** ZLIB was not found. You will not be able to use ZLIB compression.))
246 else
247  AC_MSG_RESULT()
250 AC_MSG_CHECKING([whether to disable SRP authentication support])
251 AC_ARG_ENABLE( srp-authentication, [  --disable-srp-authentication     disable the SRP authentication support],
252  ac_enable_srp=no
254 if test x$ac_enable_srp != xno; then
255  AC_MSG_RESULT(no)
256  AC_DEFINE(ENABLE_SRP)
257 else
258  AC_MSG_RESULT(yes)
261 AC_MSG_CHECKING([whether to disable anonymous authentication support])
262 AC_ARG_ENABLE( anon-authentication, [  --disable-anon-authentication    disable the anonymous authentication support],
263  ac_enable_anon=no
265 if test x$ac_enable_anon != xno; then
266  AC_MSG_RESULT(no)
267  AC_DEFINE(ENABLE_ANON)
268 else
269  AC_MSG_RESULT(yes)
273 AC_MSG_CHECKING([whether to disable OpenPGP Certificate authentication support])
274 AC_ARG_ENABLE( openpgp-authentication, [  --disable-openpgp-authentication disable the OpenPGP authentication support],
275  ac_enable_openpgp=no
277 if test x$ac_enable_openpgp != xno; then
278  AC_MSG_RESULT(no)
279  AM_PATH_LIBOPENCDK( 0.1.0, AC_DEFINE(HAVE_LIBOPENCDK),
280  AC_MSG_WARN([[
282 *** libopencdk was not found. You will not be able to use OpenPGP keys with gnutls.
283 ]]))
284 else
285  AC_MSG_RESULT(yes)
292 AC_MSG_RESULT([***
293 *** Detecting options for shared libraries...
295 AM_PROG_LIBTOOL
297 LIBGNUTLS_LIBS="$LIBS -L${libdir} -lgnutls $LIBGCRYPT_LIBS"
298 LIBGNUTLS_CFLAGS="$LIBGCRYPT_CFLAGS -I${includedir}"
300 AC_SUBST(LIBGNUTLS_LIBS)
301 AC_SUBST(LIBGNUTLS_CFLAGS)
304 LIBGNUTLS_EXTRA_LIBS="-L${libdir} -lgnutls-extra -lgnutls $LIBOPENCDK_LIBS"
305 LIBGNUTLS_EXTRA_CFLAGS="$LIBOPENCDK_CFLAGS -I${includedir}"
307 AC_SUBST(LIBGNUTLS_EXTRA_LIBS)
308 AC_SUBST(LIBGNUTLS_EXTRA_CFLAGS)
310 if test $ac_cv_c_compiler_gnu != no; then
312         if test x$opt_profiler_mode = xyes; then
313           CFLAGS="${CFLAGS} `fc-config --cflags`"
314           AC_CHECK_PROG(FC_OK, fc-config, yes, no)
315           if test x$FC_OK = xyes; then
316                 LIBS="$LIBS `fc-config --libs`"
317           else
318 AC_MSG_WARN(***
319 *** You must install libfc in order to enable profiling. http://www710.univ-lyon1.fr/~yperret/fnccheck/profiler.html
321           fi
322         fi
325 AC_CONFIG_FILES(lib/gnutls.h.in)
327 AC_CONFIG_COMMANDS([lib/gnutls.h],[[
328  test -f lib/gnutls.h.in || (echo "Could not generate lib/gnutls.h" && exit 1)
329  cat lib/gnutls.h.in > lib/gnutls.h
330  cat lib/gnutls_ui.h >> lib/gnutls.h
331  echo "" >> lib/gnutls.h
332  cat lib/gnutls_errors_int.h | grep -v _INT_ >> lib/gnutls.h
333  echo "" >> lib/gnutls.h
334  cat lib/x509_asn1.h >> lib/gnutls.h
335  echo "" >> lib/gnutls.h
336  echo "#ifdef __cplusplus" >> lib/gnutls.h
337  echo "}" >> lib/gnutls.h
338  echo "#endif" >> lib/gnutls.h
339  echo "#endif /* GNUTLS_H */" >> lib/gnutls.h
340  echo "" >> lib/gnutls.h
341  chmod +x lib/libgnutls-config
342  chmod +x libextra/libgnutls-extra-config
343 ]],[[]])
345 AC_CONFIG_FILES([Makefile src/Makefile libextra/Makefile lib/Makefile \
346 lib/libgnutls-config libextra/libgnutls-extra-config \
347 doc/Makefile src/x509/Makefile src/srp/Makefile src/openpgp/Makefile \
348 doc/tex/Makefile doc/tex/cover.tex doc/scripts/Makefile \
349 tests/Makefile ])
352 AC_OUTPUT