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