ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Convert-UUlib/uulib/configure.in
Revision: 1.10
Committed: Mon Aug 24 06:15:00 2009 UTC (14 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-1_3
Changes since 1.9: +3 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
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 dnl
6 dnl $Id$
7 dnl
8
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 PATCH=20
18
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
45 CFLAGS="$CFLAGS -D_GNU_SOURCE"
46 AC_CHECK_FUNCS(gettimeofday fgetc_unlocked strcasecmp strncasecmp strcasestr)
47
48 AC_CHECK_FUNC(tempnam,,AC_DEFINE(tempnam,FP_tempnam))
49
50 AC_CHECK_FUNC(chmod,AC_DEFINE(HAVE_CHMOD))
51 AC_CHECK_FUNC(umask,AC_DEFINE(HAVE_UMASK))
52 AC_CHECK_FUNC(mkstemp,AC_DEFINE(HAVE_MKSTEMP))
53
54 #
55 # strerror might be internally defined. this would cause a
56 # CHECK_FUNCS(strerror) to fail because it'd be called with
57 # zero arguments. So use our own code.
58 #
59 AC_MSG_CHECKING([for strerror])
60 AC_TRY_LINK([
61 char *blubb() { return (char *) strerror (42); }
62 ],[
63 (void) blubb();
64 ],have_strerror=yes,AC_DEFINE(strerror,FP_strerror)
65 have_strerror=no)
66 AC_MSG_RESULT($have_strerror)
67
68 AC_MSG_CHECKING([for stdin])
69 AC_TRY_LINK([
70 #include <stdio.h>
71 char *blubb() { FILE *in, *out; in=stdin; out=stdout; return (char*)0; }
72 ],[
73 (void) blubb();
74 ],have_stdio=yes,AC_DEFINE(HAVE_STDIO)
75 have_stdio=no)
76 AC_MSG_RESULT($have_stdio)
77
78 if test "$ac_cv_header_stdc" = "no" ; then
79 AC_CHECK_HEADERS(stdarg.h varargs.h)
80 if test "$ac_cv_header_stdarg_h" = "no" ; then
81 if test "$ac_cv_header_varargs_h" = "no" ; then
82 AC_MSG_ERROR([neither stdarg.h nor varargs.h present])
83 fi
84 fi
85 fi
86
87 #
88 # Check whether this is a DOS-Based system. Another bogus test.
89 # Don't even bother to print a message. This code is needed so
90 # that autoheader includes the #undef into the final config.h
91 # and we can change the definition by hand on a really DOS
92 # system (where ./configure doesn't work anyway ...)
93 #
94
95 if false ; then
96 AC_DEFINE(SYSTEM_DOS)
97 AC_DEFINE(SYSTEM_QUICKWIN)
98 AC_DEFINE(SYSTEM_WINDLL)
99 AC_DEFINE(SYSTEM_OS2)
100 fi
101
102 #
103 # On some systems (so far, OS2 and WINDOWS), functions that are exported
104 # from a DLL must be declared specifically.
105 #
106
107 AC_DEFINE_UNQUOTED(UUEXPORT,)
108 AC_DEFINE_UNQUOTED(TOOLEXPORT,)
109
110 #
111 # set version number
112 #
113 AC_MSG_CHECKING([version number])
114 version_number="$VERSION"pl"$PATCH"
115 AC_MSG_RESULT($version_number)
116 AC_SUBST(VERSION)
117 AC_SUBST(PATCH)
118
119 #
120 # done
121 #
122
123 AC_OUTPUT(Makefile)
124