ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Convert-UUlib/uulib/configure.in
Revision: 1.8
Committed: Sun Apr 18 20:08:11 2004 UTC (20 years, 1 month ago) by root
Branch: MAIN
CVS Tags: rel-1_11, rel-1_10, rel-1_12, rel-0_7, rel-1_06, rel-1_04, rel-1_05, rel-1_08, rel-1_09
Changes since 1.7: +1 -2 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 dnl This file is an input file used by the GNU "autoconf" program to
2     dnl generate the file "configure", which tries to guess your system
3     dnl configuration so that no manual editing of the Makefile should be
4     dnl necessary
5 root 1.5 dnl
6 root 1.7 dnl $Id$
7 root 1.5 dnl
8 root 1.1
9     AC_INIT(uulib.c)
10     AC_PREREQ(2.9)
11     AC_CONFIG_HEADER(config.h)
12    
13     #
14     # package revision
15     #
16     VERSION=0.5
17 root 1.8 PATCH=20
18 root 1.1
19     AC_ARG_WITH(cc,,CC=$with_cc)
20     AC_ARG_WITH(cflags,,CFLAGS=$with_cflags)
21    
22     AC_PROG_CC
23     AC_PROG_CPP
24     wi_PROTOTYPES
25     AC_PROG_MAKE_SET
26     AC_PROG_RANLIB
27    
28     if test "$wi_cv_prototypes" = no ; then
29     AC_WARN([Your compiler does not support function prototyping and])
30     AC_WARN([is not able to properly compile this package. What a pity.])
31     AC_WARN([Get gcc, or any compiler that supports function prototypes.])
32     exit 1
33     fi
34    
35     #
36     # Checks for header files and library functions
37     #
38    
39     AC_HEADER_STDC
40     AC_TYPE_SIZE_T
41     AC_HEADER_TIME
42     AC_CHECK_HEADERS(fcntl.h unistd.h memory.h malloc.h errno.h)
43     AC_CHECK_HEADERS(io.h sys/time.h)
44     AC_CHECK_FUNCS(gettimeofday)
45    
46     AC_CHECK_FUNC(tempnam,,AC_DEFINE(tempnam,FP_tempnam))
47    
48 root 1.3 AC_CHECK_FUNC(chmod,AC_DEFINE(HAVE_CHMOD))
49     AC_CHECK_FUNC(umask,AC_DEFINE(HAVE_UMASK))
50 root 1.4 AC_CHECK_FUNC(mkstemp,AC_DEFINE(HAVE_MKSTEMP))
51 root 1.3
52 root 1.1 #
53     # strerror might be internally defined. this would cause a
54     # CHECK_FUNCS(strerror) to fail because it'd be called with
55     # zero arguments. So use our own code.
56     #
57     AC_MSG_CHECKING([for strerror])
58     AC_TRY_LINK([
59     char *blubb() { return (char *) strerror (42); }
60     ],[
61     (void) blubb();
62     ],have_strerror=yes,AC_DEFINE(strerror,FP_strerror)
63     have_strerror=no)
64     AC_MSG_RESULT($have_strerror)
65    
66     AC_MSG_CHECKING([for stdin])
67     AC_TRY_LINK([
68     #include <stdio.h>
69     char *blubb() { FILE *in, *out; in=stdin; out=stdout; return (char*)0; }
70     ],[
71     (void) blubb();
72     ],have_stdio=yes,AC_DEFINE(HAVE_STDIO)
73     have_stdio=no)
74     AC_MSG_RESULT($have_stdio)
75    
76     if test "$ac_cv_header_stdc" = "no" ; then
77     AC_CHECK_HEADERS(stdarg.h varargs.h)
78     if test "$ac_cv_header_stdarg_h" = "no" ; then
79     if test "$ac_cv_header_varargs_h" = "no" ; then
80     AC_MSG_ERROR([neither stdarg.h nor varargs.h present])
81     fi
82     fi
83     fi
84    
85     #
86     # Check whether this is a DOS-Based system. Another bogus test.
87     # Don't even bother to print a message. This code is needed so
88     # that autoheader includes the #undef into the final config.h
89     # and we can change the definition by hand on a really DOS
90     # system (where ./configure doesn't work anyway ...)
91     #
92    
93     if false ; then
94     AC_DEFINE(SYSTEM_DOS)
95     AC_DEFINE(SYSTEM_QUICKWIN)
96     AC_DEFINE(SYSTEM_WINDLL)
97     AC_DEFINE(SYSTEM_OS2)
98     fi
99    
100     #
101     # On some systems (so far, OS2 and WINDOWS), functions that are exported
102     # from a DLL must be declared specifically.
103     #
104    
105     AC_DEFINE_UNQUOTED(UUEXPORT,)
106     AC_DEFINE_UNQUOTED(TOOLEXPORT,)
107    
108     #
109     # set version number
110     #
111     AC_MSG_CHECKING([version number])
112     version_number="$VERSION"pl"$PATCH"
113     AC_MSG_RESULT($version_number)
114     AC_SUBST(VERSION)
115     AC_SUBST(PATCH)
116    
117     #
118     # done
119     #
120    
121     AC_OUTPUT(Makefile)
122