configure.in 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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="0.8.16~exp14"
  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. AC_CHECK_LIB(z, gzopen,
  76. [AC_CHECK_HEADER(zlib.h, [], AC_MSG_ERROR([failed: zlib.h not found]))],
  77. AC_MSG_ERROR([failed: Need libz]))
  78. dnl Converts the ARCH to be something singular for this general CPU family
  79. dnl This is often the dpkg architecture string.
  80. dnl First check against the full canonical canoncial-system-type in $target
  81. dnl and if that fails, just look for the cpu
  82. AC_MSG_CHECKING(debian architecture)
  83. archset="`dpkg-architecture -qDEB_HOST_ARCH`"
  84. if test "x$archset" = "x"; then
  85. AC_MSG_ERROR([failed: use --host= or output from dpkg-architecture])
  86. fi
  87. AC_MSG_RESULT($archset)
  88. AC_DEFINE_UNQUOTED(COMMON_ARCH,"$archset")
  89. dnl We use C99 types if at all possible
  90. AC_CACHE_CHECK([for C99 integer types],apt_cv_c9x_ints,[
  91. AC_TRY_COMPILE([#include <inttypes.h>],
  92. [uint8_t Foo1;uint16_t Foo2;uint32_t Foo3;],
  93. apt_cv_c9x_ints=yes,apt_cv_c9x_ints=no)])
  94. dnl Single Unix Spec statvfs
  95. AC_CHECK_FUNC(statvfs,[HAVE_STATVFS=yes])
  96. AC_SUBST(HAVE_STATVFS)
  97. dnl Arg, linux and bsd put their statfs function in different places
  98. if test x"$HAVE_STATVFS" != x"yes"; then
  99. AC_EGREP_HEADER(statfs,sys/vfs.h,[AC_DEFINE(HAVE_VFS_H)],[
  100. AC_EGREP_HEADER(statfs,sys/mount.h,[AC_DEFINE(HAVE_MOUNT_H)],[AC_MSG_ERROR(failed: Need statvfs)])
  101. ])
  102. fi
  103. AC_CHECK_MEMBERS([struct statfs.f_type],,,
  104. [$ac_includes_default
  105. #include <sys/vfs.h>])
  106. dnl We should use the real timegm function if we have it.
  107. AC_CHECK_FUNC(timegm,AC_DEFINE(HAVE_TIMEGM))
  108. AC_SUBST(HAVE_TIMEGM)
  109. dnl Check the sizes etc. of the architecture
  110. dnl This is stupid, it should just use the AC macros like it does below
  111. dnl Cross compilers can either get a real C library or preload the cache
  112. dnl with their size values.
  113. changequote(,)
  114. archline="`awk \" ! /^#|^\\\$/ {if (match(\\\"$archset\\\",\\\$1)) {print; exit}}\" $srcdir/buildlib/sizetable | cut -f 2- -d ' '`"
  115. if test "x$archline" != "x"; then
  116. changequote([,])
  117. set $archline
  118. if test "$1" = "little"; then
  119. ac_cv_c_bigendian=no
  120. else
  121. ac_cv_c_bigendian=yes
  122. fi
  123. size_char=$2
  124. size_int=$3
  125. size_short=$4
  126. size_long=$5
  127. fi
  128. dnl I wonder what AC_C_BIGENDIAN does if you cross compile...
  129. dnl This is probably bogus, as above we only care if we have to build our own
  130. dnl C9x types.
  131. if test "$cross_compiling" = "yes" -a "x$archline" = "x"; then
  132. AC_MSG_ERROR(When cross compiling, architecture must be present in sizetable)
  133. fi
  134. AC_C_BIGENDIAN
  135. dnl We do not need this if we have inttypes!
  136. HAVE_C9X=yes
  137. if test x"$apt_cv_c9x_ints" = x"no"; then
  138. AC_CHECK_SIZEOF(char,$size_char)
  139. AC_CHECK_SIZEOF(int,$size_int)
  140. AC_CHECK_SIZEOF(short,$size_short)
  141. AC_CHECK_SIZEOF(long,$size_long)
  142. HAVE_C9X=
  143. AC_SUBST(HAVE_C9X)
  144. fi
  145. dnl HP-UX sux..
  146. AC_MSG_CHECKING(for missing socklen_t)
  147. AC_EGREP_HEADER(socklen_t, sys/socket.h,[AC_MSG_RESULT(no)],[
  148. AC_DEFINE(NEED_SOCKLEN_T_DEFINE)
  149. NEED_SOCKLEN_T_DEFINE=yes
  150. AC_MSG_RESULT(missing.)])
  151. AC_SUBST(NEED_SOCKLEN_T_DEFINE)
  152. dnl HP-UX needs -d_XOPEN_SOURCE_EXTENDED for h_errno
  153. AC_MSG_CHECKING(for h_errno)
  154. AC_EGREP_HEADER(h_errno, netdb.h, [AC_MSG_RESULT(normal)],
  155. [CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
  156. AC_EGREP_HEADER(h_errno, netdb.h,
  157. [AC_MSG_RESULT(needs _XOPEN_SOURCE_EXTENDED)],
  158. [AC_MSG_ERROR("not found.")])
  159. ])
  160. dnl Check for debiandoc
  161. AC_PATH_PROG(DEBIANDOC_HTML,debiandoc2html)
  162. AC_PATH_PROG(DEBIANDOC_TEXT,debiandoc2text)
  163. dnl Check for doxygen
  164. AC_PATH_PROG(DOXYGEN, doxygen)
  165. dnl Check for the XSLTProc tool needed to build man pages together with po4a
  166. AC_PATH_PROG(XSLTPROC,xsltproc)
  167. dnl Check for the po4a tool needed to build man pages
  168. AC_PATH_PROG(PO4A,po4a)
  169. dnl Check for graphviz
  170. AC_CHECK_PROG([HAVE_DOT], [dot], [YES], [NO])
  171. AC_PATH_PROG([DOT], [dot], [])
  172. DOTDIR=$(dirname $DOT)
  173. AC_SUBST(DOTDIR)
  174. ah_NUM_PROCS
  175. ah_GCC3DEP
  176. dnl It used to be that the user could select translations and that could get
  177. dnl passed to the makefiles, but now that can only work if you use special
  178. dnl gettext approved makefiles, so this feature is unsupported by this.
  179. 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"
  180. AM_GNU_GETTEXT(external)
  181. if test x"$USE_NLS" = "xyes"; then
  182. AC_DEFINE(USE_NLS)
  183. fi
  184. AC_SUBST(USE_NLS)
  185. AC_PATH_PROG(BASH, bash)
  186. AC_OUTPUT(environment.mak:buildlib/environment.mak.in makefile:buildlib/makefile.in doc/Doxyfile:doc/Doxyfile.in,make -s dirs)