Extract gitiginore files from Subversion.
[cfd] / aclocal.glob
... / ...
CommitLineData
1dnl -*-fundamental-*- *@--GLOB-HEADER--@*
2dnl
3dnl $Id$
4dnl
5dnl Common library of autoconf macros
6dnl
7dnl (c) 1997 Mark Wooding, except for macros and documentation where noted.
8dnl
9
10dnl----- Licensing notice ---------------------------------------------------
11dnl
12dnl This file is part of the Common Files Distribution (`common')
13dnl
14dnl `Common' is free software; you can redistribute it and/or modify
15dnl it under the terms of the GNU General Public License as published by
16dnl the Free Software Foundation; either version 2 of the License, or
17dnl (at your option) any later version.
18dnl
19dnl `Common' is distributed in the hope that it will be useful,
20dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
21dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22dnl GNU General Public License for more details.
23dnl
24dnl You should have received a copy of the GNU General Public License
25dnl along with `common'; if not, write to the Free Software Foundation,
26dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27
28dnl *@--NOTICE--@* Common File Distribution
29dnl $Id$
30
31dnl --- *@-mdw_CURSES-@* ---
32dnl
33dnl Author: Mark Wooding
34dnl
35dnl Synopsis: mdw_CURSES
36dnl
37dnl Arguments: ---
38dnl
39dnl Use: Searches for a `curses' library (one of `ncurses' or
40dnl `curses') using mdw_CHECK_MANYLIBS. If one is found, the
41dnl preprocessor macro HAVE_CURSES is defined, and a search is
42dnl made for a `curses' header file (one of <ncurses.h>,
43dnl <ncurses/ncurses.h> or <curses.h>) using AC_CHECK_HEADERS
44dnl and the appropriate preprocessor symbol is defined.
45dnl Finally, a check is made for the function `wresize' using
46dnl AC_CHECK_FUNCS.
47
48AC_DEFUN([mdw_CURSES],
49[mdw_CHECK_MANYLIBS([newwin], [ncurses curses],
50 [AC_DEFINE([HAVE_CURSES],
51 [Define if you have a curses library.])])
52if test $mdw_cv_lib_newwin != no; then
53AC_CHECK_HEADERS([ncurses.h ncurses/ncurses.h curses.h], [break])
54if test "$ac_cv_header_ncurses_h" = "no" &&
55 test "$ac_cv_header_ncurses_ncurses_h" = "no" &&
56 test "$ac_cv_header_curses_h" = "no"; then
57 AC_MSG_WARN([couldn't find a \`curses' header. Assuming \`curses.h'.])
58 AC_DEFINE([HAVE_CURSES_H], [1], [Define if you have a `curses.h' header.])
59fi
60AC_CHECK_FUNCS(wresize)
61fi])
62
63dnl --- *@-mdw_TYPE_SSIZE_T-@* ---
64dnl
65dnl Author: Mark Wooding
66dnl
67dnl Synopsis: mdw_TYPE_SSIZE_T
68dnl
69dnl Arguments: ---
70dnl
71dnl Use: Checks whether the Posix type `ssize_t' is defined. If not,
72dnl it defaults to `int'.
73
74AC_DEFUN([mdw_TYPE_SSIZE_T],
75[AC_REQUIRE([AC_HEADER_STDC])
76AC_CACHE_CHECK(for ssize_t, mdw_cv_ssize_t,
77[AC_EGREP_CPP(ssize_t,
78[#include <sys/types.h>
79#if HAVE_UNISTD_H
80#include <unistd.h>
81#endif
82#if STDC_HEADERS
83#include <stdlib.h>
84#include <stddef.h>
85#endif],
86[mdw_cv_ssize_t=yes], [mdw_cv_ssize_t=no])])
87if test $mdw_cv_ssize_t = no; then
88 AC_DEFINE([ssize_t], [int], [Define to `int' if your system doesn't have ssize_t.])
89fi])
90
91dnl --- *@-mdw_DECL_ENVIRON-@* ---
92dnl
93dnl Author: Mark Wooding
94dnl
95dnl Synopsis: mdw_DECL_ENVIRON
96dnl
97dnl Arguments: ---
98dnl
99dnl Use: Searches for a declaration of the global `environ' variable.
100dnl If one is found in one of the `usual' places, DECL_ENVIRON
101dnl is defined as a preprocessor symbol.
102
103AC_DEFUN([mdw_DECL_ENVIRON],
104[AC_CACHE_CHECK([for declaration of \`environ'], mdw_cv_environ,
105[AC_EGREP_CPP(environ,
106[#include <sys/types.h>
107#if HAVE_UNISTD_H
108#include <unistd.h>
109#endif
110#if STDC_HEADERS
111#include <stdlib.h>
112#include <stddef.h>
113#endif], [mdw_cv_environ=yes], [mdw_cv_environ=no])])
114if test $mdw_cv_environ = yes; then
115 AC_DEFINE([DECL_ENVIRON], [1],
116 [Define if you have the `environ' vector of environment variables.])
117fi])
118
119dnl --- *@-mdw_CHECK_MANYLIBS-@* ---
120dnl
121dnl Author: Mark Wooding
122dnl
123dnl Synopsis: mdw_CHECK_MANYLIBS(FUNC, LIBS, [IF-FOUND], [IF-NOT-FOUND],
124dnl [INCLUDES], [ARGS])
125dnl
126dnl Arguments: FUNC = a function to try to find
127dnl LIBS = a whitespace-separated list of libraries to search
128dnl IF-FOUND = what to do when the function is found
129dnl IF-NOT-FOUND = what to do when the function isn't found
130dnl INCLUDES = other include files to add
131dnl ARGS = arguments to pass the function
132dnl
133dnl Use: Searches for a library which defines FUNC. It first tries
134dnl without any libraries; then it tries each library specified
135dnl in LIBS in turn. If it finds a match, it adds the
136dnl appropriate library to `LIBS'.
137dnl
138dnl This is particularly handy under DIREIX: if you link with
139dnl `-lnsl' then you get non-NIS-aware versions of getpwnam and
140dnl so on, which is clearly a Bad Thing.
141
142AC_DEFUN([mdw_CHECK_MANYLIBS],
143[AC_CACHE_CHECK([for library containing $1], [mdw_cv_lib_$1],
144[mdw_save_LIBS="$LIBS"
145mdw_cv_lib_$1="no"
146AC_TRY_LINK([$5], [$1($6)], [mdw_cv_lib_$1="none required"])
147test "$mdw_cv_lib_$1" = "no" && for i in $2; do
148LIBS="-l$i $mdw_save_LIBS"
149AC_TRY_LINK([$5], [$1($6)],
150[mdw_cv_lib_$1="-l$i"
151break])
152done
153LIBS="$mdw_save_LIBS"])
154if test "$mdw_cv_lib_$1" != "no"; then
155 test "$mdw_cv_lib_$1" = "none required" || LIBS="$mdw_cv_lib_$1 $LIBS"
156 $3
157else :
158 $4
159fi])
160
161dnl --- *@-mdw__PYTHON_VERSION-@* ---
162dnl
163dnl Will fail hopelessly on Python < 1.5.2. Nobody uses that any more,
164dnl right?
165
166AC_DEFUN([mdw__PYTHON_VERSION],
167[$1 -c 'from sys import *; v = argv[1]; vv = v.split("."); x = 0
168for i in range(len(vv)): x = x | (int(vv[i]) << (24 - i * 8))
169exit(x > hexversion)' $2])
170
171dnl --- *@-mdw_PROG_PYTHON-@* ---
172dnl
173dnl Author: Mark Wooding
174dnl
175dnl Synopsis: mdw_PROG_PYTHON(VERSION, [IF-FOUND], [IF-NOT-FOUND])
176dnl
177dnl Arguments: VERSION = version number of Python required
178dnl IF-FOUND = what to do if it's found
179dnl IF-NOT-FOUND = what to do if it isn't
180dnl
181dnl Use: Attempts to find a working version of Python with a late
182dnl enough version number. It supplies an option `--with-python'
183dnl to allow the user to provide a Python interpreter. If one
184dnl isn't provided explicitly, it searches for `python' and
185dnl `pythonVERSION' in the current PATH, asking them whether they
186dnl have a late enough version number. The path of the working
187dnl Python is put into the `PYTHON' environment variable;
188dnl `AC_SUBST' is used to substitute its value into Python
189dnl scripts. If there is no Python to be found, the value of
190dnl `PYTHON' is set to be `none'.
191
192AC_DEFUN([mdw_PROG_PYTHON],
193[AC_ARG_WITH([python],
194[ --with-python=PYTHON specify path to Python version $1 or newer],
195[PYTHON="$withval"],
196if test -z "$PYTHON"; then
197[AC_CACHE_CHECK([for Python version $1 or later], mdw_cv_prog_python,
198[mdw_cv_prog_python="none"
199for p in `echo "$PATH:/usr/local/bin" | tr ":" " "`; do
200 case $p in /*) ;; *) p=`pwd`/$p ;; esac
201 if mdw__PYTHON_VERSION(["$p/python"], $1); then
202 mdw_cv_prog_python="$p/python"
203 break
204 fi
205 if mdw__PYTHON_VERSION(["$p/python$1"], $1); then
206 mdw_cv_prog_python="$p/python$1"
207 break
208 fi
209done])
210PYTHON="$mdw_cv_prog_python"])
211fi
212
213AC_SUBST(PYTHON)dnl
214if test "$PYTHON" = "none"; then :
215 $3
216else :
217 $2
218fi])
219
220dnl --- *@-mdw_CHECK_PYTHON-@* ---
221dnl
222dnl Author: Mark Wooding
223dnl
224dnl Synopsis: mdw_CHECK_PYTHON(VERSION)
225dnl
226dnl Arguments: VERSION = version number of Python required
227dnl
228dnl Use: Verifies that the Python interpreter in the `PYTHON' shell
229dnl variable actually works and is of the right version. If it's
230dnl not, an error is raised and configuration is aborted.
231
232AC_DEFUN([mdw_CHECK_PYTHON],
233[AC_REQUIRE([mdw_PROG_PYTHON], [mdw_PROG_PYTHON([$1])])
234AC_MSG_CHECKING([whether Python ($PYTHON) works])
235if test "$PYTHON" != "none" && mdw__PYTHON_VERSION("$PYTHON", $1); then
236 AC_MSG_RESULT([yes])
237else
238 AC_MSG_RESULT([no])
239 AC_MSG_ERROR([Python version $1 or newer not found.
240If you have a recent enough Python, and I just failed to find it, try using
241the --with-python=PYTHON option to give me an explicit pathname.])
242fi])
243
244dnl --- *@-mdw__PERL_VERSION-@* ---
245dnl
246dnl AC_DEFUN relies on `[', `]' being quotes, so I have to drop down a level.
247
248AC_DEFUN([mdw__PERL_VERSION], [mdw__PERL_VERSION_hack([$1], [$2])])
249changequote(<<, >>)
250define(<<mdw__PERL_VERSION_hack>>, <<$1 -e 'exit ($] < $2);' >&5 2>&5>>)
251changequote([, ])
252
253dnl --- *@-mdw_PROG_PERL-@* ---
254dnl
255dnl Author: Mark Wooding
256dnl
257dnl Synopsis: mdw_PROG_PERL(VERSION, [IF-FOUND], [IF-NOT-FOUND])
258dnl
259dnl Arguments: VERSION = version number of Perl required
260dnl IF-FOUND = what to do if it's found
261dnl IF-NOT-FOUND = what to do if it isn't
262dnl
263dnl Use: Attempts to find a working version of Perl with a late
264dnl enough version number. It supplies an option `--with-perl'
265dnl to allow the user to provide a Perl interpreter. If one
266dnl isn't provided explicitly, it searches for `perl' and `perl5'
267dnl in the current PATH, asking them whether they have a late
268dnl enough version number. The path of the working Perl is
269dnl put into the `PERL' environment variable; `AC_SUBST' is used
270dnl to substitute its value into Perl scripts. If there is no
271dnl Perl to be found, the value of `PERL' is set to be `none'.
272
273AC_DEFUN([mdw_PROG_PERL],
274[AC_ARG_WITH([perl],
275[ --with-perl=PERL specify path to Perl version $1 or newer],
276[PERL="$withval"],
277if test -z "$PERL"; then
278[AC_CACHE_CHECK([for Perl version $1 or later], mdw_cv_prog_perl,
279[mdw_cv_prog_perl="none"
280for p in `echo "$PATH:/usr/local/bin" | tr ":" " "`; do
281 case $p in /*) ;; *) p=`pwd`/$p ;; esac
282 if mdw__PERL_VERSION(["$p/perl"], $1); then
283 mdw_cv_prog_perl="$p/perl"
284 break
285 fi
286 if mdw__PERL_VERSION(["$p/perl5"], $1); then
287 mdw_cv_prog_perl="$p/perl5"
288 break
289 fi
290done])
291PERL="$mdw_cv_prog_perl"])
292fi
293
294AC_SUBST(PERL)dnl
295if test "$PERL" = "none"; then :
296 $3
297else :
298 $2
299fi])
300
301dnl --- *@-mdw_CHECK_PERL-@* ---
302dnl
303dnl Author: Mark Wooding
304dnl
305dnl Synopsis: mdw_CHECK_PERL(VERSION)
306dnl
307dnl Arguments: VERSION = version number of Perl required
308dnl
309dnl Use: Verifies that the Perl interpreter in the `PERL' shell
310dnl variable actually works and is of the right version. If it's
311dnl not, an error is raised and configuration is aborted.
312
313AC_DEFUN([mdw_CHECK_PERL],
314[AC_REQUIRE([mdw_PROG_PERL], [mdw_PROG_PERL([$1])])
315AC_MSG_CHECKING([whether Perl ($PERL) works])
316if test "$PERL" != "none" && mdw__PERL_VERSION("$PERL", $1); then
317 AC_MSG_RESULT([yes])
318else
319 AC_MSG_RESULT([no])
320 AC_MSG_ERROR([Perl version $1 or newer not found.
321If you have a recent enough Perl, and I just failed to find it, try using
322the --with-perl=PERL option to give me an explicit pathname.])
323fi])
324
325dnl --- *@-mdw_PERLLIB_CHECK-@* ---
326dnl
327dnl Author: Mark Wooding
328dnl
329dnl Synopsis: mdw_PERLLIB_CHECK(LIBRARY)
330dnl
331dnl Arguments: LIBRARY = name of a Perl library to check for
332dnl
333dnl Use: Ensures that a Perl script can `use LIBRARY;'. If it can,
334dnl all's well and good; if it can't, `LIBRARY.pm' is added to
335dnl the variable `NEEDED_PERLLIBS' and a line which adds
336dnl `pkgdatadir' to Perl's `@INC' array is placed in the
337dnl variable `INC_PERLLIBS'; `AC_SUBST' is called for both of
338dnl these variables. It's expected that `NEEDED_PERLLIBS' will
339dnl be used in the `Makefile.in' to decide which versions from
340dnl the distribution need installing.
341dnl
342dnl This macro isn't terribly useful in the general case. It
343dnl Also implicitly assumes that `$PERL' is Perl 5 or later.
344
345AC_DEFUN([mdw__PERLLIB_INIT],
346[AC_SUBST(INC_PERLLIBS)dnl
347AC_SUBST(NEEDED_PERLLIBS)dnl
348])
349
350AC_DEFUN([mdw_PERLLIB_CHECK],
351[AC_REQUIRE([mdw__PERLLIB_INIT])
352AC_REQUIRE([mdw_CHECK_PERL], [mdw_PROG_PERL([5])])
353AC_CACHE_CHECK([for Perl library $1], mdw_cv_perllib_$1,
354[if $PERL -e 'use $1;' >&5 2>&5; then
355 mdw_cv_perllib_$1="yes"
356else
357 mdw_cv_perllib_$1="no"
358fi])
359
360if test "$mdw_cv_perllib_$1" = "no"; then
361 NEEDED_PERLLIBS="$NEEDED_PERLLIBS $1.pm"
362
363 # --- Deal with autoconf lossage ---
364 #
365 # It doesn't want to define `prefix' until rather later on, so I have
366 # to bodge it here.
367
368 if test -z "$INC_PERLLIBS"; then
369 mdw_old_prefix="$prefix"
370 test "$prefix" = "NONE" && prefix="$ac_default_prefix";
371 INC_PERLLIBS="BEGIN { push @INC, \"`eval echo $datadir/$PACKAGE`\"; }"
372 prefix="$mdw_old_prefix";
373 fi
374fi])
375
376dnl --- *@-mdw_GCC_FLAGS-@* ---
377dnl
378dnl Author: Mark Wooding
379dnl
380dnl Synopsis: mdw_GCC_FLAGS([FLAGS], [CFLAGS], [C++FLAGS])
381dnl
382dnl Arguments: FLAGS = GCC compiler flags to add (default is
383dnl `-pedantic -Wall')
384dnl CFLAGS = GCC C compiler flags to add (default is empty)
385dnl C++FLAGS = GCC C++ compiler flags to add (default is
386dnl `-fhandle-exceptions').
387dnl
388dnl Use: If the C compiler is GCC, add the compiler flags.
389
390AC_DEFUN([mdw_GCC_FLAGS],
391[if test "$GCC" = "yes"; then
392 CFLAGS="$CFLAGS ifelse([$1], [], [-pedantic -Wall], [$1])"
393 CFLAGS="$CFLAGS ifelse([$2], [], [], [$2])"
394fi
395if test "$GXX" = "yes"; then
396 CXXFLAGS="$CXXFLAGS ifelse([$1], [], [-pedantic -Wall], [$1])"
397 CXXFLAGS="$CXXFLAGS ifelse([$3], [], [-fhandle-exceptions], [$3])"
398fi])
399
400dnl --- *@-mdw_INIT_LIB-@* ---
401dnl
402dnl Author: Mark Wooding
403dnl
404dnl Synopsis: mdw_INIT_LIB(LIB, NAME, VERSION, [PACKAGE])
405dnl
406dnl Arguments: LIB = the name of the library (and the package)
407dnl NAME = a presentable version of the library's name
408dnl VERSION = version of the library
409dnl PACKAGE = package name to pass on to AM_INIT_AUTOMAKE
410dnl
411dnl Use: Sets up various useful variables. This macro calls
412dnl AM_INIT_AUTOMAKE, which might be considered useful. It also
413dnl provides variables for the use of `lib-config.in'.
414
415AC_DEFUN([mdw_INIT_LIB],
416[AM_INIT_AUTOMAKE(ifelse([$4], [], [$1], [$4]), [$3])
417LIBRARY="$1" AC_SUBST(LIBRARY)
418LIBNAME="$2" AC_SUBST(LIBNAME)])
419
420dnl --- *@-mdw_LIB_CONFIG-@* ---
421dnl
422dnl Author: Mark Wooding
423dnl
424dnl Synopsis: mdw_LIB_CONFIG(LIB, NAME, VERSION, IF-FOUND, IF-NOT-FOUND)
425dnl
426dnl Arguments: LIB = the name of the library (and its configuration program)
427dnl NAME = a presentable version of the library's name
428dnl VERSION = version of library required
429dnl IF-FOUND = what to do if found
430dnl IF-NOT-FOUND = what to do if not found
431dnl
432dnl Use: Configures a library client program, using a configuration
433dnl script provided by the library maintainer.
434dnl
435dnl The default version is 1.0.0pre0; the default action is to
436dnl add everything to the CFLAGS and LIBS variables, and complain
437dnl if the library couldn't be found.
438dnl
439dnl The variable LIB_VERSION contains the version number of
440dnl the library; LIB_CFLAGS is the C compiler flags required
441dnl and LIB_LIBS is the linker flags.
442
443AC_DEFUN([mdw_LIB_CONFIG],
444[pushdef([upname], translit([$1], [a-z], [A-Z]))dnl
445AC_MSG_CHECKING([for $2 library])
446if $1-config --check $3 >/dev/null 2>&1; then
447 upname[]_VERSION=`$1-config --version`
448 upname[]_CFLAGS=`$1-config --cflags`
449 upname[]_LIBS=`$1-config --libs`
450 AC_SUBST(upname[]_VERSION)
451 AC_SUBST(upname[]_CFLAGS)
452 AC_SUBST(upname[]_LIBS)
453 ifelse([$4], [],
454 [CFLAGS="$CFLAGS $upname[]_CFLAGS"
455 LIBS="$upname[]_LIBS $LIBS"],
456 $4)
457 AC_MSG_RESULT([$upname[]_VERSION])
458else
459 ifelse([$5], [],
460 AC_MSG_ERROR([$2 library not found or too old.]),
461 $5)
462 AC_MSG_RESULT([not found])
463fi
464popdef([upname])])
465
466dnl --- *@-mdw_MLIB-@* ---
467dnl
468dnl Author: Mark Wooding
469dnl
470dnl Synopsis: mdw_MLIB(VERSION, IF-FOUND, IF-NOT-FOUND
471dnl
472dnl Arguments: VERSION = version of library required
473dnl IF-FOUND = what to do if found
474dnl IF-NOT-FOUND = what to do if not found
475dnl
476dnl Use: Configures an mLib client program.
477
478AC_DEFUN([mdw_MLIB], [mdw_LIB_CONFIG(mLib, mLib, $@)])
479
480dnl --- *@-mdw_MGLIB-@* ---
481dnl
482dnl Author: Mark Wooding
483dnl
484dnl Synopsis: mdw_MGLIB(VERSION, IF-FOUND, IF-NOT-FOUND
485dnl
486dnl Arguments: VERSION = version of library required
487dnl IF-FOUND = what to do if found
488dnl IF-NOT-FOUND = what to do if not found
489dnl
490dnl Use: Configures an mgLib client program.
491
492AC_DEFUN([mdw_MGLIB],
493[AC_REQUIRE([mdw_MLIB], [mdw_MLIB([2.0.3])])
494mdw_LIB_CONFIG(mgLib, mgLib, $@)])
495
496dnl --- *@-mdw_CATACOMB-@* ---
497dnl
498dnl Author: Mark Wooding
499dnl
500dnl Synopsis: mdw_CATACOMB([VERSION], [IF-FOUND], [IF-NOT-FOUND])
501dnl
502dnl Arguments: VERSION = version of Catacomb required
503dnl IF-FOUND = what to do if found
504dnl IF-NOT-FOUND = what to do if not found
505dnl
506dnl Use: Configures the program as a Catacomb client.
507
508AC_DEFUN([mdw_CATACOMB],
509[AC_REQUIRE([mdw_MLIB], [mdw_MLIB([2.0.3])])
510mdw_LIB_CONFIG(catacomb, Catacomb, $@)])
511
512dnl --- *@-mdw_PK-@* ---
513dnl
514dnl Author: Mark Wooding
515dnl
516dnl Synopsis: mdw_PK([VERSION], [IF-FOUND], [IF-NOT-FOUND])
517dnl
518dnl Arguments: VERSION = version of PK required
519dnl IF-FOUND = what to do if found
520dnl IF-NOT-FOUND = what to do if not found
521dnl
522dnl Use: Configures the program as a PK client.
523
524AC_DEFUN([mdw_PK],
525[AC_REQUIRE([mdw_MLIB], [mdw_MLIB([2.0.3])])
526mdw_LIB_CONFIG(pk, PK, $@)])
527
528dnl --- *@-mdw_OPT_NDEBUG-@* ---
529dnl
530dnl Author: Mark Wooding
531dnl
532dnl Synopsis: mdw_OPT_NDEBUG
533dnl
534dnl Arguments: ---
535dnl
536dnl Use: Turns on the `NDEBUG' flag, to disable useful things like
537dnl assertions.
538
539AC_DEFUN([mdw_OPT_NDEBUG],
540[AC_ARG_ENABLE(debugging,
541[ --disable-debugging spews vast swathes of useless information],
542[if test "$enableval" = "no"; then
543 AC_DEFINE([NDEBUG], [1],
544 [Define to turn off assertions and other debugging. Not recommended.])
545fi])])
546
547dnl --- *@-mdw_OPT_EFENCE-@* ---
548dnl
549dnl Author: Mark Wooding
550dnl
551dnl Synopsis: mdw_OPT_EFENCE
552dnl
553dnl Arguments: ---
554dnl
555dnl Use: Links with the Electric Fence library.
556
557AC_DEFUN([mdw_OPT_EFENCE],
558[AC_ARG_WITH(electric-fence,
559[ --with-electric-fence link programs with Electric Fence],
560[if test "$withval" = "yes"; then
561 AC_CHECK_LIB(efence, malloc)
562fi])])
563
564dnl --- *@-mdw_OPT_TRACE-@* ---
565dnl
566dnl Author: Mark Wooding
567dnl
568dnl Synopsis: mdw_OPT_TRACE
569dnl
570dnl Arguments: ---
571dnl
572dnl Use: Turns on the `NTRACE' flag, to disable useful things like
573dnl trace outputs.
574
575AC_DEFUN([mdw_OPT_TRACE],
576[AC_ARG_ENABLE(tracing,
577[ --disable-tracing disable output of trace information],
578[if test "$enableval" = "no"; then
579 AC_DEFINE([NTRACE], [1], [Define to turn off tracing.])
580fi])])
581
582dnl --- *@-mdw_OPT_mLib_TRACK-@* ---
583dnl
584dnl Author: Mark Wooding
585dnl
586dnl Synopsis: mdw_OPT_mLib_TRACK(PROGRAM)
587dnl
588dnl Arguments: PROGRAM = name of this program or package.
589dnl
590dnl Use: Controls the unsupported mLib memory tracker. The
591dnl following are defined:
592dnl
593dnl --enable-track turns on malloc tracking
594dnl --enable-blame-PROGRAM tracks malloc contexts in PROGRAM
595dnl
596dnl There must be a separate `blame' option for each program,
597dnl so that the various blame options in a hierarchy get
598dnl propagated properly. This is an obsolete feature from the
599dnl days when mLib was provided as a subdirectory of other
600dnl packages.
601
602AC_DEFUN([mdw_OPT_mLib_TRACK],
603[AC_REQUIRE([mdw_OPT_TRACE])
604AC_ARG_ENABLE(track,
605[ --enable-track enable tracking of malloc and free],
606[AC_DEFINE([TRACK_ENABLE], [1],
607 [Define to turn on memory tracking. Doesn't work properly.])])
608AC_ARG_ENABLE(blame-$1,
609[ --enable-blame-$1
610 track malloc contexts while in $1],
611[AC_DEFINE([TRACK_BLAME], [1],
612 [Define to track mallocs in this code.])])])
613
614dnl --- *@-mdw_OPT_mLib_DEBUG-@* ---
615dnl
616dnl Author: Mark Wooding
617dnl
618dnl Synopsis: mdw_OPT_mLib_DEBUG(PROGRAM)
619dnl
620dnl Arguments: PROGRAM = name of this program or package.
621dnl
622dnl Use: Provides all of the above debugging options.
623
624AC_DEFUN([mdw_OPT_mLib_DEBUG],
625[AC_REQUIRE([mdw_OPT_NDEBUG])
626AC_REQUIRE([mdw_OPT_mLib_TRACK], [mdw_OPT_mLib_TRACK([$1])])])
627
628dnl --- *@-mdw_DEFINE_PATHS-@*
629dnl
630dnl Author: Mark Wooding
631dnl
632dnl Synopsis: mdw_DEFINE_PATHS(CODE)
633dnl
634dnl Arguments: CODE = shell script code to execute
635dnl
636dnl Use: Fixes up various variables so that pathname defines can be
637dnl defined. Within CODE, you may use the following macros:
638dnl
639dnl mdw_PROG(NAME) Transformed program name
640dnl
641dnl mdw_PATH(PATH) Expanded path (may contain variables)
642dnl
643dnl mdw_DEFINE_PROG(SYMBOL, PROG)
644dnl Define a symbol as a transformed
645dnl program name.
646dnl
647dnl mdw_DEFINE_PATH(SYMBOL, NAME)
648dnl Define a symbol as an expanded path
649
650AC_DEFUN([mdw_DEFINE_PATHS],
651[mdw_prefix=$prefix mdw_exec_prefix=$exec_prefix
652mdw_transform=`echo "$program_transform_name"|sed 's,\\\\\\\\,\\\\,g; s,\\$\\$,$,g'`
653test "$prefix" = "NONE" && prefix=$ac_default_prefix
654test "$exec_prefix" = "NONE" && exec_prefix=$prefix
655$1
656prefix=$mdw_prefix exec_prefix=$mdw_exec_prefix])
657
658AC_DEFUN([mdw_PROG], [`echo "$1"|sed "$mdw_transform"`])
659AC_DEFUN([mdw_PATH], [dnl
660`t="$1"; dnl
661while :; do dnl
662case "$t" in dnl
663*\\$[]*) t=\`eval echo "$t"\`;; dnl
664*) break;; dnl
665esac; done; dnl
666echo "$t"`])
667AC_DEFUN([mdw_DEFINE_PROG],
668 [AC_DEFINE_UNQUOTED([$1], ["mdw_PROG([$2])"],
669 [Program name for $2.])])
670AC_DEFUN([mdw_DEFINE_PATH], [AC_DEFINE_UNQUOTED([$1], ["mdw_PATH([$2])"],
671 [Pathname for $2.])])
672
673dnl --- *@-mdw_DIR_TEXMF-@* ---
674dnl
675dnl Author: Mark Wooding
676dnl
677dnl Synopsis: mdw_DIR_TEXMF
678dnl
679dnl Arguments: ---
680dnl
681dnl Use: Sets the substitution `texmfdir' as a sensible TeX install
682dnl tree.
683
684AC_DEFUN([mdw_DIR_TEXMF], [
685AC_ARG_WITH([texmfdir],
686[ --with-texmfdir=DIR set the TeX install directory to DIR],
687[texmfdir=$withval],
688[AC_MSG_CHECKING([where to put installed TeX files])
689mdw_DEFINE_PATHS([
690texmfdir='${datadir}/texmf'
691for d in \
692 '${datadir}/texmf' '${prefix}/lib/texmf' \
693 '${prefix}/texmf' '${libdir}/lib/texmf'; do
694 if test -d "mdw_PATH([$d])"; then
695 texmfdir=$d
696 break
697 fi
698done
699AC_MSG_RESULT([$texmfdir])])])
700AC_SUBST(texmfdir)])
701
702dnl --- *@-mdw_MANEXT-@* ---
703dnl
704dnl Author: Mark Wooding
705dnl
706dnl Synopsis: mdw_MANEXT
707dnl
708dnl Arguments: ---
709dnl
710dnl Use: Sets the substitution `manext' for man page extensions.
711
712AC_DEFUN([mdw_MANEXT], [
713AC_ARG_WITH([man-ext],
714[ --with-man-ext=EXT give manpages the EXT extension (e.g., foo.3EXT)],
715[manext=$withval], [manext=mLib])
716AC_SUBST(manext)])
717
718dnl----- That's all, folks --------------------------------- *@--GLOB-END--@*