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