configure.in 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. ad
  2. dnl Process this file with autoconf to produce a configure script.
  3. dnl The ONLY thing this is used for is to configure for different
  4. dnl linux architectures and configurations, it is not used to make the
  5. dnl code more portable
  6. dnl You MUST have an environment that has all the POSIX functions and
  7. dnl some of the more populare bsd/sysv ones (like select). You'll also
  8. dnl need a C++ compiler that is semi-standard conformant, exceptions are
  9. dnl not used but STL is.
  10. dnl 'make -f Makefile startup' will generate the configure file from
  11. dnl configure.in correctly and can be run at any time
  12. AC_PREREQ(2.50)
  13. AC_INIT(configure.in)
  14. AC_CONFIG_AUX_DIR(buildlib)
  15. AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in)
  16. PACKAGE="apt"
  17. PACKAGE_VERSION="1.5"
  18. AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE")
  19. AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION")
  20. AC_SUBST(PACKAGE)
  21. AC_SUBST(PACKAGE_VERSION)
  22. dnl Check the archs, we want the target type.
  23. AC_CANONICAL_SYSTEM
  24. dnl Check our C compiler
  25. AC_CHECK_TOOL_PREFIX
  26. AC_PROG_CC
  27. AC_ISC_POSIX
  28. dnl check for large file support and enable it if possible
  29. dnl do this early as other stuff might depend on it
  30. AC_SYS_LARGEFILE
  31. dnl Check for other programs
  32. AC_PROG_CXX
  33. AC_PROG_CPP
  34. AC_PROG_RANLIB
  35. AC_CHECK_TOOL(AR,ar,"ar")
  36. dnl Checks for sockets
  37. SAVE_LIBS="$LIBS"
  38. LIBS=""
  39. AC_SEARCH_LIBS(gethostbyname,nsl)
  40. AC_SEARCH_LIBS(connect,socket)
  41. SOCKETLIBS="$LIBS"
  42. AC_SUBST(SOCKETLIBS)
  43. LIBS="$SAVE_LIBS"
  44. dnl Checks for pthread -- disabled due to glibc bugs jgg
  45. dnl AC_CHECK_LIB(pthread, pthread_create,[AC_DEFINE(HAVE_PTHREAD) PTHREADLIB="-lpthread"])
  46. AC_SUBST(PTHREADLIB)
  47. dnl if test "$PTHREADLIB" != "-lpthread"; then
  48. dnl AC_MSG_ERROR(failed: I need posix threads, pthread)
  49. dnl fi
  50. dnl Check for BDB
  51. saveLIBS="$LIBS"
  52. LIBS="$LIBS -ldb"
  53. AC_CHECK_HEADER(db.h,
  54. [AC_MSG_CHECKING(if we can link against BerkeleyDB)
  55. AC_LINK_IFELSE(
  56. [AC_LANG_PROGRAM(
  57. [#include <db.h>],
  58. [int r, s, t; db_version(&r, &s, &t);]
  59. )],
  60. [AC_DEFINE(HAVE_BDB)
  61. BDBLIB="-ldb"
  62. AC_MSG_RESULT(yes)],
  63. [BDBLIB=""
  64. AC_MSG_RESULT(no)]
  65. )]
  66. )
  67. LIBS="$saveLIBS"
  68. AC_CHECK_LIB(curl, curl_easy_init,
  69. [AC_CHECK_HEADER(curl/curl.h,
  70. curl_ok=yes,
  71. curl_ok=no)],
  72. AC_MSG_ERROR([failed: I need CURL due https support]),
  73. )
  74. AC_SUBST(BDBLIB)
  75. HAVE_ZLIB=no
  76. AC_CHECK_LIB(z, gzopen,
  77. [AC_CHECK_HEADER(zlib.h, [HAVE_ZLIB=yes], AC_MSG_ERROR([failed: zlib.h not found]))],
  78. AC_MSG_ERROR([failed: Need libz]))
  79. AC_SUBST(HAVE_ZLIB)
  80. if test "x$HAVE_ZLIB" = "xyes"; then
  81. AC_DEFINE(HAVE_ZLIB)
  82. fi
  83. HAVE_BZ2=no
  84. AC_CHECK_LIB(bz2, BZ2_bzopen,[AC_CHECK_HEADER(bzlib.h, [HAVE_BZ2=yes], [])], [])
  85. AC_SUBST(HAVE_BZ2)
  86. if test "x$HAVE_BZ2" = "xyes"; then
  87. AC_DEFINE(HAVE_BZ2)
  88. fi
  89. dnl Converts the ARCH to be something singular for this general CPU family
  90. dnl This is often the dpkg architecture string.
  91. dnl First check against the full canonical canoncial-system-type in $target
  92. dnl and if that fails, just look for the cpu
  93. AC_MSG_CHECKING(debian architecture)
  94. archset="`dpkg-architecture -qDEB_HOST_ARCH`"
  95. if test "x$archset" = "x"; then
  96. AC_MSG_ERROR([failed: use --host= or output from dpkg-architecture])
  97. fi
  98. AC_MSG_RESULT($archset)
  99. AC_DEFINE_UNQUOTED(COMMON_ARCH,"$archset")
  100. dnl We use C99 types if at all possible
  101. AC_CACHE_CHECK([for C99 integer types],apt_cv_c9x_ints,[
  102. AC_TRY_COMPILE([#include <inttypes.h>],
  103. [uint8_t Foo1;uint16_t Foo2;uint32_t Foo3;],
  104. apt_cv_c9x_ints=yes,apt_cv_c9x_ints=no)])
  105. dnl Single Unix Spec statvfs
  106. AC_CHECK_FUNC(statvfs,[HAVE_STATVFS=yes])
  107. AC_SUBST(HAVE_STATVFS)
  108. dnl Arg, linux and bsd put their statfs function in different places
  109. if test x"$HAVE_STATVFS" != x"yes"; then
  110. AC_EGREP_HEADER(statfs,sys/vfs.h,[AC_DEFINE(HAVE_VFS_H)],[
  111. AC_EGREP_HEADER(statfs,sys/mount.h,[AC_DEFINE(HAVE_MOUNT_H)],[AC_MSG_ERROR(failed: Need statvfs)])
  112. ])
  113. fi
  114. AC_CHECK_MEMBERS([struct statfs.f_type],,,
  115. [$ac_includes_default
  116. #include <sys/vfs.h>])
  117. dnl We should use the real timegm function if we have it.
  118. AC_CHECK_FUNC(timegm,AC_DEFINE(HAVE_TIMEGM))
  119. AC_SUBST(HAVE_TIMEGM)
  120. dnl Check the sizes etc. of the architecture
  121. dnl This is stupid, it should just use the AC macros like it does below
  122. dnl Cross compilers can either get a real C library or preload the cache
  123. dnl with their size values.
  124. changequote(,)
  125. archline="`awk \" ! /^#|^\\\$/ {if (match(\\\"$archset\\\",\\\$1)) {print; exit}}\" $srcdir/buildlib/sizetable | cut -f 2- -d ' '`"
  126. if test "x$archline" != "x"; then
  127. changequote([,])
  128. set $archline
  129. if test "$1" = "little"; then
  130. ac_cv_c_bigendian=no
  131. else
  132. ac_cv_c_bigendian=yes
  133. fi
  134. size_char=$2
  135. size_int=$3
  136. size_short=$4
  137. size_long=$5
  138. fi
  139. dnl I wonder what AC_C_BIGENDIAN does if you cross compile...
  140. dnl This is probably bogus, as above we only care if we have to build our own
  141. dnl C9x types.
  142. if test "$cross_compiling" = "yes" -a "x$archline" = "x"; then
  143. AC_MSG_ERROR(When cross compiling, architecture must be present in sizetable)
  144. fi
  145. AC_C_BIGENDIAN
  146. dnl We do not need this if we have inttypes!
  147. HAVE_C9X=yes
  148. if test x"$apt_cv_c9x_ints" = x"no"; then
  149. AC_CHECK_SIZEOF(char,$size_char)
  150. AC_CHECK_SIZEOF(int,$size_int)
  151. AC_CHECK_SIZEOF(short,$size_short)
  152. AC_CHECK_SIZEOF(long,$size_long)
  153. HAVE_C9X=
  154. AC_SUBST(HAVE_C9X)
  155. fi
  156. dnl HP-UX sux..
  157. AC_MSG_CHECKING(for missing socklen_t)
  158. AC_EGREP_HEADER(socklen_t, sys/socket.h,[AC_MSG_RESULT(no)],[
  159. AC_DEFINE(NEED_SOCKLEN_T_DEFINE)
  160. NEED_SOCKLEN_T_DEFINE=yes
  161. AC_MSG_RESULT(missing.)])
  162. AC_SUBST(NEED_SOCKLEN_T_DEFINE)
  163. dnl HP-UX needs -d_XOPEN_SOURCE_EXTENDED for h_errno
  164. AC_MSG_CHECKING(for h_errno)
  165. AC_EGREP_HEADER(h_errno, netdb.h, [AC_MSG_RESULT(normal)],
  166. [CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
  167. AC_EGREP_HEADER(h_errno, netdb.h,
  168. [AC_MSG_RESULT(needs _XOPEN_SOURCE_EXTENDED)],
  169. [AC_MSG_ERROR("not found.")])
  170. ])
  171. dnl Check for debiandoc
  172. AC_PATH_PROG(DEBIANDOC_HTML,debiandoc2html)
  173. AC_PATH_PROG(DEBIANDOC_TEXT,debiandoc2text)
  174. dnl Check for doxygen
  175. AC_PATH_PROG(DOXYGEN, doxygen)
  176. dnl Check for the XSLTProc tool needed to build man pages together with po4a
  177. AC_PATH_PROG(XSLTPROC,xsltproc)
  178. dnl Check for the po4a tool needed to build man pages
  179. AC_PATH_PROG(PO4A,po4a)
  180. dnl Check for graphviz
  181. AC_CHECK_PROG([HAVE_DOT], [dot], [YES], [NO])
  182. AC_PATH_PROG([DOT], [dot], [])
  183. DOTDIR=$(dirname $DOT)
  184. AC_SUBST(DOTDIR)
  185. ah_NUM_PROCS
  186. ah_GCC3DEP
  187. dnl It used to be that the user could select translations and that could get
  188. dnl passed to the makefiles, but now that can only work if you use special
  189. dnl gettext approved makefiles, so this feature is unsupported by this.
  190. ALL_LINGUAS="bg bs ca cs cy da de dz el es eu fi fr gl hu it ja ko ku nb nl nn pl pt_BR pt ro ru sk sl sv th tl uk vi zn_CN zh_TW"
  191. AM_GNU_GETTEXT(external)
  192. if test x"$USE_NLS" = "xyes"; then
  193. AC_DEFINE(USE_NLS)
  194. fi
  195. AC_SUBST(USE_NLS)
  196. AC_PATH_PROG(BASH, bash)
  197. AC_OUTPUT(environment.mak:buildlib/environment.mak.in makefile:buildlib/makefile.in doc/Doxyfile:doc/Doxyfile.in,make -s dirs)