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