configure.in 6.6 KB

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