-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathconfigure.in
47 lines (38 loc) · 990 Bytes
/
configure.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# configure.in
#
# Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
#
# Copyright (C) 2001 Pekka Riikonen
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
AC_INIT(common.c)
# Compiler settings
CFLAGS="-Wall $CFLAGS"
AM_INIT_AUTOMAKE(tempest-AM, 1.0)
AC_PREREQ(2.3)
AC_PROG_CC
AC_C_INLINE
AC_C_CONST
AC_ARG_PROGRAM
AC_PROG_LN_S
AC_SUBST(LN_S)
# Program checking
AC_PROG_INSTALL
AC_PROG_RANLIB
AC_PROG_MAKE_SET
# Header checking
AC_HEADER_STDC
AC_HEADER_TIME
AC_HEADER_STAT
AC_CONFIG_SUBDIRS(g2-0.40)
AC_OUTPUT(Makefile)