Fixes for Solaris
[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_INIT(configure.in)
16 AC_CONFIG_AUX_DIR(buildlib)
17 AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in)
18
19 dnl -- SET THIS TO THE RELEASE VERSION --
20 AC_DEFINE_UNQUOTED(VERSION,"0.3.15")
21 AC_DEFINE_UNQUOTED(PACKAGE,"apt")
22
23 dnl Tom's host stuff
24 tl_CHECK_TOOL_PREFIX dnl Initial guess
25
26 dnl Check our C compiler
27 tl_PROG_CC
28 AC_ISC_POSIX
29
30 dnl Check the host arch (build+target not needed... yet)
31 tl_CANONICAL_HOST
32 tl_CHECK_TOOL_PREFIX dnl recheck, in case the initial guess was wrong
33
34 dnl Check for other programs
35 tl_PROG_CXX
36 AC_LANG_CPLUSPLUS
37 dnl Checks for X11
38 AC_PATH_X
39 AC_PATH_XTRA
40 AC_SUBST(X11LIB)
41 X11LIB=
42 if test "$no_x" != "yes"; then
43 X11LIB="-lX11"
44 AC_DEFINE(HAVE_X11)
45 dnl Checks for ZPM
46 AC_CHECK_LIB(Xpm, XpmLibraryVersion,[AC_DEFINE(HAVE_LIBXPM) XPMLIB="-lXpm"],,$X_LIBS $X_PRE_LIBS $X11LIB $X_EXTRA_LIBS)
47 AC_SUBST(XPMLIB)
48 if test "$XPMLIB" != "-lXpm"; then
49 AC_MSG_ERROR(failed: I need xpm if you are building for X)
50 fi
51 fi
52
53 dnl Checks for Slang
54 AC_CHECK_LIB(slang, SLang_Version,[AC_DEFINE(HAVE_LIBSLANG) SLANGLIB="-lslang"])
55 AC_SUBST(SLANGLIB)
56
57 dnl Checks for GPM
58 AC_ARG_WITH(gpm,[ --without-gpm do not use GPM mouse support])
59 if test "$with_gpm" != "no"; then
60 AC_CHECK_LIB(gpm, Gpm_Open,[AC_DEFINE(HAVE_LIBGPM) GPMLIB="-lgpm"])
61 AC_SUBST(GPMLIB)
62 fi
63
64 dnl Checks for pthread
65 #AC_CHECK_LIB(pthread, pthread_create,[AC_DEFINE(HAVE_PTHREAD) PTHREADLIB="-lpthread"])
66 AC_SUBST(PTHREADLIB)
67 #if test "$PTHREADLIB" != "-lpthread"; then
68 # AC_MSG_ERROR(failed: I need posix threads, pthread)
69 #fi
70
71 dnl Converts the ARCH to be the same as dpkg
72 AC_MSG_CHECKING(system architecture)
73 archset="`awk '$1 == \"$host_cpu\" { print $2 }' $srcdir/buildlib/archtable`"
74 if test "x$archset" = "x"; then
75 AC_MSG_ERROR(failed: use --host=)
76 fi
77 AC_MSG_RESULT($archset)
78 AC_DEFINE_UNQUOTED(ARCHITECTURE,"$archset")
79
80 dnl We use C9x types if at all possible
81 AC_CACHE_CHECK([for C9x integer types],c9x_ints,[
82 AC_TRY_COMPILE([#include <inttypes.h>],
83 [uint8_t Foo1;uint16_t Foo2;uint32_t Foo3;uint64_t Foo],
84 c9x_ints=yes,c9x_ints=no)])
85
86 dnl Check the sizes etc. of the architecture
87 changequote(,)
88 if archline="`grep '^$archset' | cut -f 2- -d ' '`";then
89 changequote([,])
90 set $archline
91 if test "$1" = "little"; then
92 ac_cv_c_bigendian=no
93 else
94 ac_cv_c_bigendian=yes
95 fi
96 size_char=$2
97 size_int=$3
98 size_short=$4
99 size_long=$5
100 fi
101
102 if test "$cross_compiling" = "yes" -a "$archline" = ""; then
103 AC_MSG_ERROR(When cross compiling, architecture must be present in sizetable)
104 fi
105 AC_C_BIGENDIAN
106
107 dnl We do not need this if we have inttypes..
108 HAVE_C9X=yes
109 if test x"$c9x_ints" = x"no"; then
110 AC_CHECK_SIZEOF(char,$size_char)
111 AC_CHECK_SIZEOF(int,$size_int)
112 AC_CHECK_SIZEOF(short,$size_short)
113 AC_CHECK_SIZEOF(long,$size_long)
114
115 HAVE_C9X=
116 AC_SUBST(HAVE_C9X)
117 fi
118
119 dnl Check for debiandoc
120 AC_CHECK_PROG(DEBIANDOC_HTML,debiandoc2html,"yes","")
121 AC_CHECK_PROG(DEBIANDOC_TEXT,debiandoc2text,"yes","")
122
123 dnl Check for YODL
124 AC_CHECK_PROG(YODL_MAN,yodl2man,"yes","")
125
126 AC_OUTPUT(environment.mak:buildlib/environment.mak.in makefile:buildlib/makefile.in,make dirs)