]> git.draconx.ca Git - gob-dx.git/blob - aclocal.m4
Release 0.92.3
[gob-dx.git] / aclocal.m4
1 dnl aclocal.m4 generated automatically by aclocal 1.4
2
3 dnl Copyright (C) 1994, 1995-8, 1999 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
129 dnl AM_PROG_LEX
130 dnl Look for flex, lex or missing, then run AC_PROG_LEX and AC_DECL_YYTEXT
131 AC_DEFUN(AM_PROG_LEX,
132 [missing_dir=ifelse([$1],,`cd $ac_aux_dir && pwd`,$1)
133 AC_CHECK_PROGS(LEX, flex lex, "$missing_dir/missing flex")
134 AC_PROG_LEX
135 AC_DECL_YYTEXT])
136
137 # Configure paths for GLIB
138 # Owen Taylor     97-11-3
139
140 dnl AM_PATH_GLIB([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
141 dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS, if "gmodule" or 
142 dnl gthread is specified in MODULES, pass to glib-config
143 dnl
144 AC_DEFUN(AM_PATH_GLIB,
145 [dnl 
146 dnl Get the cflags and libraries from the glib-config script
147 dnl
148 AC_ARG_WITH(glib-prefix,[  --with-glib-prefix=PFX   Prefix where GLIB is installed (optional)],
149             glib_config_prefix="$withval", glib_config_prefix="")
150 AC_ARG_WITH(glib-exec-prefix,[  --with-glib-exec-prefix=PFX Exec prefix where GLIB is installed (optional)],
151             glib_config_exec_prefix="$withval", glib_config_exec_prefix="")
152 AC_ARG_ENABLE(glibtest, [  --disable-glibtest       Do not try to compile and run a test GLIB program],
153                     , enable_glibtest=yes)
154
155   if test x$glib_config_exec_prefix != x ; then
156      glib_config_args="$glib_config_args --exec-prefix=$glib_config_exec_prefix"
157      if test x${GLIB_CONFIG+set} != xset ; then
158         GLIB_CONFIG=$glib_config_exec_prefix/bin/glib-config
159      fi
160   fi
161   if test x$glib_config_prefix != x ; then
162      glib_config_args="$glib_config_args --prefix=$glib_config_prefix"
163      if test x${GLIB_CONFIG+set} != xset ; then
164         GLIB_CONFIG=$glib_config_prefix/bin/glib-config
165      fi
166   fi
167
168   for module in . $4
169   do
170       case "$module" in
171          gmodule) 
172              glib_config_args="$glib_config_args gmodule"
173          ;;
174          gthread) 
175              glib_config_args="$glib_config_args gthread"
176          ;;
177       esac
178   done
179
180   AC_PATH_PROG(GLIB_CONFIG, glib-config, no)
181   min_glib_version=ifelse([$1], ,0.99.7,$1)
182   AC_MSG_CHECKING(for GLIB - version >= $min_glib_version)
183   no_glib=""
184   if test "$GLIB_CONFIG" = "no" ; then
185     no_glib=yes
186   else
187     GLIB_CFLAGS=`$GLIB_CONFIG $glib_config_args --cflags`
188     GLIB_LIBS=`$GLIB_CONFIG $glib_config_args --libs`
189     glib_config_major_version=`$GLIB_CONFIG $glib_config_args --version | \
190            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
191     glib_config_minor_version=`$GLIB_CONFIG $glib_config_args --version | \
192            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
193     glib_config_micro_version=`$GLIB_CONFIG $glib_config_args --version | \
194            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
195     if test "x$enable_glibtest" = "xyes" ; then
196       ac_save_CFLAGS="$CFLAGS"
197       ac_save_LIBS="$LIBS"
198       CFLAGS="$CFLAGS $GLIB_CFLAGS"
199       LIBS="$GLIB_LIBS $LIBS"
200 dnl
201 dnl Now check if the installed GLIB is sufficiently new. (Also sanity
202 dnl checks the results of glib-config to some extent
203 dnl
204       rm -f conf.glibtest
205       AC_TRY_RUN([
206 #include <glib.h>
207 #include <stdio.h>
208 #include <stdlib.h>
209
210 int 
211 main ()
212 {
213   int major, minor, micro;
214   char *tmp_version;
215
216   system ("touch conf.glibtest");
217
218   /* HP/UX 9 (%@#!) writes to sscanf strings */
219   tmp_version = g_strdup("$min_glib_version");
220   if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
221      printf("%s, bad version string\n", "$min_glib_version");
222      exit(1);
223    }
224
225   if ((glib_major_version != $glib_config_major_version) ||
226       (glib_minor_version != $glib_config_minor_version) ||
227       (glib_micro_version != $glib_config_micro_version))
228     {
229       printf("\n*** 'glib-config --version' returned %d.%d.%d, but GLIB (%d.%d.%d)\n", 
230              $glib_config_major_version, $glib_config_minor_version, $glib_config_micro_version,
231              glib_major_version, glib_minor_version, glib_micro_version);
232       printf ("*** was found! If glib-config was correct, then it is best\n");
233       printf ("*** to remove the old version of GLIB. You may also be able to fix the error\n");
234       printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
235       printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
236       printf("*** required on your system.\n");
237       printf("*** If glib-config was wrong, set the environment variable GLIB_CONFIG\n");
238       printf("*** to point to the correct copy of glib-config, and remove the file config.cache\n");
239       printf("*** before re-running configure\n");
240     } 
241   else if ((glib_major_version != GLIB_MAJOR_VERSION) ||
242            (glib_minor_version != GLIB_MINOR_VERSION) ||
243            (glib_micro_version != GLIB_MICRO_VERSION))
244     {
245       printf("*** GLIB header files (version %d.%d.%d) do not match\n",
246              GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
247       printf("*** library (version %d.%d.%d)\n",
248              glib_major_version, glib_minor_version, glib_micro_version);
249     }
250   else
251     {
252       if ((glib_major_version > major) ||
253         ((glib_major_version == major) && (glib_minor_version > minor)) ||
254         ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro)))
255       {
256         return 0;
257        }
258      else
259       {
260         printf("\n*** An old version of GLIB (%d.%d.%d) was found.\n",
261                glib_major_version, glib_minor_version, glib_micro_version);
262         printf("*** You need a version of GLIB newer than %d.%d.%d. The latest version of\n",
263                major, minor, micro);
264         printf("*** GLIB is always available from ftp://ftp.gtk.org.\n");
265         printf("***\n");
266         printf("*** If you have already installed a sufficiently new version, this error\n");
267         printf("*** probably means that the wrong copy of the glib-config shell script is\n");
268         printf("*** being found. The easiest way to fix this is to remove the old version\n");
269         printf("*** of GLIB, but you can also set the GLIB_CONFIG environment to point to the\n");
270         printf("*** correct copy of glib-config. (In this case, you will have to\n");
271         printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
272         printf("*** so that the correct libraries are found at run-time))\n");
273       }
274     }
275   return 1;
276 }
277 ],, no_glib=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
278        CFLAGS="$ac_save_CFLAGS"
279        LIBS="$ac_save_LIBS"
280      fi
281   fi
282   if test "x$no_glib" = x ; then
283      AC_MSG_RESULT(yes)
284      ifelse([$2], , :, [$2])     
285   else
286      AC_MSG_RESULT(no)
287      if test "$GLIB_CONFIG" = "no" ; then
288        echo "*** The glib-config script installed by GLIB could not be found"
289        echo "*** If GLIB was installed in PREFIX, make sure PREFIX/bin is in"
290        echo "*** your path, or set the GLIB_CONFIG environment variable to the"
291        echo "*** full path to glib-config."
292      else
293        if test -f conf.glibtest ; then
294         :
295        else
296           echo "*** Could not run GLIB test program, checking why..."
297           CFLAGS="$CFLAGS $GLIB_CFLAGS"
298           LIBS="$LIBS $GLIB_LIBS"
299           AC_TRY_LINK([
300 #include <glib.h>
301 #include <stdio.h>
302 ],      [ return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); ],
303         [ echo "*** The test program compiled, but did not run. This usually means"
304           echo "*** that the run-time linker is not finding GLIB or finding the wrong"
305           echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your"
306           echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
307           echo "*** to the installed location  Also, make sure you have run ldconfig if that"
308           echo "*** is required on your system"
309           echo "***"
310           echo "*** If you have an old version installed, it is best to remove it, although"
311           echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
312           echo "***"
313           echo "*** If you have a RedHat 5.0 system, you should remove the GTK package that"
314           echo "*** came with the system with the command"
315           echo "***"
316           echo "***    rpm --erase --nodeps gtk gtk-devel" ],
317         [ echo "*** The test program failed to compile or link. See the file config.log for the"
318           echo "*** exact error that occured. This usually means GLIB was incorrectly installed"
319           echo "*** or that you have moved GLIB since it was installed. In the latter case, you"
320           echo "*** may want to edit the glib-config script: $GLIB_CONFIG" ])
321           CFLAGS="$ac_save_CFLAGS"
322           LIBS="$ac_save_LIBS"
323        fi
324      fi
325      GLIB_CFLAGS=""
326      GLIB_LIBS=""
327      ifelse([$3], , :, [$3])
328   fi
329   AC_SUBST(GLIB_CFLAGS)
330   AC_SUBST(GLIB_LIBS)
331   rm -f conf.glibtest
332 ])
333
334 # Add --enable-maintainer-mode option to configure.
335 # From Jim Meyering
336
337 # serial 1
338
339 AC_DEFUN(AM_MAINTAINER_MODE,
340 [AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
341   dnl maintainer-mode is disabled by default
342   AC_ARG_ENABLE(maintainer-mode,
343 [  --enable-maintainer-mode enable make rules and dependencies not useful
344                           (and sometimes confusing) to the casual installer],
345       USE_MAINTAINER_MODE=$enableval,
346       USE_MAINTAINER_MODE=no)
347   AC_MSG_RESULT($USE_MAINTAINER_MODE)
348   AM_CONDITIONAL(MAINTAINER_MODE, test $USE_MAINTAINER_MODE = yes)
349   MAINT=$MAINTAINER_MODE_TRUE
350   AC_SUBST(MAINT)dnl
351 ]
352 )
353
354 # Define a conditional.
355
356 AC_DEFUN(AM_CONDITIONAL,
357 [AC_SUBST($1_TRUE)
358 AC_SUBST($1_FALSE)
359 if $2; then
360   $1_TRUE=
361   $1_FALSE='#'
362 else
363   $1_TRUE='#'
364   $1_FALSE=
365 fi])
366