configure.in 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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.25")
  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],apt_cv_c9x_ints,[
  84. AC_TRY_COMPILE([#include <inttypes.h>],
  85. [uint8_t Foo1;uint16_t Foo2;uint32_t Foo3;],
  86. apt_cv_c9x_ints=yes,apt_cv_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. AC_CHECK_MEMBERS([struct statfs.f_type],,,
  97. [$ac_includes_default
  98. #include <sys/vfs.h>])
  99. dnl We should use the real timegm function if we have it.
  100. AC_CHECK_FUNC(timegm,AC_DEFINE(HAVE_TIMEGM))
  101. AC_SUBST(HAVE_TIMEGM)
  102. dnl Check the sizes etc. of the architecture
  103. dnl This is stupid, it should just use the AC macros like it does below
  104. dnl Cross compilers can either get a real C library or preload the cache
  105. dnl with their size values.
  106. changequote(,)
  107. archline="`awk \" ! /^#|^\\\$/ {if (match(\\\"$archset\\\",\\\$1)) {print; exit}}\" $srcdir/buildlib/sizetable | cut -f 2- -d ' '`"
  108. if test "x$archline" != "x"; then
  109. changequote([,])
  110. set $archline
  111. if test "$1" = "little"; then
  112. ac_cv_c_bigendian=no
  113. else
  114. ac_cv_c_bigendian=yes
  115. fi
  116. size_char=$2
  117. size_int=$3
  118. size_short=$4
  119. size_long=$5
  120. fi
  121. dnl I wonder what AC_C_BIGENDIAN does if you cross compile...
  122. dnl This is probably bogus, as above we only care if we have to build our own
  123. dnl C9x types.
  124. if test "$cross_compiling" = "yes" -a "x$archline" = "x"; then
  125. AC_MSG_ERROR(When cross compiling, architecture must be present in sizetable)
  126. fi
  127. AC_C_BIGENDIAN
  128. dnl We do not need this if we have inttypes!
  129. HAVE_C9X=yes
  130. if test x"$apt_cv_c9x_ints" = x"no"; then
  131. AC_CHECK_SIZEOF(char,$size_char)
  132. AC_CHECK_SIZEOF(int,$size_int)
  133. AC_CHECK_SIZEOF(short,$size_short)
  134. AC_CHECK_SIZEOF(long,$size_long)
  135. HAVE_C9X=
  136. AC_SUBST(HAVE_C9X)
  137. fi
  138. dnl HP-UX sux..
  139. AC_MSG_CHECKING(for missing socklen_t)
  140. AC_EGREP_HEADER(socklen_t, sys/socket.h,[AC_MSG_RESULT(no)],[
  141. AC_DEFINE(NEED_SOCKLEN_T_DEFINE)
  142. NEED_SOCKLEN_T_DEFINE=yes
  143. AC_MSG_RESULT(missing.)])
  144. AC_SUBST(NEED_SOCKLEN_T_DEFINE)
  145. dnl HP-UX needs -d_XOPEN_SOURCE_EXTENDED for h_errno
  146. AC_MSG_CHECKING(for h_errno)
  147. AC_EGREP_HEADER(h_errno, netdb.h, [AC_MSG_RESULT(normal)],
  148. [CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
  149. AC_EGREP_HEADER(h_errno, netdb.h,
  150. [AC_MSG_RESULT(needs _XOPEN_SOURCE_EXTENDED)],
  151. [AC_MSG_ERROR("not found.")])
  152. ])
  153. dnl Check for debiandoc
  154. AC_PATH_PROG(DEBIANDOC_HTML,debiandoc2html)
  155. AC_PATH_PROG(DEBIANDOC_TEXT,debiandoc2text)
  156. dnl Check for doxygen
  157. AC_PATH_PROG(DOXYGEN, doxygen)
  158. dnl Check for the XSLTProc tool needed to build man pages together with po4a
  159. AC_PATH_PROG(XSLTPROC,xsltproc)
  160. dnl Check for the po4a tool needed to build man pages
  161. AC_PATH_PROG(PO4A,po4a)
  162. dnl Check for graphviz
  163. AC_CHECK_PROG([HAVE_DOT], [dot], [YES], [NO])
  164. AC_PATH_PROG([DOT], [dot], [])
  165. DOTDIR=$(dirname $DOT)
  166. AC_SUBST(DOTDIR)
  167. ah_NUM_PROCS
  168. ah_GCC3DEP
  169. dnl It used to be that the user could select translations and that could get
  170. dnl passed to the makefiles, but now that can only work if you use special
  171. dnl gettext approved makefiles, so this feature is unsupported by this.
  172. 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"
  173. AM_GNU_GETTEXT(external)
  174. if test x"$USE_NLS" = "xyes"; then
  175. AC_DEFINE(USE_NLS)
  176. fi
  177. AC_SUBST(USE_NLS)
  178. AC_PATH_PROG(BASH, bash)
  179. AC_OUTPUT(environment.mak:buildlib/environment.mak.in makefile:buildlib/makefile.in doc/Doxyfile,make -s dirs)