* apt-pkg/contrib/strutl.cc:
[ntk/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"
4d74894b 21PACKAGE_VERSION="0.9.2"
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
c4997486 91HAVE_ZLIB=no
bcc27ad8 92AC_CHECK_LIB(z, gzopen,
c4997486 93 [AC_CHECK_HEADER(zlib.h, [HAVE_ZLIB=yes], AC_MSG_ERROR([failed: zlib.h not found]))],
bcc27ad8 94 AC_MSG_ERROR([failed: Need libz]))
c4997486
DK
95AC_SUBST(HAVE_ZLIB)
96if test "x$HAVE_ZLIB" = "xyes"; then
97 AC_DEFINE(HAVE_ZLIB)
98fi
99
100HAVE_BZ2=no
101AC_CHECK_LIB(bz2, BZ2_bzopen,[AC_CHECK_HEADER(bzlib.h, [HAVE_BZ2=yes], [])], [])
102AC_SUBST(HAVE_BZ2)
103if test "x$HAVE_BZ2" = "xyes"; then
104 AC_DEFINE(HAVE_BZ2)
105fi
bcc27ad8 106
b2e465d6
AL
107dnl Converts the ARCH to be something singular for this general CPU family
108dnl This is often the dpkg architecture string.
0fa17428
MV
109dnl First check against the full canonical canoncial-system-type in $target
110dnl and if that fails, just look for the cpu
5b28c804 111AC_MSG_CHECKING(debian architecture)
0fbb494b 112archset="`dpkg-architecture -qDEB_HOST_ARCH`"
d7bccc73 113if test "x$archset" = "x"; then
0fbb494b 114 AC_MSG_ERROR([failed: use --host= or output from dpkg-architecture])
d7bccc73
AL
115fi
116AC_MSG_RESULT($archset)
5b28c804 117AC_DEFINE_UNQUOTED(COMMON_ARCH,"$archset")
b2e465d6
AL
118
119dnl We use C99 types if at all possible
46e39c8e 120AC_CACHE_CHECK([for C99 integer types],apt_cv_c9x_ints,[
021988ea 121 AC_TRY_COMPILE([#include <inttypes.h>],
1ae93c94 122 [uint8_t Foo1;uint16_t Foo2;uint32_t Foo3;],
46e39c8e 123 apt_cv_c9x_ints=yes,apt_cv_c9x_ints=no)])
021988ea 124
101030ab 125dnl Single Unix Spec statvfs
f58a97d3 126AC_CHECK_FUNC(statvfs,[HAVE_STATVFS=yes])
101030ab
AL
127AC_SUBST(HAVE_STATVFS)
128
b819effd
AL
129dnl Arg, linux and bsd put their statfs function in different places
130if test x"$HAVE_STATVFS" != x"yes"; then
131 AC_EGREP_HEADER(statfs,sys/vfs.h,[AC_DEFINE(HAVE_VFS_H)],[
132 AC_EGREP_HEADER(statfs,sys/mount.h,[AC_DEFINE(HAVE_MOUNT_H)],[AC_MSG_ERROR(failed: Need statvfs)])
133 ])
134fi
135
f64196e8
DK
136AC_CHECK_MEMBERS([struct statfs.f_type],,,
137 [$ac_includes_default
138 #include <sys/vfs.h>])
139
41b6caf4
AL
140dnl We should use the real timegm function if we have it.
141AC_CHECK_FUNC(timegm,AC_DEFINE(HAVE_TIMEGM))
142AC_SUBST(HAVE_TIMEGM)
143
83ab33fc 144dnl Check the sizes etc. of the architecture
1cecba4d
AL
145dnl This is stupid, it should just use the AC macros like it does below
146dnl Cross compilers can either get a real C library or preload the cache
147dnl with their size values.
83ab33fc 148changequote(,)
b2e465d6 149archline="`awk \" ! /^#|^\\\$/ {if (match(\\\"$archset\\\",\\\$1)) {print; exit}}\" $srcdir/buildlib/sizetable | cut -f 2- -d ' '`"
1cecba4d 150if test "x$archline" != "x"; then
83ab33fc
AL
151 changequote([,])
152 set $archline
153 if test "$1" = "little"; then
154 ac_cv_c_bigendian=no
155 else
156 ac_cv_c_bigendian=yes
021988ea 157 fi
83ab33fc
AL
158 size_char=$2
159 size_int=$3
160 size_short=$4
161 size_long=$5
162fi
021988ea 163
1cecba4d 164dnl I wonder what AC_C_BIGENDIAN does if you cross compile...
b2e465d6
AL
165dnl This is probably bogus, as above we only care if we have to build our own
166dnl C9x types.
1cecba4d 167if test "$cross_compiling" = "yes" -a "x$archline" = "x"; then
83ab33fc
AL
168 AC_MSG_ERROR(When cross compiling, architecture must be present in sizetable)
169fi
170AC_C_BIGENDIAN
650faab0 171
1cecba4d 172dnl We do not need this if we have inttypes!
51761e5e 173HAVE_C9X=yes
46e39c8e 174if test x"$apt_cv_c9x_ints" = x"no"; then
021988ea
AL
175 AC_CHECK_SIZEOF(char,$size_char)
176 AC_CHECK_SIZEOF(int,$size_int)
177 AC_CHECK_SIZEOF(short,$size_short)
178 AC_CHECK_SIZEOF(long,$size_long)
51761e5e
AL
179
180 HAVE_C9X=
181 AC_SUBST(HAVE_C9X)
021988ea 182fi
d7bccc73 183
1cecba4d
AL
184dnl HP-UX sux..
185AC_MSG_CHECKING(for missing socklen_t)
186AC_EGREP_HEADER(socklen_t, sys/socket.h,[AC_MSG_RESULT(no)],[
53d3d263 187 AC_DEFINE(NEED_SOCKLEN_T_DEFINE)
1cecba4d
AL
188 NEED_SOCKLEN_T_DEFINE=yes
189 AC_MSG_RESULT(missing.)])
190AC_SUBST(NEED_SOCKLEN_T_DEFINE)
53d3d263 191
1cecba4d 192dnl HP-UX needs -d_XOPEN_SOURCE_EXTENDED for h_errno
53d3d263 193AC_MSG_CHECKING(for h_errno)
1cecba4d
AL
194AC_EGREP_HEADER(h_errno, netdb.h, [AC_MSG_RESULT(normal)],
195 [CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
196 AC_EGREP_HEADER(h_errno, netdb.h,
197 [AC_MSG_RESULT(needs _XOPEN_SOURCE_EXTENDED)],
198 [AC_MSG_ERROR("not found.")])
199 ])
53d3d263 200
d7bccc73 201dnl Check for debiandoc
b2e465d6
AL
202AC_PATH_PROG(DEBIANDOC_HTML,debiandoc2html)
203AC_PATH_PROG(DEBIANDOC_TEXT,debiandoc2text)
204
3174e150
MV
205dnl Check for doxygen
206AC_PATH_PROG(DOXYGEN, doxygen)
207
b01390ea
DK
208dnl Check for the XSLTProc tool needed to build man pages together with po4a
209AC_PATH_PROG(XSLTPROC,xsltproc)
210
211dnl Check for the po4a tool needed to build man pages
212AC_PATH_PROG(PO4A,po4a)
213
3174e150
MV
214dnl Check for graphviz
215AC_CHECK_PROG([HAVE_DOT], [dot], [YES], [NO])
216AC_PATH_PROG([DOT], [dot], [])
217DOTDIR=$(dirname $DOT)
218AC_SUBST(DOTDIR)
219
f43579d1 220ah_NUM_PROCS
c29a99d7 221ah_GCC3DEP
f43579d1 222
ec2f559a
AL
223dnl It used to be that the user could select translations and that could get
224dnl passed to the makefiles, but now that can only work if you use special
225dnl gettext approved makefiles, so this feature is unsupported by this.
c4588ad2 226ALL_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
227AM_GNU_GETTEXT(external)
228if test x"$USE_NLS" = "xyes"; then
229 AC_DEFINE(USE_NLS)
230fi
231AC_SUBST(USE_NLS)
80948457
AL
232AC_PATH_PROG(BASH, bash)
233
9179f697 234AC_OUTPUT(environment.mak:buildlib/environment.mak.in makefile:buildlib/makefile.in doc/Doxyfile:doc/Doxyfile.in,make -s dirs)