]> git.saurik.com Git - apt.git/blame - configure.in
* apt-inst/database.{cc,h}, apt-inst/deb/dpkgdb.{cc,h}:
[apt.git] / configure.in
CommitLineData
779e5b00 1ad
d7bccc73
AL
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
93bf083d
AL
12dnl 'make -f Makefile startup' will generate the configure file from
13dnl configure.in correctly and can be run at any time
14
c9569a1e 15AC_PREREQ(2.50)
d7bccc73 16AC_INIT(configure.in)
066427d0 17AC_CONFIG_AUX_DIR(buildlib)
b0c76450 18AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in)
d7bccc73 19
80948457 20PACKAGE="apt"
9179f697 21PACKAGE_VERSION="0.8.16~exp14"
80948457 22AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE")
9179f697 23AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION")
80948457 24AC_SUBST(PACKAGE)
9179f697 25AC_SUBST(PACKAGE_VERSION)
e1b74f61 26
b2e465d6
AL
27dnl Check the archs, we want the target type.
28AC_CANONICAL_SYSTEM
29
d7bccc73 30dnl Check our C compiler
abb9b874 31AC_CHECK_TOOL_PREFIX
f43579d1 32AC_PROG_CC
d7bccc73
AL
33AC_ISC_POSIX
34
650faab0
DK
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
d7bccc73 39dnl Check for other programs
f43579d1 40AC_PROG_CXX
b819effd
AL
41AC_PROG_CPP
42AC_PROG_RANLIB
43AC_CHECK_TOOL(AR,ar,"ar")
d7bccc73 44
abb9b874
AL
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"
abb9b874 53
b2e465d6
AL
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
c9569a1e
AL
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
9c5fe9a0
OS
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
c9569a1e 89AC_SUBST(BDBLIB)
e1b74f61 90
bcc27ad8 91AC_CHECK_LIB(z, gzopen,
92 [AC_CHECK_HEADER(zlib.h, [], AC_MSG_ERROR([failed: zlib.h not found]))],
93 AC_MSG_ERROR([failed: Need libz]))
94
b2e465d6
AL
95dnl Converts the ARCH to be something singular for this general CPU family
96dnl This is often the dpkg architecture string.
0fa17428
MV
97dnl First check against the full canonical canoncial-system-type in $target
98dnl and if that fails, just look for the cpu
5b28c804 99AC_MSG_CHECKING(debian architecture)
0fbb494b 100archset="`dpkg-architecture -qDEB_HOST_ARCH`"
d7bccc73 101if test "x$archset" = "x"; then
0fbb494b 102 AC_MSG_ERROR([failed: use --host= or output from dpkg-architecture])
d7bccc73
AL
103fi
104AC_MSG_RESULT($archset)
5b28c804 105AC_DEFINE_UNQUOTED(COMMON_ARCH,"$archset")
b2e465d6
AL
106
107dnl We use C99 types if at all possible
46e39c8e 108AC_CACHE_CHECK([for C99 integer types],apt_cv_c9x_ints,[
021988ea 109 AC_TRY_COMPILE([#include <inttypes.h>],
1ae93c94 110 [uint8_t Foo1;uint16_t Foo2;uint32_t Foo3;],
46e39c8e 111 apt_cv_c9x_ints=yes,apt_cv_c9x_ints=no)])
021988ea 112
101030ab 113dnl Single Unix Spec statvfs
f58a97d3 114AC_CHECK_FUNC(statvfs,[HAVE_STATVFS=yes])
101030ab
AL
115AC_SUBST(HAVE_STATVFS)
116
b819effd
AL
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
f64196e8
DK
124AC_CHECK_MEMBERS([struct statfs.f_type],,,
125 [$ac_includes_default
126 #include <sys/vfs.h>])
127
41b6caf4
AL
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
83ab33fc 132dnl Check the sizes etc. of the architecture
1cecba4d
AL
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.
83ab33fc 136changequote(,)
b2e465d6 137archline="`awk \" ! /^#|^\\\$/ {if (match(\\\"$archset\\\",\\\$1)) {print; exit}}\" $srcdir/buildlib/sizetable | cut -f 2- -d ' '`"
1cecba4d 138if test "x$archline" != "x"; then
83ab33fc
AL
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
021988ea 145 fi
83ab33fc
AL
146 size_char=$2
147 size_int=$3
148 size_short=$4
149 size_long=$5
150fi
021988ea 151
1cecba4d 152dnl I wonder what AC_C_BIGENDIAN does if you cross compile...
b2e465d6
AL
153dnl This is probably bogus, as above we only care if we have to build our own
154dnl C9x types.
1cecba4d 155if test "$cross_compiling" = "yes" -a "x$archline" = "x"; then
83ab33fc
AL
156 AC_MSG_ERROR(When cross compiling, architecture must be present in sizetable)
157fi
158AC_C_BIGENDIAN
650faab0 159
1cecba4d 160dnl We do not need this if we have inttypes!
51761e5e 161HAVE_C9X=yes
46e39c8e 162if test x"$apt_cv_c9x_ints" = x"no"; then
021988ea
AL
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)
51761e5e
AL
167
168 HAVE_C9X=
169 AC_SUBST(HAVE_C9X)
021988ea 170fi
d7bccc73 171
1cecba4d
AL
172dnl HP-UX sux..
173AC_MSG_CHECKING(for missing socklen_t)
174AC_EGREP_HEADER(socklen_t, sys/socket.h,[AC_MSG_RESULT(no)],[
53d3d263 175 AC_DEFINE(NEED_SOCKLEN_T_DEFINE)
1cecba4d
AL
176 NEED_SOCKLEN_T_DEFINE=yes
177 AC_MSG_RESULT(missing.)])
178AC_SUBST(NEED_SOCKLEN_T_DEFINE)
53d3d263 179
1cecba4d 180dnl HP-UX needs -d_XOPEN_SOURCE_EXTENDED for h_errno
53d3d263 181AC_MSG_CHECKING(for h_errno)
1cecba4d
AL
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 ])
53d3d263 188
d7bccc73 189dnl Check for debiandoc
b2e465d6
AL
190AC_PATH_PROG(DEBIANDOC_HTML,debiandoc2html)
191AC_PATH_PROG(DEBIANDOC_TEXT,debiandoc2text)
192
3174e150
MV
193dnl Check for doxygen
194AC_PATH_PROG(DOXYGEN, doxygen)
195
b01390ea
DK
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
3174e150
MV
202dnl Check for graphviz
203AC_CHECK_PROG([HAVE_DOT], [dot], [YES], [NO])
204AC_PATH_PROG([DOT], [dot], [])
205DOTDIR=$(dirname $DOT)
206AC_SUBST(DOTDIR)
207
f43579d1 208ah_NUM_PROCS
c29a99d7 209ah_GCC3DEP
f43579d1 210
ec2f559a
AL
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.
c4588ad2 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"
ec2f559a
AL
215AM_GNU_GETTEXT(external)
216if test x"$USE_NLS" = "xyes"; then
217 AC_DEFINE(USE_NLS)
218fi
219AC_SUBST(USE_NLS)
80948457
AL
220AC_PATH_PROG(BASH, bash)
221
9179f697 222AC_OUTPUT(environment.mak:buildlib/environment.mak.in makefile:buildlib/makefile.in doc/Doxyfile:doc/Doxyfile.in,make -s dirs)