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