configure.in 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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. dnl -- SET THIS TO THE RELEASE VERSION --
  17. AC_DEFINE_UNQUOTED(VERSION,"0.7.16")
  18. PACKAGE="apt"
  19. AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE")
  20. AC_SUBST(PACKAGE)
  21. dnl Check the archs, we want the target type.
  22. AC_CANONICAL_SYSTEM
  23. dnl Check our C compiler
  24. AC_CHECK_TOOL_PREFIX
  25. AC_PROG_CC
  26. AC_ISC_POSIX
  27. dnl Check for other programs
  28. AC_PROG_CXX
  29. AC_PROG_CPP
  30. AC_PROG_RANLIB
  31. AC_CHECK_TOOL(AR,ar,"ar")
  32. dnl Checks for sockets
  33. SAVE_LIBS="$LIBS"
  34. LIBS=""
  35. AC_SEARCH_LIBS(gethostbyname,nsl)
  36. AC_SEARCH_LIBS(connect,socket)
  37. SOCKETLIBS="$LIBS"
  38. AC_SUBST(SOCKETLIBS)
  39. LIBS="$SAVE_LIBS"
  40. dnl Checks for pthread -- disabled due to glibc bugs jgg
  41. dnl AC_CHECK_LIB(pthread, pthread_create,[AC_DEFINE(HAVE_PTHREAD) PTHREADLIB="-lpthread"])
  42. AC_SUBST(PTHREADLIB)
  43. dnl if test "$PTHREADLIB" != "-lpthread"; then
  44. dnl AC_MSG_ERROR(failed: I need posix threads, pthread)
  45. dnl fi
  46. dnl Check for BDB
  47. saveLIBS="$LIBS"
  48. LIBS="$LIBS -ldb"
  49. AC_CHECK_HEADER(db.h,
  50. [AC_MSG_CHECKING(if we can link against BerkeleyDB)
  51. AC_LINK_IFELSE(
  52. [AC_LANG_PROGRAM(
  53. [#include <db.h>],
  54. [int r, s, t; db_version(&r, &s, &t);]
  55. )],
  56. [AC_DEFINE(HAVE_BDB)
  57. BDBLIB="-ldb"
  58. AC_MSG_RESULT(yes)],
  59. [BDBLIB=""
  60. AC_MSG_RESULT(no)]
  61. )]
  62. )
  63. LIBS="$saveLIBS"
  64. AC_CHECK_LIB(curl, curl_easy_init,
  65. [AC_CHECK_HEADER(curl/curl.h,
  66. curl_ok=yes,
  67. curl_ok=no)],
  68. AC_MSG_ERROR([failed: I need CURL due https support]),
  69. )
  70. AC_SUBST(BDBLIB)
  71. dnl Converts the ARCH to be something singular for this general CPU family
  72. dnl This is often the dpkg architecture string.
  73. dnl First check against the full canonical canoncial-system-type in $target
  74. dnl and if that fails, just look for the cpu
  75. AC_MSG_CHECKING(debian architecture)
  76. archset="`dpkg-architecture -qDEB_HOST_ARCH`"
  77. if test "x$archset" = "x"; then
  78. AC_MSG_ERROR([failed: use --host= or output from dpkg-architecture])
  79. fi
  80. AC_MSG_RESULT($archset)
  81. AC_DEFINE_UNQUOTED(COMMON_ARCH,"$archset")
  82. dnl We use C99 types if at all possible
  83. AC_CACHE_CHECK([for C99 integer types],c9x_ints,[
  84. AC_TRY_COMPILE([#include <inttypes.h>],
  85. [uint8_t Foo1;uint16_t Foo2;uint32_t Foo3;],
  86. c9x_ints=yes,c9x_ints=no)])
  87. dnl Single Unix Spec statvfs
  88. AC_CHECK_FUNC(statvfs,[HAVE_STATVFS=yes])
  89. AC_SUBST(HAVE_STATVFS)
  90. dnl Arg, linux and bsd put their statfs function in different places
  91. if test x"$HAVE_STATVFS" != x"yes"; then
  92. AC_EGREP_HEADER(statfs,sys/vfs.h,[AC_DEFINE(HAVE_VFS_H)],[
  93. AC_EGREP_HEADER(statfs,sys/mount.h,[AC_DEFINE(HAVE_MOUNT_H)],[AC_MSG_ERROR(failed: Need statvfs)])
  94. ])
  95. fi
  96. dnl We should use the real timegm function if we have it.
  97. AC_CHECK_FUNC(timegm,AC_DEFINE(HAVE_TIMEGM))
  98. AC_SUBST(HAVE_TIMEGM)
  99. dnl Check the sizes etc. of the architecture
  100. dnl This is stupid, it should just use the AC macros like it does below
  101. dnl Cross compilers can either get a real C library or preload the cache
  102. dnl with their size values.
  103. changequote(,)
  104. archline="`awk \" ! /^#|^\\\$/ {if (match(\\\"$archset\\\",\\\$1)) {print; exit}}\" $srcdir/buildlib/sizetable | cut -f 2- -d ' '`"
  105. if test "x$archline" != "x"; then
  106. changequote([,])
  107. set $archline
  108. if test "$1" = "little"; then
  109. ac_cv_c_bigendian=no
  110. else
  111. ac_cv_c_bigendian=yes
  112. fi
  113. size_char=$2
  114. size_int=$3
  115. size_short=$4
  116. size_long=$5
  117. fi
  118. dnl I wonder what AC_C_BIGENDIAN does if you cross compile...
  119. dnl This is probably bogus, as above we only care if we have to build our own
  120. dnl C9x types.
  121. if test "$cross_compiling" = "yes" -a "x$archline" = "x"; then
  122. AC_MSG_ERROR(When cross compiling, architecture must be present in sizetable)
  123. fi
  124. AC_C_BIGENDIAN
  125. dnl We do not need this if we have inttypes!
  126. HAVE_C9X=yes
  127. if test x"$c9x_ints" = x"no"; then
  128. AC_CHECK_SIZEOF(char,$size_char)
  129. AC_CHECK_SIZEOF(int,$size_int)
  130. AC_CHECK_SIZEOF(short,$size_short)
  131. AC_CHECK_SIZEOF(long,$size_long)
  132. HAVE_C9X=
  133. AC_SUBST(HAVE_C9X)
  134. fi
  135. dnl HP-UX sux..
  136. AC_MSG_CHECKING(for missing socklen_t)
  137. AC_EGREP_HEADER(socklen_t, sys/socket.h,[AC_MSG_RESULT(no)],[
  138. AC_DEFINE(NEED_SOCKLEN_T_DEFINE)
  139. NEED_SOCKLEN_T_DEFINE=yes
  140. AC_MSG_RESULT(missing.)])
  141. AC_SUBST(NEED_SOCKLEN_T_DEFINE)
  142. dnl HP-UX needs -d_XOPEN_SOURCE_EXTENDED for h_errno
  143. AC_MSG_CHECKING(for h_errno)
  144. AC_EGREP_HEADER(h_errno, netdb.h, [AC_MSG_RESULT(normal)],
  145. [CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
  146. AC_EGREP_HEADER(h_errno, netdb.h,
  147. [AC_MSG_RESULT(needs _XOPEN_SOURCE_EXTENDED)],
  148. [AC_MSG_ERROR("not found.")])
  149. ])
  150. dnl Check for debiandoc
  151. AC_PATH_PROG(DEBIANDOC_HTML,debiandoc2html)
  152. AC_PATH_PROG(DEBIANDOC_TEXT,debiandoc2text)
  153. dnl Check for doxygen
  154. AC_PATH_PROG(DOXYGEN, doxygen)
  155. dnl Check for the SGML tools needed to build man pages
  156. AC_PATH_PROG(DOCBOOK2MAN,docbook2man)
  157. dnl Check for the XML tools needed to build man pages
  158. AC_PATH_PROG(XMLTO,xmlto)
  159. dnl Check for graphviz
  160. AC_CHECK_PROG([HAVE_DOT], [dot], [YES], [NO])
  161. AC_PATH_PROG([DOT], [dot], [])
  162. DOTDIR=$(dirname $DOT)
  163. AC_SUBST(DOTDIR)
  164. dnl Check for YODL
  165. dnl AC_CHECK_PROG(YODL_MAN,yodl2man,"yes","")
  166. ah_NUM_PROCS
  167. rc_GLIBC_VER
  168. rc_LIBSTDCPP_VER
  169. ah_GCC3DEP
  170. dnl It used to be that the user could select translations and that could get
  171. dnl passed to the makefiles, but now that can only work if you use special
  172. dnl gettext approved makefiles, so this feature is unsupported by this.
  173. ALL_LINGUAS="bg bs ca cs cy da de dz el en_GB 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"
  174. AM_GNU_GETTEXT(external)
  175. if test x"$USE_NLS" = "xyes"; then
  176. AC_DEFINE(USE_NLS)
  177. fi
  178. AC_SUBST(USE_NLS)
  179. AC_PATH_PROG(BASH, bash)
  180. AC_OUTPUT(environment.mak:buildlib/environment.mak.in makefile:buildlib/makefile.in doc/Doxyfile,make -s dirs)