]> git.draconx.ca Git - gob-dx.git/blob - aclocal.m4
Release 1.99.3
[gob-dx.git] / aclocal.m4
1 dnl aclocal.m4 generated automatically by aclocal 1.4-p5
2
3 dnl Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
4 dnl This file is free software; the Free Software Foundation
5 dnl gives unlimited permission to copy and/or distribute it,
6 dnl with or without modifications, as long as this notice is preserved.
7
8 dnl This program is distributed in the hope that it will be useful,
9 dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without
10 dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11 dnl PARTICULAR PURPOSE.
12
13 # Like AC_CONFIG_HEADER, but automatically create stamp file.
14
15 AC_DEFUN([AM_CONFIG_HEADER],
16 [AC_PREREQ([2.12])
17 AC_CONFIG_HEADER([$1])
18 dnl When config.status generates a header, we must update the stamp-h file.
19 dnl This file resides in the same directory as the config header
20 dnl that is generated.  We must strip everything past the first ":",
21 dnl and everything past the last "/".
22 AC_OUTPUT_COMMANDS(changequote(<<,>>)dnl
23 ifelse(patsubst(<<$1>>, <<[^ ]>>, <<>>), <<>>,
24 <<test -z "<<$>>CONFIG_HEADERS" || echo timestamp > patsubst(<<$1>>, <<^\([^:]*/\)?.*>>, <<\1>>)stamp-h<<>>dnl>>,
25 <<am_indx=1
26 for am_file in <<$1>>; do
27   case " <<$>>CONFIG_HEADERS " in
28   *" <<$>>am_file "*<<)>>
29     echo timestamp > `echo <<$>>am_file | sed -e 's%:.*%%' -e 's%[^/]*$%%'`stamp-h$am_indx
30     ;;
31   esac
32   am_indx=`expr "<<$>>am_indx" + 1`
33 done<<>>dnl>>)
34 changequote([,]))])
35
36 # Do all the work for Automake.  This macro actually does too much --
37 # some checks are only needed if your package does certain things.
38 # But this isn't really a big deal.
39
40 # serial 1
41
42 dnl Usage:
43 dnl AM_INIT_AUTOMAKE(package,version, [no-define])
44
45 AC_DEFUN([AM_INIT_AUTOMAKE],
46 [AC_REQUIRE([AC_PROG_INSTALL])
47 PACKAGE=[$1]
48 AC_SUBST(PACKAGE)
49 VERSION=[$2]
50 AC_SUBST(VERSION)
51 dnl test to see if srcdir already configured
52 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
53   AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
54 fi
55 ifelse([$3],,
56 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
57 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))
58 AC_REQUIRE([AM_SANITY_CHECK])
59 AC_REQUIRE([AC_ARG_PROGRAM])
60 dnl FIXME This is truly gross.
61 missing_dir=`cd $ac_aux_dir && pwd`
62 AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
63 AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
64 AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
65 AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
66 AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
67 AC_REQUIRE([AC_PROG_MAKE_SET])])
68
69 #
70 # Check to make sure that the build environment is sane.
71 #
72
73 AC_DEFUN([AM_SANITY_CHECK],
74 [AC_MSG_CHECKING([whether build environment is sane])
75 # Just in case
76 sleep 1
77 echo timestamp > conftestfile
78 # Do `set' in a subshell so we don't clobber the current shell's
79 # arguments.  Must try -L first in case configure is actually a
80 # symlink; some systems play weird games with the mod time of symlinks
81 # (eg FreeBSD returns the mod time of the symlink's containing
82 # directory).
83 if (
84    set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`
85    if test "[$]*" = "X"; then
86       # -L didn't work.
87       set X `ls -t $srcdir/configure conftestfile`
88    fi
89    if test "[$]*" != "X $srcdir/configure conftestfile" \
90       && test "[$]*" != "X conftestfile $srcdir/configure"; then
91
92       # If neither matched, then we have a broken ls.  This can happen
93       # if, for instance, CONFIG_SHELL is bash and it inherits a
94       # broken ls alias from the environment.  This has actually
95       # happened.  Such a system could not be considered "sane".
96       AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
97 alias in your environment])
98    fi
99
100    test "[$]2" = conftestfile
101    )
102 then
103    # Ok.
104    :
105 else
106    AC_MSG_ERROR([newly created file is older than distributed files!
107 Check your system clock])
108 fi
109 rm -f conftest*
110 AC_MSG_RESULT(yes)])
111
112 dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
113 dnl The program must properly implement --version.
114 AC_DEFUN([AM_MISSING_PROG],
115 [AC_MSG_CHECKING(for working $2)
116 # Run test in a subshell; some versions of sh will print an error if
117 # an executable is not found, even if stderr is redirected.
118 # Redirect stdin to placate older versions of autoconf.  Sigh.
119 if ($2 --version) < /dev/null > /dev/null 2>&1; then
120    $1=$2
121    AC_MSG_RESULT(found)
122 else
123    $1="$3/missing $2"
124    AC_MSG_RESULT(missing)
125 fi
126 AC_SUBST($1)])
127
128 # Add --enable-maintainer-mode option to configure.
129 # From Jim Meyering
130
131 # serial 1
132
133 AC_DEFUN([AM_MAINTAINER_MODE],
134 [AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
135   dnl maintainer-mode is disabled by default
136   AC_ARG_ENABLE(maintainer-mode,
137 [  --enable-maintainer-mode enable make rules and dependencies not useful
138                           (and sometimes confusing) to the casual installer],
139       USE_MAINTAINER_MODE=$enableval,
140       USE_MAINTAINER_MODE=no)
141   AC_MSG_RESULT($USE_MAINTAINER_MODE)
142   AM_CONDITIONAL(MAINTAINER_MODE, test $USE_MAINTAINER_MODE = yes)
143   MAINT=$MAINTAINER_MODE_TRUE
144   AC_SUBST(MAINT)dnl
145 ]
146 )
147
148 # Define a conditional.
149
150 AC_DEFUN([AM_CONDITIONAL],
151 [AC_SUBST($1_TRUE)
152 AC_SUBST($1_FALSE)
153 if $2; then
154   $1_TRUE=
155   $1_FALSE='#'
156 else
157   $1_TRUE='#'
158   $1_FALSE=
159 fi])
160
161 #serial 1
162 # This test replaces the one in autoconf.
163 # Currently this macro should have the same name as the autoconf macro
164 # because gettext's gettext.m4 (distributed in the automake package)
165 # still uses it.  Otherwise, the use in gettext.m4 makes autoheader
166 # give these diagnostics:
167 #   configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX
168 #   configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX
169
170 undefine([AC_ISC_POSIX])
171
172 AC_DEFUN([AC_ISC_POSIX],
173   [
174     dnl This test replaces the obsolescent AC_ISC_POSIX kludge.
175     AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"])
176   ]
177 )
178
179
180 dnl AM_PROG_LEX
181 dnl Look for flex, lex or missing, then run AC_PROG_LEX and AC_DECL_YYTEXT
182 AC_DEFUN([AM_PROG_LEX],
183 [missing_dir=ifelse([$1],,`cd $ac_aux_dir && pwd`,$1)
184 AC_CHECK_PROGS(LEX, flex lex, "$missing_dir/missing flex")
185 AC_PROG_LEX
186 AC_DECL_YYTEXT])
187
188
189 dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not)
190 dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page
191 dnl also defines GSTUFF_PKG_ERRORS on error
192 AC_DEFUN(PKG_CHECK_MODULES, [
193   succeeded=no
194
195   if test -z "$PKG_CONFIG"; then
196     AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
197   fi
198
199   if test "$PKG_CONFIG" = "no" ; then
200      echo "*** The pkg-config script could not be found. Make sure it is"
201      echo "*** in your path, or set the PKG_CONFIG environment variable"
202      echo "*** to the full path to pkg-config."
203      echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config."
204   else
205      PKG_CONFIG_MIN_VERSION=0.9.0
206      if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
207         AC_MSG_CHECKING(for $2)
208
209         if $PKG_CONFIG --exists "$2" ; then
210             AC_MSG_RESULT(yes)
211             succeeded=yes
212
213             AC_MSG_CHECKING($1_CFLAGS)
214             $1_CFLAGS=`$PKG_CONFIG --cflags "$2"`
215             AC_MSG_RESULT($$1_CFLAGS)
216
217             AC_MSG_CHECKING($1_LIBS)
218             $1_LIBS=`$PKG_CONFIG --libs "$2"`
219             AC_MSG_RESULT($$1_LIBS)
220         else
221             $1_CFLAGS=""
222             $1_LIBS=""
223             ## If we have a custom action on failure, don't print errors, but 
224             ## do set a variable so people can do so.
225             $1_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
226             ifelse([$4], ,echo $$1_PKG_ERRORS,)
227         fi
228
229         AC_SUBST($1_CFLAGS)
230         AC_SUBST($1_LIBS)
231      else
232         echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer."
233         echo "*** See http://www.freedesktop.org/software/pkgconfig"
234      fi
235   fi
236
237   if test $succeeded = yes; then
238      ifelse([$3], , :, [$3])
239   else
240      ifelse([$4], , AC_MSG_ERROR([Library requirements ($2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.]), [$4])
241   fi
242 ])
243
244
245