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