]> git.donarmstrong.com Git - lilypond.git/blob - aclocal.m4
(process_music): use octavation
[lilypond.git] / aclocal.m4
1 dnl aclocal.m4   -*-shell-script-*-
2 dnl WARNING WARNING WARNING
3 dnl do not edit! this is aclocal.m4, generated from /home/hanwen/usr/src/lilypond/stepmake/aclocal.m4
4 dnl aclocal.m4   -*-shell-script-*-
5 dnl StepMake subroutines for configure.in
6
7
8 ### mostly interal macros
9
10 # Get full path of executable ($1)
11 AC_DEFUN(STEPMAKE_GET_EXECUTABLE, [
12     ## which doesn't work in ash, if /usr/bin/which isn't installed
13     ## type -p doesn't work in ash
14     ## command -v doesn't work in zsh
15     ## command -v "$1" 2>&1
16     ## this test should work in ash, bash, pdksh (ksh), zsh
17     type -p "$1" 2>/dev/null | tail -1 | awk '{print $NF}'
18 ])
19
20
21 # Get version string from executable ($1)
22 AC_DEFUN(STEPMAKE_GET_VERSION, [
23     ## "$1" --version 2>&1 | grep -v '^$' | head -1 | awk '{print $NF}'
24     ##
25     ## ARG.
26     ## Workaround for broken Debian gcc version string:
27     ##     gcc (GCC) 3.1.1 20020606 (Debian prerelease)
28     ##
29     ## Assume, and hunt for, dotted version multiplet.
30     changequote(<<, >>)dnl
31     "$1" --version 2>&1 | grep '[0-9]\.[0-9]' | head -1 | \
32         sed -e 's/.*[^-.0-9]\([0-9][0-9]*\.[0-9][.0-9]*\).*/\1/'
33     changequote([, ])dnl
34 ])
35
36 # Calculate simplistic numeric version from version string ($1)
37 # As yet, we have no need for something more elaborate.
38 AC_DEFUN(STEPMAKE_NUMERIC_VERSION, [
39     echo "$1" | awk -F. '
40     {
41       if ([$]3) {three = [$]3}
42       else {three = 0}
43     }
44     {printf "%d\n", [$]1*1000000 + [$]2*1000 + three}'
45 ])
46
47
48 # Add item ($2) to list ($1, one of 'OPTIONAL', 'REQUIRED')
49 AC_DEFUN(STEPMAKE_ADD_ENTRY, [
50     eval "$1"=\"`eval echo \"'$'$1\" \"$2\"`\"
51 ])
52
53 # Check if tested program ($2) was found ($1).
54 # If not, add entry to missing-list ($3, one of 'OPTIONAL', 'REQUIRED').
55 # We could abort here if a 'REQUIRED' program is not found
56 AC_DEFUN(STEPMAKE_OPTIONAL_REQUIRED, [
57     STEPMAKE_CHECK_SEARCH_RESULT($1)
58     if test $? -ne 0; then
59         STEPMAKE_ADD_ENTRY($3, $2)
60         if test "$3" = "REQUIRED"; then
61             command="echo ERROR: $2 not found"
62             # abort configure process here?
63         else
64             command="- echo $2 not found"
65         fi
66         eval "$1"='$command'
67         false
68     else
69         true
70     fi
71 ])
72
73
74 # Return if tested proram ($1) was found (true) or not (false).
75 AC_DEFUN(STEPMAKE_CHECK_SEARCH_RESULT, [
76     r="`eval echo '$'"$1"`"
77     if test -n "$r" -a "$r" != "error" -a "$r" != "no" && expr '`eval echo '$'"$1"`' : '.*\(echo\)' > /dev/null; then
78         true
79     else
80         ##STEPMAKE_WARN(cannot find $2. $3)
81         false
82     fi
83 ])
84
85
86 # Check version of program ($1)
87 # If version is smaller than requested ($3),
88 # add entry to missing-list ($2, one of 'OPTIONAL', 'REQUIRED').
89 AC_DEFUN(STEPMAKE_CHECK_VERSION, [
90     r="`eval echo '$'"$1"`"
91     AC_MSG_CHECKING([$r version])
92     exe=`STEPMAKE_GET_EXECUTABLE($r)`
93     ver=`STEPMAKE_GET_VERSION($exe)`
94     num=`STEPMAKE_NUMERIC_VERSION($ver)`
95     req=`STEPMAKE_NUMERIC_VERSION($3)`
96     AC_MSG_RESULT([$ver])
97     if test "$num" -lt "$req"; then
98         STEPMAKE_ADD_ENTRY($2, ["$r $3 (installed: $ver)"])
99     fi
100 ])
101
102 ### Macros to build configure.in
103
104
105 AC_DEFUN(STEPMAKE_BIBTEX2HTML, [
106     STEPMAKE_PROGS(BIBTEX2HTML, bibtex2html bib2html, $1)
107     if test "$BIBTEX2HTML" = "bib2html"; then
108         BIBTEX2HTML_FLAGS='$< $(@)'
109     else
110         BIBTEX2HTML_FLAGS='-o $(@D)/$(*F) $<'
111     fi
112     AC_SUBST(BIBTEX2HTML)
113     AC_SUBST(BIBTEX2HTML_FLAGS)
114 ])
115
116
117 AC_DEFUN(STEPMAKE_BISON, [
118     # ugh, automake: we want (and check for) bison
119     AC_PROG_YACC
120     
121     STEPMAKE_PROGS(BISON, bison, $1)
122     
123     # urg.  should test functionality rather than version.
124     if test "$BISON" = "bison" -a -n "$2"; then
125         STEPMAKE_CHECK_VERSION(BISON, $1, $2)
126     fi
127 ])
128
129
130 AC_DEFUN(STEPMAKE_COMPILE, [
131     # -O is necessary to get inlining
132     CFLAGS=${CFLAGS-""}
133     CXXFLAGS=${CXXFLAGS-$CFLAGS}
134     LDFLAGS=${LDFLAGS-""}
135     checking_b=yes
136     optimise_b=yes
137     profile_b=no
138     debug_b=yes
139
140     AC_ARG_ENABLE(checking,
141     [  --enable-checking       set runtime checks (assert calls).  Default: on],
142     [checking_b=$enableval] )
143
144     AC_ARG_ENABLE(debugging,
145     [  --enable-debugging      compile with debugging info.  Default: on],
146     [debug_b=$enableval])
147
148     AC_ARG_ENABLE(optimising,
149     [  --enable-optimising     compile with optimising.  Default: on],
150     [optimise_b=$enableval])
151
152     AC_ARG_ENABLE(profiling, 
153     [  --enable-profiling      compile with gprof support.  Default: off],
154     [profile_b=$enableval])
155     
156
157     if test "$checking_b" = no; then
158         # ugh
159         AC_DEFINE(NDEBUG)
160         DEFINES="$DEFINES -DNDEBUG"
161     fi
162
163     if test "$optimise_b" = yes; then
164         OPTIMIZE="-O2 -finline-functions"
165     fi
166
167
168     if test $profile_b = yes; then
169         EXTRA_LIBES="-pg"
170         OPTIMIZE="$OPTIMIZE -pg"
171     fi
172
173     if test $debug_b = yes; then        
174         OPTIMIZE="$OPTIMIZE -g"
175     fi
176
177
178     AC_PROG_CC
179     STEPMAKE_OPTIONAL_REQUIRED(CC, cc, $1)
180     LD='$(CC)'
181     AC_SUBST(LD)
182
183     CFLAGS="$CFLAGS $OPTIMIZE"
184     CPPFLAGS=${CPPFLAGS-""}
185
186     AC_MSG_CHECKING([for IEEE-conformance compiler flags])
187     save_cflags="$CFLAGS"
188     case "$host" in
189         alpha*-*-*)
190             dnl should do compile test?
191             AC_MSG_RESULT(-mieee)
192             CFLAGS="-mieee $CFLAGS"
193             ;;
194         *)
195             AC_MSG_RESULT([none])
196             ;;
197     esac
198     AC_SUBST(cross_compiling)
199     AC_SUBST(CFLAGS)
200     AC_SUBST(CPPFLAGS)
201     AC_SUBST(LDFLAGS)
202     AC_SUBST(ICFLAGS)
203     AC_SUBST(ILDFLAGS)
204     AC_SUBST(DEFINES)
205     AC_SUBST(EXTRA_LIBES)
206 ])
207
208 AC_DEFUN(STEPMAKE_CXX, [
209     AC_LANG([C++])
210     AC_PROG_CXX
211     STEPMAKE_OPTIONAL_REQUIRED(CXX, c++, $1)
212
213     CPPFLAGS="$CPPFLAGS $DEFINES"
214     CXXFLAGS="$CXXFLAGS $OPTIMIZE"
215     LDFLAGS="$LDFLAGS $EXTRA_LIBES"
216
217     AC_SUBST(CXXFLAGS)
218     AC_SUBST(CXX)
219     LD='$(CXX)'
220     AC_SUBST(LD)
221 ])
222
223
224 AC_DEFUN(STEPMAKE_CXXTEMPLATE, [
225     AC_CACHE_CHECK([whether explicit instantiation is needed],
226         lily_cv_need_explicit_instantiation,
227         AC_LINK_IFELSE([AC_LANG_PROGRAM([[
228     template <class T> struct foo { static int baz; };
229     template <class T> int foo<T>::baz = 1;
230     ]], [[ return foo<int>::baz; ]])],[lily_cv_need_explicit_instantiation=no],[lily_cv_need_explicit_instantiation=yes]))
231     if test x"$lily_cv_need_explicit_instantiation"x = x"yes"x; then
232         AC_DEFINE(NEED_EXPLICIT_INSTANTIATION)
233     fi
234 ])
235
236
237 AC_DEFUN(STEPMAKE_DATADIR, [
238     if test "$datadir" = "\${prefix}/share"; then
239             datadir='${prefix}/share'
240     fi
241     presome=${prefix}
242     if test "$prefix" = "NONE"; then
243         presome=${ac_default_prefix}
244     fi
245     
246     build_package_datadir=$ugh_ugh_autoconf250_builddir/share/$package
247     
248     DATADIR=`echo ${datadir} | sed "s!\\\${prefix}!$presome!"`
249     BUILD_PACKAGE_DATADIR=`echo ${build_package_datadir} | sed "s!\\\${prefix}!$presome!"`
250     
251     AC_SUBST(datadir)
252     AC_SUBST(build_package_datadir)
253     AC_DEFINE_UNQUOTED(DATADIR, ["${DATADIR}"])
254     AC_DEFINE_UNQUOTED(BUILD_PACKAGE_DATADIR, ["${BUILD_PACKAGE_DATADIR}"])
255 ])
256
257 ## ugh: cut & paste programming from datadir. 
258 AC_DEFUN(STEPMAKE_LIBDIR, [
259
260     if test "$libdir" = "\${exec_prefix}/lib"; then
261         libdir='${exec_prefix}/lib'
262     fi
263     presome=$exec_prefix
264     build_package_libdir=$ugh_ugh_autoconf250_builddir/lib/$package
265     
266     LIBDIR=`echo ${libdir} | sed "s!\\\${exec_prefix}!$presome!"`
267     BUILD_PACKAGE_LIBDIR=`echo ${build_package_libdir} | sed "s!\\\${exec_prefix}!$presome!"`
268     
269     AC_SUBST(libdir)
270     AC_SUBST(build_package_libdir)
271     AC_DEFINE_UNQUOTED(LIBDIR, ["${LIBDIR}"])
272     AC_DEFINE_UNQUOTED(BUILD_PACKAGE_LIBDIR, ["${BUILD_PACKAGE_LIBDIR}"])
273 ])
274
275
276 AC_DEFUN(STEPMAKE_END, [
277     AC_SUBST(OPTIONAL)
278     AC_SUBST(REQUIRED)
279     
280     AC_CONFIG_FILES([$CONFIGFILE.make:config.make.in])
281 AC_OUTPUT
282
283     
284     if test -n "$OPTIONAL"; then
285         echo
286         echo "WARNING: Please consider installing optional programs: $OPTIONAL"
287     fi
288
289     if test -n "$REQUIRED"; then
290         echo
291         echo "ERROR: Please install required programs: $REQUIRED"
292     fi
293     
294     if test -n "$OPTIONAL$REQUIRED"; then
295         echo
296         echo "See INSTALL.txt for more information on how to build $PACKAGE_NAME"
297         echo "Remove config.cache before rerunning ./configure"
298     fi
299     
300     if test -n "$REQUIRED"; then
301         rm -f $srcdir/GNUmakefile
302         exit 1
303     fi
304
305     # regular in-place build
306     # test for srcdir_build = yes ?
307     if test "$srcdir_build" = "yes"; then
308         rm -f $srcdir/GNUmakefile
309         cp $srcdir/GNUmakefile.in $srcdir/GNUmakefile
310         chmod 444 $srcdir/GNUmakefile
311     else # --srcdir build
312         rm -f GNUmakefile
313         cp $srcdir/make/srcdir.make.in GNUmakefile
314         chmod 444 GNUmakefile
315     fi
316 ])
317
318
319 AC_DEFUN(STEPMAKE_FLEX, [
320     # ugh, automake: we want (and check for) flex
321     # AC_PROG_LEX
322     # urg: automake 1.3: hope this doesn't break 1.2 ac_cv_pro_lex_root hack...
323
324     # AC_PROG_LEX()
325     # ugh, ugh
326     ac_cv_prog_lex_root=lex.yy
327     STEPMAKE_PROGS(FLEX, flex, $1)
328 ])
329
330
331 AC_DEFUN(STEPMAKE_FLEXLEXER, [
332     AC_CHECK_HEADERS([FlexLexer.h],[true],[false])
333     if test $? -ne 0; then
334         warn='FlexLexer.h (flex package)'
335         STEPMAKE_ADD_ENTRY($1, $warn)
336     fi
337     # check for yyFlexLexer.yy_current_buffer,
338     # in 2.5.4 <= flex < 2.5.29
339     AC_LANG_PUSH(C++)
340     AC_CACHE_CHECK([for yyFlexLexer.yy_current_buffer],
341         [stepmake_flexlexer_yy_current_buffer],
342         AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
343 using namespace std;
344 #include <FlexLexer.h>
345 class yy_flex_lexer: public yyFlexLexer
346 {
347   public:
348     yy_flex_lexer ()
349     {
350       yy_current_buffer = 0;
351     }
352 };
353 ]])],
354             [stepmake_flexlexer_yy_current_buffer=yes],
355             [stepmake_flexlexer_yy_current_buffer=no]))
356     if test $stepmake_flexlexer_yy_current_buffer = yes; then
357         AC_DEFINE(HAVE_FLEXLEXER_YY_CURRENT_BUFFER, 1, [Define to 1 if yyFlexLexer has yy_current_buffer.])
358     fi
359     AC_LANG_POP(C++)
360 ])
361
362
363 AC_DEFUN(STEPMAKE_GCC, [
364     if test "$GCC" = "yes"; then
365         STEPMAKE_CHECK_VERSION(CC, $1, $2)
366     else
367         warn="$CC (Please install *GNU* cc)"
368         STEPMAKE_ADD_ENTRY($1, $warn)
369     fi
370 ])
371
372
373 AC_DEFUN(STEPMAKE_GETTEXT, [
374     presome=${prefix}
375     if test "$prefix" = "NONE"; then
376             presome=${ac_default_prefix}
377     fi
378     LOCALEDIR=`echo ${localedir} | sed "s!\\\${prefix}!$presome!"`
379     
380     AC_SUBST(localedir)
381     AC_DEFINE_UNQUOTED(LOCALEDIR, ["${LOCALEDIR}"])
382     AC_CHECK_LIB(intl, gettext)
383     AC_CHECK_FUNCS(gettext)
384 ])
385
386
387 AC_DEFUN(STEPMAKE_GUILE, [
388     STEPMAKE_PATH_PROG(GUILE, guile, $1)
389 ])
390
391
392 #   STEPMAKE_GUILE_FLAGS --- set flags for compiling and linking with Guile
393 #
394 #   This macro runs the guile-config script, installed with Guile,
395 #   to find out where Guile's header files and libraries are
396 #   installed.  It sets two variables, marked for substitution, as
397 #   by AC_SUBST.
398 #   
399 #     GUILE_CFLAGS --- flags to pass to a C or C++ compiler to build
400 #             code that uses Guile header files.  This is almost
401 #             always just a -I flag.
402 #   
403 #     GUILE_LDFLAGS --- flags to pass to the linker to link a
404 #             program against Guile.  This includes -lguile for
405 #             the Guile library itself, any libraries that Guile
406 #             itself requires (like -lqthreads), and so on.  It may
407 #             also include a -L flag to tell the compiler where to
408 #             find the libraries.
409
410 AC_DEFUN([STEPMAKE_GUILE_FLAGS], [
411     exe=`STEPMAKE_GET_EXECUTABLE($guile_config)`
412     if test -x $exe; then
413         AC_MSG_CHECKING([guile compile flags])
414         GUILE_CFLAGS="`$guile_config compile`"
415         AC_MSG_RESULT($GUILE_CFLAGS)
416         AC_MSG_CHECKING([guile link flags])
417         GUILE_LDFLAGS="`$guile_config link`"
418         AC_MSG_RESULT($GUILE_LDFLAGS)
419     fi
420     AC_SUBST(GUILE_CFLAGS)
421     AC_SUBST(GUILE_LDFLAGS)
422 ])
423
424
425 AC_DEFUN(STEPMAKE_GUILE_DEVEL, [
426     ## First, let's just see if we can find Guile at all.
427     AC_MSG_CHECKING([for guile-config])
428     for guile_config in $GUILE_CONFIG guile-config $target-guile-config $build-guile-config; do
429         AC_MSG_RESULT([$guile_config])
430         if ! $guile_config --version > /dev/null 2>&1 ; then
431             AC_MSG_WARN([cannot execute $guile_config])
432             AC_MSG_CHECKING([if we are cross compiling])
433             GUILE_CONFIG='echo no guile-config'
434         else
435             GUILE_CONFIG=$guile_config
436             break
437         fi
438     done
439     STEPMAKE_OPTIONAL_REQUIRED(GUILE_CONFIG, $guile_config, $1)
440     if test $? -ne 0; then
441         STEPMAKE_ADD_ENTRY($1, 'guile-config (guile-devel, guile-dev or libguile-dev package)')
442     fi 
443
444     STEPMAKE_CHECK_SEARCH_RESULT(GUILE_CONFIG)
445     # urg.  should test functionality rather than version.
446     if test $? -eq 0 -a -n "$2"; then
447         STEPMAKE_CHECK_VERSION(GUILE_CONFIG, $1, $2)
448     fi
449
450     AC_SUBST(GUILE_CONFIG)
451     
452     guile_version="$ver"
453     changequote(<<, >>)dnl
454     GUILE_MAJOR_VERSION=`expr $guile_version : '\([0-9]*\)'`
455     GUILE_MINOR_VERSION=`expr $guile_version : '[0-9]*\.\([0-9]*\)'`
456     GUILE_PATCH_LEVEL=`expr $guile_version : '[0-9]*\.[0-9]*\.\([0-9]*\)'`
457     changequote([, ])dnl
458     STEPMAKE_GUILE_FLAGS
459     AC_DEFINE_UNQUOTED(GUILE_MAJOR_VERSION, $GUILE_MAJOR_VERSION)
460     AC_DEFINE_UNQUOTED(GUILE_MINOR_VERSION, $GUILE_MINOR_VERSION)
461     AC_DEFINE_UNQUOTED(GUILE_PATCH_LEVEL, $GUILE_PATCH_LEVEL)
462 ])
463
464
465 AC_DEFUN(STEPMAKE_GXX, [
466     if test "$GXX" = "yes"; then
467         STEPMAKE_CHECK_VERSION(CXX, $1, $2)
468     else
469         warn="$CXX (Please install *GNU* c++)"
470         STEPMAKE_ADD_ENTRY($1, $warn)
471     fi
472 ])
473
474
475 AC_DEFUN(STEPMAKE_INIT, [
476
477     AC_PREREQ(2.50)
478     . $srcdir/VERSION
479     FULL_VERSION=$MAJOR_VERSION.$MINOR_VERSION.$PATCH_LEVEL
480     if test x$MY_PATCH_LEVEL != x; then
481         FULL_VERSION=$FULL_VERSION.$MY_PATCH_LEVEL
482     fi
483
484     # urg: don't "fix" this: irix doesn't know about [:lower:] and [:upper:]
485     changequote(<<, >>)dnl
486     PACKAGE=`echo $PACKAGE_NAME | tr '[a-z]' '[A-Z]'`
487     package=`echo $PACKAGE_NAME | tr '[A-Z]' '[a-z]'`
488     changequote([, ])dnl
489
490     # No versioning on directory names of sub-packages 
491     # urg, urg
492     stepmake=${datadir}/stepmake
493     presome=${prefix}
494     if test "$prefix" = "NONE"; then
495             presome=${ac_default_prefix}
496     fi
497     stepmake=`echo ${stepmake} | sed "s!\\\${prefix}!$presome!"`
498
499     # urg, how is this supposed to work?
500     if test "$program_prefix" = "NONE"; then
501           program_prefix=
502     fi
503     if test "$program_suffix" = "NONE"; then
504           program_suffix=
505     fi
506
507     AC_MSG_CHECKING(Package)
508     if test "$PACKAGE" = "STEPMAKE"; then
509         AC_MSG_RESULT(Stepmake package!)
510
511         AC_MSG_CHECKING(builddir)
512
513         ugh_ugh_autoconf250_builddir="`pwd`"
514         
515         if test "$srcdir" = "."; then
516             srcdir_build=yes
517         else
518             srcdir_build=no
519             package_builddir="`dirname $ugh_ugh_autoconf250_builddir`"
520             package_srcdir="`dirname  $srcdir`"
521         fi
522         AC_MSG_RESULT($ugh_ugh_autoconf250_builddir)
523
524         (cd stepmake 2>/dev/null || mkdir stepmake)
525         (cd stepmake; rm -f bin; ln -s ../$srcdir/bin .)
526 # only possible with autoconf < 2.50 -- hardcoded in configure.in
527 #       AC_CONFIG_AUX_DIR(bin)
528         stepmake=stepmake
529     else
530         AC_MSG_RESULT($PACKAGE)
531
532         AC_MSG_CHECKING(builddir)
533         ugh_ugh_autoconf250_builddir="`pwd`"
534         if test "$srcdir" = "."; then
535             srcdir_build=yes
536         else
537             srcdir_build=no
538         fi
539         AC_MSG_RESULT($ugh_ugh_autoconf250_builddir)
540
541         AC_MSG_CHECKING(for stepmake)
542         # Check for installed stepmake
543         if test -d $stepmake; then
544             AC_MSG_RESULT($stepmake)
545         else
546             stepmake="`cd $srcdir/stepmake; pwd`"
547             AC_MSG_RESULT([$srcdir/stepmake  ($datadir/stepmake not found)])
548         fi
549
550 # only possible with autoconf < 2.50 -- hardcoded in configure.in
551 #       AC_CONFIG_AUX_DIR(\
552 #         stepmake/bin\
553 #         $srcdir/stepmake/bin\
554 #       )
555     fi
556
557     AC_SUBST(ugh_ugh_autoconf250_builddir)
558     AC_SUBST(stepmake)
559     AC_SUBST(package)
560     AC_SUBST(PACKAGE)
561     AC_SUBST(PACKAGE_NAME)
562     # We don't need the upper case variant,
563     # so stick to macros are uppercase convention.
564     # AC_DEFINE_UNQUOTED(package, ["${package}"])
565     # AC_DEFINE_UNQUOTED(PACKAGE, ["${PACKAGE}"])
566     AC_DEFINE_UNQUOTED(PACKAGE, ["${package}"])
567     AC_DEFINE_UNQUOTED(PACKAGE_NAME, ["${PACKAGE_NAME}"])
568     AC_DEFINE_UNQUOTED(TOPLEVEL_VERSION, ["${FULL_VERSION}"])
569
570     if test -z "$package_depth"; then
571         package_depth="."
572     else
573         package_depth="../$package_depth"
574     fi
575     export package_depth
576     AC_SUBST(package_depth)
577
578     AUTOGENERATE="This file was automatically generated by configure"
579     AC_SUBST(AUTOGENERATE)
580
581     CONFIGSUFFIX=
582     AC_ARG_ENABLE(config,
583     [  --enable-config=CONF    put settings in config-CONF.make and config-CONF.h;
584                             do \`make conf=CONF' to get output in ./out-CONF],
585     [CONFIGURATION=$enableval])
586
587     ##'
588
589     test -n "$CONFIGURATION" && CONFIGSUFFIX="-$CONFIGURATION"
590     CONFIGFILE=config$CONFIGSUFFIX
591     AC_SUBST(CONFIGSUFFIX)
592      
593     AC_CANONICAL_HOST
594     STEPMAKE_PROGS(MAKE, gmake make, REQUIRED)
595     STEPMAKE_PROGS(FIND, find, REQUIRED)
596
597     STEPMAKE_PROGS(TAR, tar, REQUIRED)
598
599     if test "$(echo 2)" != "2" ||
600         test "x`uname`" = "xHP-UX"; then
601         AC_PATH_PROG(KSH, ksh, /bin/ksh)
602         AC_PATH_PROG(BASH, bash, $KSH)
603         STEPMAKE_WARN(avoiding buggy /bin/sh)
604         AC_PATH_PROG(SHELL, bash, $KSH)
605     else
606         SHELL=/bin/sh
607         AC_PATH_PROG(BASH, bash, $SHELL)
608     fi
609     AC_SUBST(SHELL)
610     
611     STEPMAKE_PATH_PROG(PYTHON, python, REQUIRED)
612
613     if expr "$MAKE" : '.*\(echo\)' >/dev/null; then
614         $MAKE -v 2> /dev/null | grep GNU > /dev/null
615         if test "$?" = 1; then
616             warn='make (Please install *GNU* make)'
617             # STEPMAKE_WARN($warn)
618             STEPMAKE_ADD_ENTRY(REQUIRED, $warn)
619         fi
620     fi 
621
622     if test "$OSTYPE" = "cygwin" -o "$OSTYPE" = "cygwin32" -o "$OSTYPE" = "Windows_NT"; then
623         LN=cp # hard link does not work under cygnus-nt
624         LN_S='cp -r' # symbolic link does not work for native nt
625         ZIP="zip -r -9" #
626         program_suffix=.exe
627         ROOTSEP=':'
628         DIRSEP='/'
629         PATHSEP=':'
630         INSTALL="\$(SHELL) \$(stepdir)/../bin/install-dot-exe.sh -c"
631     else
632         ROOTSEP=':'
633         DIRSEP='/'
634         PATHSEP=':'
635         LN=ln
636         LN_S='ln -s'
637         ZIP="zip -r -9"
638         INSTALL="\$(SHELL) \$(stepdir)/../bin/install-sh -c"
639     fi
640     AC_SUBST(program_prefix)
641     AC_SUBST(program_suffix)
642     AC_SUBST(ZIP)
643     AC_SUBST(LN)
644     AC_SUBST(LN_S)
645     AC_SUBST(INSTALL)
646     AC_DEFINE_UNQUOTED(DIRSEP, ['${DIRSEP}'])
647     AC_DEFINE_UNQUOTED(PATHSEP, ['${PATHSEP}'])
648     AC_SUBST(DIRSEP)
649     AC_SUBST(PATHSEP)
650     AC_SUBST(ROOTSEP)
651   
652     STEPMAKE_DATADIR
653     STEPMAKE_LIBDIR
654 ])
655
656     
657 AC_DEFUN(STEPMAKE_KPATHSEA, [
658         
659     AC_ARG_WITH(kpathsea-include,
660         [  --with-kpathsea-include=DIR
661                           location of the kpathsea include dir],[
662             if test "$withval" = "yes" -o "$withval" = "no"; then
663                 AC_MSG_WARN(Usage: --with-kpathsea-include=includedir)
664             else
665                 CPPFLAGS="$CPPFLAGS -I${withval}"
666             fi
667             ])
668     
669     AC_ARG_WITH(kpathsea-lib,
670         [  --with-kpathsea-lib=DIR location of the kpathsea lib dir],[
671             if test "$withval" = "yes" -o "$withval" = "no"; then
672                 AC_MSG_WARN(Usage: --with-kpathsea-lib=libdir)
673             else
674                 LDFLAGS="$LDFLAGS -L${withval}"
675             fi
676             ])
677     
678     kpathsea_b=yes
679     #FIXME --with-xxx is meant for specifying a PATH too,
680     # so this should read: --enable-kpathsea,
681     # or --with-kpathsea-include=PATH --with-kpathsea-lib=PATH
682     AC_ARG_WITH(kpathsea,
683     [  --with-kpathsea         use kpathsea lib.  Default: on],
684     [kpathsea_b=$with_kpathsea])
685
686     if test "$kpathsea_b" != "no"; then 
687         AC_CHECK_HEADERS([kpathsea/kpathsea.h])
688         AC_CHECK_LIB(kpathsea, kpse_find_file)
689         AC_CHECK_FUNCS(kpse_find_file,,kpathsea_b=no)
690         if test "$kpathsea_b" = "no"; then
691             warn='kpathsea (libkpathsea-dev or kpathsea-devel package)
692    Else, please specify the location of your kpathsea using
693    --with-kpathsea-include and --with-kpathsea-lib options.  You should
694    install kpathsea; see INSTALL.txt.  Rerun ./configure
695    --without-kpathsea only if kpathsea is not available for your
696    platform.'
697             STEPMAKE_ADD_ENTRY(REQUIRED, $warn)
698         fi
699     fi
700     AC_MSG_CHECKING(whether to use kpathsea)
701     if test "$kpathsea_b" != no; then
702         AC_MSG_RESULT(yes)
703         KPATHSEA=1
704     else
705         AC_MSG_RESULT(no)
706         KPATHSEA=0
707     fi
708
709     AC_SUBST(KPATHSEA)
710     AC_DEFINE_UNQUOTED(KPATHSEA, $KPATHSEA)
711 ])
712
713
714 AC_DEFUN(STEPMAKE_LIB, [
715     STEPMAKE_PROGS(AR, ar, $1)
716     AC_PROG_RANLIB
717     STEPMAKE_OPTIONAL_REQUIRED(RANLIB, ranlib, $1)
718 ])
719
720
721 AC_DEFUN(STEPMAKE_LIBTOOL, [
722     # libtool.info ...
723     # **Never** try to set library version numbers so that they correspond
724     # to the release number of your package.  This is an abuse that only
725     # fosters misunderstanding of the purpose of library versions.
726
727     REVISION=$PATCH_LEVEL
728     # CURRENT=$MINOR_VERSION
729     CURRENT=`expr $MINOR_VERSION + 1`
730     # AGE=`expr $MAJOR_VERSION + 1`
731     AGE=$MAJOR_VERSION
732     AC_SUBST(CURRENT)
733     AC_SUBST(REVISION)
734     AC_SUBST(AGE)
735 ])
736
737
738 AC_DEFUN(STEPMAKE_LOCALE, [
739     lang=English
740     ALL_LINGUAS="en nl"
741
742     # with/enable ??
743     AC_ARG_WITH(localedir,
744     [  --with-localedir=LOCALE use LOCALE as locale dir.  Default:
745                             PREFIX/share/locale ],
746     localedir=$with_localedir,
747     localedir='${prefix}/share/locale')
748
749     AC_ARG_WITH(lang,
750     [  --with-lang=LANG        use LANG as language to emit messages],
751     language=$with_lang,
752     language=English)
753
754     AC_MSG_CHECKING(language)    
755     case "$language" in
756       En* | en* | Am* | am* | US* | us*)
757             lang=English;;
758       NL | nl | Du* | du* | Ned* | ned*)
759             lang=Dutch;;
760       "")
761             lang=English;;
762       *)
763             lang=unknown;;
764     esac
765     AC_MSG_RESULT($lang)
766
767     if test "$lang" = "unknown" ; then
768         STEPMAKE_WARN($language not supported; available are: $ALL_LINGUAS)
769     fi
770
771 ])
772
773
774 AC_DEFUN(STEPMAKE_MAKEINFO, [
775     STEPMAKE_PROGS(MAKEINFO, makeinfo, $1)
776     if test "$MAKEINFO" = "makeinfo"; then
777         AC_MSG_CHECKING(whether makeinfo can split html by @node)
778         mkdir -p out
779         makeinfo --html --output=out/split <<EOF
780 \input texinfo
781 \input texinfo @c -*-texinfo-*-
782 @setfilename split.info
783 @settitle split.info
784 @bye
785 EOF
786         if test -d out/split; then
787             SPLITTING_MAKEINFO=yes
788             AC_MSG_RESULT(yes)
789             rm -rf out/split
790         else
791             AC_MSG_RESULT(no)
792             STEPMAKE_WARN(your html documentation will be one large file)
793             rm -rf out/split
794         fi
795     fi
796     AC_SUBST(SPLITTING_MAKEINFO)
797 ])
798
799
800
801 AC_DEFUN(STEPMAKE_MAN, [
802     STEPMAKE_PROGS(GROFF, groff ditroff, $1)
803     AC_SUBST(GROFF)
804     STEPMAKE_PROGS(TROFF, troff, $1)
805     AC_SUBST(TROFF)
806     STEPMAKE_PROGS(TBL, tbl, $1)
807     AC_SUBST(TBL)
808 ])
809
810
811 AC_DEFUN(STEPMAKE_MSGFMT, [
812     STEPMAKE_PROGS(MSGFMT, msgfmt, $1)
813 ])
814
815
816 # Check for program ($2), set full path result to ($1).
817 # If missing, add entry to missing-list ($3, one of 'OPTIONAL', 'REQUIRED')
818 AC_DEFUN(STEPMAKE_PATH_PROG, [
819     AC_CHECK_PROGS($1, $2, no)
820     STEPMAKE_OPTIONAL_REQUIRED($1, $2, $3)
821     if test $? -eq 0; then
822         AC_PATH_PROG($1, $2)
823         if test -n "$4"; then
824             STEPMAKE_CHECK_VERSION($1, $3, $4)
825         fi
826     fi
827 ])
828
829
830 # Check for program in set of names ($2), set result to ($1) .
831 # If missing, add entry to missing-list ($3, one of 'OPTIONAL', 'REQUIRED')
832 # If exists, and a minimal version ($4) is required
833 AC_DEFUN(STEPMAKE_PROGS, [
834     AC_CHECK_PROGS($1, $2, no)
835     STEPMAKE_OPTIONAL_REQUIRED($1, $2, $3)
836     if test $? -eq 0 -a -n "$4"; then
837         STEPMAKE_CHECK_VERSION($1, $3, $4)
838     fi
839 ])
840
841
842 AC_DEFUN(STEPMAKE_PERL, [
843     STEPMAKE_PATH_PROG(PERL, perl, $1)
844 ])
845
846
847 AC_DEFUN(STEPMAKE_PYTHON_DEVEL, [
848     AC_CHECK_HEADERS([python2.2/Python.h python2.1/Python.h python2.0/Python.h python2/Python.h python/Python.h python1.5/Python.h Python.h],[PYTHON_HEADER=yes])
849     if test -z "$PYTHON_HEADER"; then
850         warn='python.h (python-devel, python-dev or libpython-dev package)'
851         STEPMAKE_ADD_ENTRY($1, $warn)
852     fi
853 ])
854
855
856 AC_DEFUN(STEPMAKE_TEXMF_DIRS, [
857     AC_ARG_ENABLE(tfm-path,
858     [  --enable-tfm-path=PATH  set path of tex directories where tfm files live,
859                             esp.: cmr10.tfm.  Default: use kpsewhich],
860     [tfm_path=$enableval],
861     [tfm_path=auto] )
862
863     # ugh
864     STEPMAKE_PROGS(KPSEWHICH, kpsewhich, OPTIONAL)
865     AC_MSG_CHECKING(for tfm path)
866
867     TFM_FONTS="cmr msam"
868
869     if test "x$tfm_path" = xauto ; then
870         if test "x$KPSEWHICH" != "xno" ; then
871             for i in $TFM_FONTS; do
872                 dir=`$KPSEWHICH tfm ${i}10.tfm`
873                 TFM_PATH="$TFM_PATH `dirname $dir`"
874             done
875         else
876             STEPMAKE_WARN(Please specify where cmr10.tfm lives:
877     ./configure --enable-tfm-path=/usr/local/TeX/lib/tex/fonts)
878         fi
879     else
880          TFM_PATH=$tfm_path
881     fi
882
883     TFM_PATH=`echo $TFM_PATH | tr ':' ' '`
884     AC_MSG_RESULT($TFM_PATH)
885     AC_SUBST(TFM_PATH)
886 ])
887
888
889 AC_DEFUN(STEPMAKE_TEXMF, [
890     # urg, never know what names these teTeX guys will think up
891
892     STEPMAKE_PROGS(METAFONT, mf mfont, $1)
893     STEPMAKE_PROGS(INIMETAFONT, inimf inimfont, $1)
894
895     AC_MSG_CHECKING(for working metafont mode)
896     modelist='ljfour lj4 lj3 lj2 ljet laserjet'
897     for MFMODE in $modelist; do
898         $METAFONT "\mode:=$MFMODE; mode_setup; end." > /dev/null 2>&1
899         if test -f mfput.tfm; then
900             break;
901         fi
902     done
903     AC_MSG_RESULT($MFMODE)
904
905     rm -f mfput.*
906
907     AC_SUBST(MFMODE)
908 ])
909
910
911 AC_DEFUN(STEPMAKE_WARN, [
912     AC_MSG_WARN($1)
913     warn_b=yes
914 ])
915
916