apply the correct metadata (package, version, mail) to all pot and po files
[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"
89fd753d 21PACKAGE_VERSION="0.9.4"
1c46aec4 22PACKAGE_MAIL="APT Development Team <deity@lists.debian.org>"
80948457 23AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE")
9179f697 24AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION")
1c46aec4 25AC_DEFINE_UNQUOTED(PACKAGE_MAIL,"$PACKAGE_MAIL")
80948457 26AC_SUBST(PACKAGE)
9179f697 27AC_SUBST(PACKAGE_VERSION)
1c46aec4 28AC_SUBST(PACKAGE_MAIL)
e1b74f61 29
b2e465d6
AL
30dnl Check the archs, we want the target type.
31AC_CANONICAL_SYSTEM
32
d7bccc73 33dnl Check our C compiler
abb9b874 34AC_CHECK_TOOL_PREFIX
f43579d1 35AC_PROG_CC
d7bccc73
AL
36AC_ISC_POSIX
37
650faab0
DK
38dnl check for large file support and enable it if possible
39dnl do this early as other stuff might depend on it
40AC_SYS_LARGEFILE
41
d7bccc73 42dnl Check for other programs
f43579d1 43AC_PROG_CXX
b819effd
AL
44AC_PROG_CPP
45AC_PROG_RANLIB
46AC_CHECK_TOOL(AR,ar,"ar")
d7bccc73 47
abb9b874
AL
48dnl Checks for sockets
49SAVE_LIBS="$LIBS"
50LIBS=""
51AC_SEARCH_LIBS(gethostbyname,nsl)
52AC_SEARCH_LIBS(connect,socket)
53SOCKETLIBS="$LIBS"
54AC_SUBST(SOCKETLIBS)
55LIBS="$SAVE_LIBS"
abb9b874 56
b2e465d6
AL
57dnl Checks for pthread -- disabled due to glibc bugs jgg
58dnl AC_CHECK_LIB(pthread, pthread_create,[AC_DEFINE(HAVE_PTHREAD) PTHREADLIB="-lpthread"])
59AC_SUBST(PTHREADLIB)
60dnl if test "$PTHREADLIB" != "-lpthread"; then
61dnl AC_MSG_ERROR(failed: I need posix threads, pthread)
62dnl fi
63
c9569a1e
AL
64dnl Check for BDB
65saveLIBS="$LIBS"
66LIBS="$LIBS -ldb"
67
68AC_CHECK_HEADER(db.h,
69 [AC_MSG_CHECKING(if we can link against BerkeleyDB)
70 AC_LINK_IFELSE(
71 [AC_LANG_PROGRAM(
72 [#include <db.h>],
73 [int r, s, t; db_version(&r, &s, &t);]
74 )],
75 [AC_DEFINE(HAVE_BDB)
76 BDBLIB="-ldb"
77 AC_MSG_RESULT(yes)],
78 [BDBLIB=""
79 AC_MSG_RESULT(no)]
80 )]
81)
82
83LIBS="$saveLIBS"
84
9c5fe9a0
OS
85AC_CHECK_LIB(curl, curl_easy_init,
86 [AC_CHECK_HEADER(curl/curl.h,
87 curl_ok=yes,
88 curl_ok=no)],
89 AC_MSG_ERROR([failed: I need CURL due https support]),
90)
91
c9569a1e 92AC_SUBST(BDBLIB)
e1b74f61 93
c4997486 94HAVE_ZLIB=no
bcc27ad8 95AC_CHECK_LIB(z, gzopen,
c4997486 96 [AC_CHECK_HEADER(zlib.h, [HAVE_ZLIB=yes], AC_MSG_ERROR([failed: zlib.h not found]))],
bcc27ad8 97 AC_MSG_ERROR([failed: Need libz]))
c4997486
DK
98AC_SUBST(HAVE_ZLIB)
99if test "x$HAVE_ZLIB" = "xyes"; then
100 AC_DEFINE(HAVE_ZLIB)
101fi
102
103HAVE_BZ2=no
104AC_CHECK_LIB(bz2, BZ2_bzopen,[AC_CHECK_HEADER(bzlib.h, [HAVE_BZ2=yes], [])], [])
105AC_SUBST(HAVE_BZ2)
106if test "x$HAVE_BZ2" = "xyes"; then
107 AC_DEFINE(HAVE_BZ2)
108fi
bcc27ad8 109
b2e465d6
AL
110dnl Converts the ARCH to be something singular for this general CPU family
111dnl This is often the dpkg architecture string.
0fa17428
MV
112dnl First check against the full canonical canoncial-system-type in $target
113dnl and if that fails, just look for the cpu
5b28c804 114AC_MSG_CHECKING(debian architecture)
0fbb494b 115archset="`dpkg-architecture -qDEB_HOST_ARCH`"
d7bccc73 116if test "x$archset" = "x"; then
0fbb494b 117 AC_MSG_ERROR([failed: use --host= or output from dpkg-architecture])
d7bccc73
AL
118fi
119AC_MSG_RESULT($archset)
5b28c804 120AC_DEFINE_UNQUOTED(COMMON_ARCH,"$archset")
b2e465d6
AL
121
122dnl We use C99 types if at all possible
46e39c8e 123AC_CACHE_CHECK([for C99 integer types],apt_cv_c9x_ints,[
021988ea 124 AC_TRY_COMPILE([#include <inttypes.h>],
1ae93c94 125 [uint8_t Foo1;uint16_t Foo2;uint32_t Foo3;],
46e39c8e 126 apt_cv_c9x_ints=yes,apt_cv_c9x_ints=no)])
021988ea 127
101030ab 128dnl Single Unix Spec statvfs
f58a97d3 129AC_CHECK_FUNC(statvfs,[HAVE_STATVFS=yes])
101030ab
AL
130AC_SUBST(HAVE_STATVFS)
131
b819effd
AL
132dnl Arg, linux and bsd put their statfs function in different places
133if test x"$HAVE_STATVFS" != x"yes"; then
134 AC_EGREP_HEADER(statfs,sys/vfs.h,[AC_DEFINE(HAVE_VFS_H)],[
135 AC_EGREP_HEADER(statfs,sys/mount.h,[AC_DEFINE(HAVE_MOUNT_H)],[AC_MSG_ERROR(failed: Need statvfs)])
136 ])
137fi
138
f64196e8
DK
139AC_CHECK_MEMBERS([struct statfs.f_type],,,
140 [$ac_includes_default
141 #include <sys/vfs.h>])
142
41b6caf4
AL
143dnl We should use the real timegm function if we have it.
144AC_CHECK_FUNC(timegm,AC_DEFINE(HAVE_TIMEGM))
145AC_SUBST(HAVE_TIMEGM)
146
83ab33fc 147dnl Check the sizes etc. of the architecture
1cecba4d
AL
148dnl This is stupid, it should just use the AC macros like it does below
149dnl Cross compilers can either get a real C library or preload the cache
150dnl with their size values.
83ab33fc 151changequote(,)
b2e465d6 152archline="`awk \" ! /^#|^\\\$/ {if (match(\\\"$archset\\\",\\\$1)) {print; exit}}\" $srcdir/buildlib/sizetable | cut -f 2- -d ' '`"
1cecba4d 153if test "x$archline" != "x"; then
83ab33fc
AL
154 changequote([,])
155 set $archline
156 if test "$1" = "little"; then
157 ac_cv_c_bigendian=no
158 else
159 ac_cv_c_bigendian=yes
021988ea 160 fi
83ab33fc
AL
161 size_char=$2
162 size_int=$3
163 size_short=$4
164 size_long=$5
165fi
021988ea 166
1cecba4d 167dnl I wonder what AC_C_BIGENDIAN does if you cross compile...
b2e465d6
AL
168dnl This is probably bogus, as above we only care if we have to build our own
169dnl C9x types.
1cecba4d 170if test "$cross_compiling" = "yes" -a "x$archline" = "x"; then
83ab33fc
AL
171 AC_MSG_ERROR(When cross compiling, architecture must be present in sizetable)
172fi
173AC_C_BIGENDIAN
650faab0 174
1cecba4d 175dnl We do not need this if we have inttypes!
51761e5e 176HAVE_C9X=yes
46e39c8e 177if test x"$apt_cv_c9x_ints" = x"no"; then
021988ea
AL
178 AC_CHECK_SIZEOF(char,$size_char)
179 AC_CHECK_SIZEOF(int,$size_int)
180 AC_CHECK_SIZEOF(short,$size_short)
181 AC_CHECK_SIZEOF(long,$size_long)
51761e5e
AL
182
183 HAVE_C9X=
184 AC_SUBST(HAVE_C9X)
021988ea 185fi
d7bccc73 186
1cecba4d
AL
187dnl HP-UX sux..
188AC_MSG_CHECKING(for missing socklen_t)
189AC_EGREP_HEADER(socklen_t, sys/socket.h,[AC_MSG_RESULT(no)],[
53d3d263 190 AC_DEFINE(NEED_SOCKLEN_T_DEFINE)
1cecba4d
AL
191 NEED_SOCKLEN_T_DEFINE=yes
192 AC_MSG_RESULT(missing.)])
193AC_SUBST(NEED_SOCKLEN_T_DEFINE)
53d3d263 194
1cecba4d 195dnl HP-UX needs -d_XOPEN_SOURCE_EXTENDED for h_errno
53d3d263 196AC_MSG_CHECKING(for h_errno)
1cecba4d
AL
197AC_EGREP_HEADER(h_errno, netdb.h, [AC_MSG_RESULT(normal)],
198 [CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
199 AC_EGREP_HEADER(h_errno, netdb.h,
200 [AC_MSG_RESULT(needs _XOPEN_SOURCE_EXTENDED)],
201 [AC_MSG_ERROR("not found.")])
202 ])
53d3d263 203
d7bccc73 204dnl Check for debiandoc
b2e465d6
AL
205AC_PATH_PROG(DEBIANDOC_HTML,debiandoc2html)
206AC_PATH_PROG(DEBIANDOC_TEXT,debiandoc2text)
207
3174e150
MV
208dnl Check for doxygen
209AC_PATH_PROG(DOXYGEN, doxygen)
210
b01390ea
DK
211dnl Check for the XSLTProc tool needed to build man pages together with po4a
212AC_PATH_PROG(XSLTPROC,xsltproc)
213
214dnl Check for the po4a tool needed to build man pages
215AC_PATH_PROG(PO4A,po4a)
216
3174e150
MV
217dnl Check for graphviz
218AC_CHECK_PROG([HAVE_DOT], [dot], [YES], [NO])
219AC_PATH_PROG([DOT], [dot], [])
220DOTDIR=$(dirname $DOT)
221AC_SUBST(DOTDIR)
222
f43579d1 223ah_NUM_PROCS
c29a99d7 224ah_GCC3DEP
f43579d1 225
ec2f559a
AL
226dnl It used to be that the user could select translations and that could get
227dnl passed to the makefiles, but now that can only work if you use special
228dnl gettext approved makefiles, so this feature is unsupported by this.
c4588ad2 229ALL_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
230AM_GNU_GETTEXT(external)
231if test x"$USE_NLS" = "xyes"; then
232 AC_DEFINE(USE_NLS)
233fi
234AC_SUBST(USE_NLS)
80948457
AL
235AC_PATH_PROG(BASH, bash)
236
9179f697 237AC_OUTPUT(environment.mak:buildlib/environment.mak.in makefile:buildlib/makefile.in doc/Doxyfile:doc/Doxyfile.in,make -s dirs)