chiark / gitweb /
Bugfix.
[userv.git] / configure.in
1 #  userv - configure.in
2
3 #  Copyright (C)1996-1997 Ian Jackson
4 #   
5 #  This is free software; you can redistribute it and/or modify it
6 #  under the terms of the GNU General Public License as published by
7 #  the Free Software Foundation; either version 2 of the License, or
8 #  (at your option) any later version.
9
10 #  This program is distributed in the hope that it will be useful, but
11 #  WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 #  General Public License for more details.
14
15 #  You should have received a copy of the GNU General Public License
16 #  along with userv; if not, write to the Free Software
17 #  Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 AC_INIT(language.i4)
20 AC_CONFIG_HEADER(config.h)
21
22 AC_PREFIX_DEFAULT(/usr/local)
23
24 crdir="`pwd`"
25 AC_SUBST(DEBUGDEFS)
26 AC_SUBST(DEBUGLIBS)
27 DEBUGDEFS=''
28 DEBUGLIBS=''
29 AC_ARG_ENABLE(debug,
30 [  --enable-debug          build debugging version],
31 [
32  if test "x$enable_debug" = xyes; then
33   DEBUGDEFS="-DDEBUG -DVARDIR='\"$crdir/vd\"' -DSYSTEMCONFIGDIR='\"$crdir/slash-etc\"' -DSERVICEUSERDIR='\"$crdir/tilde\"'"
34   DEBUGLIBS=-lefence
35  elif test "x$enable_debug" != xno; then
36   AC_MSG_ERROR(--enable-debug does not allow any arguments except 'yes' and 'no')
37  fi
38 ])
39
40 AC_PROG_CC
41 AC_PROG_INSTALL
42 AC_SYS_LONG_FILE_NAMES
43
44 AC_SUBST(OPTIMISE)
45 if test "${GCC-no}" = yes; then
46  OPTIMISE=-O2
47 else
48  OPTIMISE=-O
49 fi
50
51 dnl DPKG_CACHED_TRY_COMPILE(<description>,<cachevar>,<include>,<program>,<ifyes>,<ifno>)
52 define(DPKG_CACHED_TRY_COMPILE,[
53  AC_MSG_CHECKING($1)
54  AC_CACHE_VAL($2,[
55   AC_TRY_COMPILE([$3],[$4],[$2=yes],[$2=no])
56  ])
57  if test "x$$2" = xyes; then
58   true
59   $5
60  else
61   true
62   $6
63  fi
64 ])
65
66 DPKG_CACHED_TRY_COMPILE(your C compiler,dpkg_cv_c_works,
67  [#include <string.h>], [strcmp("a","b")],
68  AC_MSG_RESULT(works),
69  AC_MSG_RESULT(broken)
70  AC_MSG_ERROR(C compiler is broken))
71
72 DPKG_CACHED_TRY_COMPILE(__attribute__((,,)),dpkg_cv_c_attribute_supported,,
73  [extern int testfunction(int x) __attribute__((,,))],
74  AC_MSG_RESULT(yes)
75  AC_DEFINE(HAVE_GNUC25_ATTRIB)
76   DPKG_CACHED_TRY_COMPILE(__attribute__((noreturn)),dpkg_cv_c_attribute_noreturn,,
77    [extern int testfunction(int x) __attribute__((noreturn))],
78    AC_MSG_RESULT(yes)
79    AC_DEFINE(HAVE_GNUC25_NORETURN),
80    AC_MSG_RESULT(no))
81   DPKG_CACHED_TRY_COMPILE(__attribute__((const)),dpkg_cv_c_attribute_const,,
82    [extern int testfunction(int x) __attribute__((const))],
83    AC_MSG_RESULT(yes)
84    AC_DEFINE(HAVE_GNUC25_CONST),
85    AC_MSG_RESULT(no))
86   DPKG_CACHED_TRY_COMPILE(__attribute__((format...)),dpkg_cv_attribute_format,,
87    [extern int testfunction(char *y, ...) __attribute__((format(printf,1,2)))],
88    AC_MSG_RESULT(yes)
89    AC_DEFINE(HAVE_GNUC25_PRINTFFORMAT),
90    AC_MSG_RESULT(no)),
91  AC_MSG_RESULT(no))
92
93 AC_SUBST(CWARNS)
94 CWARNS=""
95
96 dnl DPKG_C_GCC_TRY_WARNS(<warnings>,<cachevar>)
97 define(DPKG_C_GCC_TRY_WARNS,[
98  AC_MSG_CHECKING([GCC warning flag(s) $1])
99  if test "${GCC-no}" = yes
100  then
101   AC_CACHE_VAL($2,[
102    oldcflags="${CFLAGS-}"
103    CFLAGS="${CFLAGS-} ${CWARNS} $1 -Werror"
104    AC_TRY_COMPILE([
105 #include <string.h>
106 #include <stdio.h>
107 ],[
108     strcmp("a","b"); fprintf(stdout,"test ok\n");
109 ], [$2=yes], [$2=no])
110    CFLAGS="${oldcflags}"])
111   if test "x$$2" = xyes; then
112    CWARNS="${CWARNS} $1"
113    AC_MSG_RESULT(ok)
114   else
115    $2=''
116    AC_MSG_RESULT(no)
117   fi
118  else
119   AC_MSG_RESULT(no, not using GCC)
120  fi
121 ])
122
123 DPKG_C_GCC_TRY_WARNS(-Wall -Wno-implicit, dpkg_cv_c_gcc_warn_all)
124 DPKG_C_GCC_TRY_WARNS(-Wwrite-strings, dpkg_cv_c_gcc_warn_writestrings)
125 DPKG_C_GCC_TRY_WARNS(-Wpointer-arith, dpkg_cv_c_gcc_warn_pointerarith)
126 DPKG_C_GCC_TRY_WARNS(-Wimplicit -Wnested-externs, dpkg_cv_c_gcc_warn_implicit)
127
128 if test "${GCC-no}" = yes; then
129  CWARNS="${CWARNS} -Wmissing-prototypes -Wstrict-prototypes -Werror"
130 fi
131 [CFLAGS="`echo $CFLAGS $CWARNS | sed -e 's/-O[0-9]*/$(OPTIMISE)/'`"]
132
133 AC_OUTPUT(Makefile)