]> git.donarmstrong.com Git - lilypond.git/blob - aclocal.m4
*** empty log message ***
[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     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 ])
338
339
340 AC_DEFUN(STEPMAKE_GCC, [
341     if test "$GCC" = "yes"; then
342         STEPMAKE_CHECK_VERSION(CC, $1, $2)
343     else
344         warn="$CC (Please install *GNU* cc)"
345         STEPMAKE_ADD_ENTRY($1, $warn)
346     fi
347 ])
348
349
350 AC_DEFUN(STEPMAKE_GETTEXT, [
351     presome=${prefix}
352     if test "$prefix" = "NONE"; then
353             presome=${ac_default_prefix}
354     fi
355     LOCALEDIR=`echo ${localedir} | sed "s!\\\${prefix}!$presome!"`
356     
357     AC_SUBST(localedir)
358     AC_DEFINE_UNQUOTED(LOCALEDIR, ["${LOCALEDIR}"])
359     AC_CHECK_LIB(intl, gettext)
360     AC_CHECK_FUNCS(gettext)
361 ])
362
363
364 AC_DEFUN(STEPMAKE_GUILE, [
365     STEPMAKE_PATH_PROG(GUILE, guile, $1)
366 ])
367
368
369 #   STEPMAKE_GUILE_FLAGS --- set flags for compiling and linking with Guile
370 #
371 #   This macro runs the guile-config script, installed with Guile,
372 #   to find out where Guile's header files and libraries are
373 #   installed.  It sets two variables, marked for substitution, as
374 #   by AC_SUBST.
375 #   
376 #     GUILE_CFLAGS --- flags to pass to a C or C++ compiler to build
377 #             code that uses Guile header files.  This is almost
378 #             always just a -I flag.
379 #   
380 #     GUILE_LDFLAGS --- flags to pass to the linker to link a
381 #             program against Guile.  This includes -lguile for
382 #             the Guile library itself, any libraries that Guile
383 #             itself requires (like -lqthreads), and so on.  It may
384 #             also include a -L flag to tell the compiler where to
385 #             find the libraries.
386
387 AC_DEFUN([STEPMAKE_GUILE_FLAGS], [
388     exe=`STEPMAKE_GET_EXECUTABLE($guile_config)`
389     if test -x $exe; then
390         AC_MSG_CHECKING([guile compile flags])
391         GUILE_CFLAGS="`$guile_config compile`"
392         AC_MSG_RESULT($GUILE_CFLAGS)
393         AC_MSG_CHECKING([guile link flags])
394         GUILE_LDFLAGS="`$guile_config link`"
395         AC_MSG_RESULT($GUILE_LDFLAGS)
396     fi
397     AC_SUBST(GUILE_CFLAGS)
398     AC_SUBST(GUILE_LDFLAGS)
399 ])
400
401
402 AC_DEFUN(STEPMAKE_GUILE_DEVEL, [
403     ## First, let's just see if we can find Guile at all.
404     AC_MSG_CHECKING([for guile-config])
405     for guile_config in guile-config $target-guile-config $build-guile-config; do
406         AC_MSG_RESULT([$guile_config])
407         if ! $guile_config --version > /dev/null 2>&1 ; then
408             AC_MSG_WARN([cannot execute $guile_config])
409             AC_MSG_CHECKING([if we are cross compiling])
410             GUILE_CONFIG='echo no guile-config'
411         else
412             GUILE_CONFIG=$guile_config
413             break
414         fi
415     done
416     STEPMAKE_OPTIONAL_REQUIRED(GUILE_CONFIG, $guile_config, $1)
417     if test $? -ne 0; then
418         STEPMAKE_ADD_ENTRY($1, 'guile-config (guile-devel, guile-dev or libguile-dev package)')
419     fi 
420
421     STEPMAKE_CHECK_SEARCH_RESULT(GUILE_CONFIG)
422     # urg.  should test functionality rather than version.
423     if test $? -eq 0 -a -n "$2"; then
424         STEPMAKE_CHECK_VERSION(GUILE_CONFIG, $1, $2)
425     fi
426
427     AC_SUBST(GUILE_CONFIG)
428     
429     guile_version="$ver"
430     changequote(<<, >>)dnl
431     GUILE_MAJOR_VERSION=`expr $guile_version : '\([0-9]*\)'`
432     GUILE_MINOR_VERSION=`expr $guile_version : '[0-9]*\.\([0-9]*\)'`
433     GUILE_PATCH_LEVEL=`expr $guile_version : '[0-9]*\.[0-9]*\.\([0-9]*\)'`
434     changequote([, ])dnl
435     STEPMAKE_GUILE_FLAGS
436     AC_DEFINE_UNQUOTED(GUILE_MAJOR_VERSION, $GUILE_MAJOR_VERSION)
437     AC_DEFINE_UNQUOTED(GUILE_MINOR_VERSION, $GUILE_MINOR_VERSION)
438     AC_DEFINE_UNQUOTED(GUILE_PATCH_LEVEL, $GUILE_PATCH_LEVEL)
439 ])
440
441
442 AC_DEFUN(STEPMAKE_GXX, [
443     if test "$GXX" = "yes"; then
444         STEPMAKE_CHECK_VERSION(CXX, $1, $2)
445     else
446         warn="$CXX (Please install *GNU* c++)"
447         STEPMAKE_ADD_ENTRY($1, $warn)
448     fi
449 ])
450
451
452 AC_DEFUN(STEPMAKE_INIT, [
453
454     AC_PREREQ(2.50)
455     . $srcdir/VERSION
456     FULL_VERSION=$MAJOR_VERSION.$MINOR_VERSION.$PATCH_LEVEL
457     if test x$MY_PATCH_LEVEL != x; then
458         FULL_VERSION=$FULL_VERSION.$MY_PATCH_LEVEL
459     fi
460
461     # urg: don't "fix" this: irix doesn't know about [:lower:] and [:upper:]
462     changequote(<<, >>)dnl
463     PACKAGE=`echo $PACKAGE_NAME | tr '[a-z]' '[A-Z]'`
464     package=`echo $PACKAGE_NAME | tr '[A-Z]' '[a-z]'`
465     changequote([, ])dnl
466
467     # No versioning on directory names of sub-packages 
468     # urg, urg
469     stepmake=${datadir}/stepmake
470     presome=${prefix}
471     if test "$prefix" = "NONE"; then
472             presome=${ac_default_prefix}
473     fi
474     stepmake=`echo ${stepmake} | sed "s!\\\${prefix}!$presome!"`
475
476     # urg, how is this supposed to work?
477     if test "$program_prefix" = "NONE"; then
478           program_prefix=
479     fi
480     if test "$program_suffix" = "NONE"; then
481           program_suffix=
482     fi
483
484     AC_MSG_CHECKING(Package)
485     if test "$PACKAGE" = "STEPMAKE"; then
486         AC_MSG_RESULT(Stepmake package!)
487
488         AC_MSG_CHECKING(builddir)
489
490         ugh_ugh_autoconf250_builddir="`pwd`"
491         
492         if test "$srcdir" = "."; then
493             srcdir_build=yes
494         else
495             srcdir_build=no
496             package_builddir="`dirname $ugh_ugh_autoconf250_builddir`"
497             package_srcdir="`dirname  $srcdir`"
498         fi
499         AC_MSG_RESULT($ugh_ugh_autoconf250_builddir)
500
501         (cd stepmake 2>/dev/null || mkdir stepmake)
502         (cd stepmake; rm -f bin; ln -s ../$srcdir/bin .)
503 # only possible with autoconf < 2.50 -- hardcoded in configure.in
504 #       AC_CONFIG_AUX_DIR(bin)
505         stepmake=stepmake
506     else
507         AC_MSG_RESULT($PACKAGE)
508
509         AC_MSG_CHECKING(builddir)
510         ugh_ugh_autoconf250_builddir="`pwd`"
511         if test "$srcdir" = "."; then
512             srcdir_build=yes
513         else
514             srcdir_build=no
515         fi
516         AC_MSG_RESULT($ugh_ugh_autoconf250_builddir)
517
518         AC_MSG_CHECKING(for stepmake)
519         # Check for installed stepmake
520         if test -d $stepmake; then
521             AC_MSG_RESULT($stepmake)
522         else
523             stepmake="`cd $srcdir/stepmake; pwd`"
524             AC_MSG_RESULT([$srcdir/stepmake  ($datadir/stepmake not found)])
525         fi
526
527 # only possible with autoconf < 2.50 -- hardcoded in configure.in
528 #       AC_CONFIG_AUX_DIR(\
529 #         stepmake/bin\
530 #         $srcdir/stepmake/bin\
531 #       )
532     fi
533
534     AC_SUBST(ugh_ugh_autoconf250_builddir)
535     AC_SUBST(stepmake)
536     AC_SUBST(package)
537     AC_SUBST(PACKAGE)
538     AC_SUBST(PACKAGE_NAME)
539     # We don't need the upper case variant,
540     # so stick to macros are uppercase convention.
541     # AC_DEFINE_UNQUOTED(package, ["${package}"])
542     # AC_DEFINE_UNQUOTED(PACKAGE, ["${PACKAGE}"])
543     AC_DEFINE_UNQUOTED(PACKAGE, ["${package}"])
544     AC_DEFINE_UNQUOTED(PACKAGE_NAME, ["${PACKAGE_NAME}"])
545     AC_DEFINE_UNQUOTED(TOPLEVEL_VERSION, ["${FULL_VERSION}"])
546
547     if test -z "$package_depth"; then
548         package_depth="."
549     else
550         package_depth="../$package_depth"
551     fi
552     export package_depth
553     AC_SUBST(package_depth)
554
555     AUTOGENERATE="This file was automatically generated by configure"
556     AC_SUBST(AUTOGENERATE)
557
558     CONFIGSUFFIX=
559     AC_ARG_ENABLE(config,
560     [  --enable-config=CONF    put settings in config-CONF.make and config-CONF.h;
561                             do \`make conf=CONF' to get output in ./out-CONF],
562     [CONFIGURATION=$enableval])
563
564     ##'
565
566     test -n "$CONFIGURATION" && CONFIGSUFFIX="-$CONFIGURATION"
567     CONFIGFILE=config$CONFIGSUFFIX
568     AC_SUBST(CONFIGSUFFIX)
569      
570     AC_CANONICAL_HOST
571     STEPMAKE_PROGS(MAKE, gmake make, REQUIRED)
572     STEPMAKE_PROGS(FIND, find, REQUIRED)
573
574     STEPMAKE_PROGS(TAR, tar, REQUIRED)
575
576     if test "$(echo 2)" != "2" ||
577         test "x`uname`" = "xHP-UX"; then
578         AC_PATH_PROG(KSH, ksh, /bin/ksh)
579         AC_PATH_PROG(BASH, bash, $KSH)
580         STEPMAKE_WARN(avoiding buggy /bin/sh)
581         AC_PATH_PROG(SHELL, bash, $KSH)
582     else
583         SHELL=/bin/sh
584         AC_PATH_PROG(BASH, bash, $SHELL)
585     fi
586     AC_SUBST(SHELL)
587     
588     STEPMAKE_PATH_PROG(PYTHON, python, REQUIRED)
589
590     if expr "$MAKE" : '.*\(echo\)' >/dev/null; then
591         $MAKE -v 2> /dev/null | grep GNU > /dev/null
592         if test "$?" = 1; then
593             warn='make (Please install *GNU* make)'
594             # STEPMAKE_WARN($warn)
595             STEPMAKE_ADD_ENTRY(REQUIRED, $warn)
596         fi
597     fi 
598
599     if test "$OSTYPE" = "cygwin" -o "$OSTYPE" = "cygwin32" -o "$OSTYPE" = "Windows_NT"; then
600         LN=cp # hard link does not work under cygnus-nt
601         LN_S='cp -r' # symbolic link does not work for native nt
602         ZIP="zip -r -9" #
603         program_suffix=.exe
604         ROOTSEP=':'
605         DIRSEP='/'
606         PATHSEP=':'
607         INSTALL="\$(SHELL) \$(stepdir)/../bin/install-dot-exe.sh -c"
608     else
609         ROOTSEP=':'
610         DIRSEP='/'
611         PATHSEP=':'
612         LN=ln
613         LN_S='ln -s'
614         ZIP="zip -r -9"
615         INSTALL="\$(SHELL) \$(stepdir)/../bin/install-sh -c"
616     fi
617     AC_SUBST(program_prefix)
618     AC_SUBST(program_suffix)
619     AC_SUBST(ZIP)
620     AC_SUBST(LN)
621     AC_SUBST(LN_S)
622     AC_SUBST(INSTALL)
623     AC_DEFINE_UNQUOTED(DIRSEP, ['${DIRSEP}'])
624     AC_DEFINE_UNQUOTED(PATHSEP, ['${PATHSEP}'])
625     AC_SUBST(DIRSEP)
626     AC_SUBST(PATHSEP)
627     AC_SUBST(ROOTSEP)
628   
629     STEPMAKE_DATADIR
630     STEPMAKE_LIBDIR
631 ])
632
633     
634 AC_DEFUN(STEPMAKE_KPATHSEA, [
635         
636     AC_ARG_WITH(kpathsea-include,
637         [  --with-kpathsea-include=DIR
638                           location of the kpathsea include dir],[
639             if test "$withval" = "yes" -o "$withval" = "no"; then
640                 AC_MSG_WARN(Usage: --with-kpathsea-include=includedir)
641             else
642                 CPPFLAGS="$CPPFLAGS -I${withval}"
643             fi
644             ])
645     
646     AC_ARG_WITH(kpathsea-lib,
647         [  --with-kpathsea-lib=DIR location of the kpathsea lib dir],[
648             if test "$withval" = "yes" -o "$withval" = "no"; then
649                 AC_MSG_WARN(Usage: --with-kpathsea-lib=libdir)
650             else
651                 LDFLAGS="$LDFLAGS -L${withval}"
652             fi
653             ])
654     
655     kpathsea_b=yes
656     #FIXME --with-xxx is meant for specifying a PATH too,
657     # so this should read: --enable-kpathsea,
658     # or --with-kpathsea-include=PATH --with-kpathsea-lib=PATH
659     AC_ARG_WITH(kpathsea,
660     [  --with-kpathsea         use kpathsea lib.  Default: on],
661     [kpathsea_b=$with_kpathsea])
662
663     if test "$kpathsea_b" != "no"; then 
664         AC_CHECK_HEADERS([kpathsea/kpathsea.h])
665         AC_CHECK_LIB(kpathsea, kpse_find_file)
666         AC_CHECK_FUNCS(kpse_find_file,,kpathsea_b=no)
667         if test "$kpathsea_b" = "no"; then
668             warn='kpathsea (libkpathsea-dev or kpathsea-devel package)
669    Else, please specify the location of your kpathsea using
670    --with-kpathsea-include and --with-kpathsea-lib options.  You should
671    install kpathsea; see INSTALL.txt.  Rerun ./configure
672    --without-kpathsea only if kpathsea is not available for your
673    platform.'
674             STEPMAKE_ADD_ENTRY(REQUIRED, $warn)
675         fi
676     fi
677     AC_MSG_CHECKING(whether to use kpathsea)
678     if test "$kpathsea_b" != no; then
679         AC_MSG_RESULT(yes)
680         KPATHSEA=1
681     else
682         AC_MSG_RESULT(no)
683         KPATHSEA=0
684     fi
685
686     AC_SUBST(KPATHSEA)
687     AC_DEFINE_UNQUOTED(KPATHSEA, $KPATHSEA)
688 ])
689
690
691 AC_DEFUN(STEPMAKE_LIB, [
692     STEPMAKE_PROGS(AR, ar, $1)
693     AC_PROG_RANLIB
694     STEPMAKE_OPTIONAL_REQUIRED(RANLIB, ranlib, $1)
695 ])
696
697
698 AC_DEFUN(STEPMAKE_LIBTOOL, [
699     # libtool.info ...
700     # **Never** try to set library version numbers so that they correspond
701     # to the release number of your package.  This is an abuse that only
702     # fosters misunderstanding of the purpose of library versions.
703
704     REVISION=$PATCH_LEVEL
705     # CURRENT=$MINOR_VERSION
706     CURRENT=`expr $MINOR_VERSION + 1`
707     # AGE=`expr $MAJOR_VERSION + 1`
708     AGE=$MAJOR_VERSION
709     AC_SUBST(CURRENT)
710     AC_SUBST(REVISION)
711     AC_SUBST(AGE)
712 ])
713
714
715 AC_DEFUN(STEPMAKE_LOCALE, [
716     lang=English
717     ALL_LINGUAS="en nl"
718
719     # with/enable ??
720     AC_ARG_WITH(localedir,
721     [  --with-localedir=LOCALE use LOCALE as locale dir.  Default:
722                             PREFIX/share/locale ],
723     localedir=$with_localedir,
724     localedir='${prefix}/share/locale')
725
726     AC_ARG_WITH(lang,
727     [  --with-lang=LANG        use LANG as language to emit messages],
728     language=$with_lang,
729     language=English)
730
731     AC_MSG_CHECKING(language)    
732     case "$language" in
733       En* | en* | Am* | am* | US* | us*)
734             lang=English;;
735       NL | nl | Du* | du* | Ned* | ned*)
736             lang=Dutch;;
737       "")
738             lang=English;;
739       *)
740             lang=unknown;;
741     esac
742     AC_MSG_RESULT($lang)
743
744     if test "$lang" = "unknown" ; then
745         STEPMAKE_WARN($language not supported; available are: $ALL_LINGUAS)
746     fi
747
748 ])
749
750
751 AC_DEFUN(STEPMAKE_MAKEINFO, [
752     STEPMAKE_PROGS(MAKEINFO, makeinfo, $1)
753     if test "$MAKEINFO" = "makeinfo"; then
754         AC_MSG_CHECKING(whether makeinfo can split html by @node)
755         mkdir -p out
756         makeinfo --html --output=out/split <<EOF
757 \input texinfo
758 \input texinfo @c -*-texinfo-*-
759 @setfilename split.info
760 @settitle split.info
761 @bye
762 EOF
763         if test -d out/split; then
764             SPLITTING_MAKEINFO=yes
765             AC_MSG_RESULT(yes)
766             rm -rf out/split
767         else
768             AC_MSG_RESULT(no)
769             STEPMAKE_WARN(your html documentation will be one large file)
770             rm -rf out/split
771         fi
772     fi
773     AC_SUBST(SPLITTING_MAKEINFO)
774 ])
775
776
777
778 AC_DEFUN(STEPMAKE_MAN, [
779     STEPMAKE_PROGS(GROFF, groff ditroff, $1)
780     AC_SUBST(GROFF)
781     STEPMAKE_PROGS(TROFF, troff, $1)
782     AC_SUBST(TROFF)
783     STEPMAKE_PROGS(TBL, tbl, $1)
784     AC_SUBST(TBL)
785 ])
786
787
788 AC_DEFUN(STEPMAKE_MSGFMT, [
789     STEPMAKE_PROGS(MSGFMT, msgfmt, $1)
790 ])
791
792
793 # Check for program ($2), set full path result to ($1).
794 # If missing, add entry to missing-list ($3, one of 'OPTIONAL', 'REQUIRED')
795 AC_DEFUN(STEPMAKE_PATH_PROG, [
796     AC_CHECK_PROGS($1, $2, no)
797     STEPMAKE_OPTIONAL_REQUIRED($1, $2, $3)
798     if test $? -eq 0; then
799         AC_PATH_PROG($1, $2)
800         if test -n "$4"; then
801             STEPMAKE_CHECK_VERSION($1, $3, $4)
802         fi
803     fi
804 ])
805
806
807 # Check for program in set of names ($2), set result to ($1) .
808 # If missing, add entry to missing-list ($3, one of 'OPTIONAL', 'REQUIRED')
809 # If exists, and a minimal version ($4) is required
810 AC_DEFUN(STEPMAKE_PROGS, [
811     AC_CHECK_PROGS($1, $2, no)
812     STEPMAKE_OPTIONAL_REQUIRED($1, $2, $3)
813     if test $? -eq 0 -a -n "$4"; then
814         STEPMAKE_CHECK_VERSION($1, $3, $4)
815     fi
816 ])
817
818
819 AC_DEFUN(STEPMAKE_PERL, [
820     STEPMAKE_PATH_PROG(PERL, perl, $1)
821 ])
822
823
824 AC_DEFUN(STEPMAKE_PYTHON_DEVEL, [
825     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])
826     if test -z "$PYTHON_HEADER"; then
827         warn='python.h (python-devel, python-dev or libpython-dev package)'
828         STEPMAKE_ADD_ENTRY($1, $warn)
829     fi
830 ])
831
832
833 AC_DEFUN(STEPMAKE_TEXMF_DIRS, [
834     AC_ARG_ENABLE(tfm-path,
835     [  --enable-tfm-path=PATH  set path of tex directories where tfm files live,
836                             esp.: cmr10.tfm.  Default: use kpsewhich],
837     [tfm_path=$enableval],
838     [tfm_path=auto] )
839
840     # ugh
841     STEPMAKE_PROGS(KPSEWHICH, kpsewhich, OPTIONAL)
842     AC_MSG_CHECKING(for tfm path)
843
844     TFM_FONTS="cmr msam"
845
846     if test "x$tfm_path" = xauto ; then
847         if test "x$KPSEWHICH" != "xno" ; then
848             for i in $TFM_FONTS; do
849                 dir=`$KPSEWHICH tfm ${i}10.tfm`
850                 TFM_PATH="$TFM_PATH `dirname $dir`"
851             done
852         else
853             STEPMAKE_WARN(Please specify where cmr10.tfm lives:
854     ./configure --enable-tfm-path=/usr/local/TeX/lib/tex/fonts)
855         fi
856     else
857          TFM_PATH=$tfm_path
858     fi
859
860     TFM_PATH=`echo $TFM_PATH | tr ':' ' '`
861     AC_MSG_RESULT($TFM_PATH)
862     AC_SUBST(TFM_PATH)
863 ])
864
865
866 AC_DEFUN(STEPMAKE_TEXMF, [
867     # urg, never know what names these teTeX guys will think up
868
869     STEPMAKE_PROGS(METAFONT, mf mfont, $1)
870     STEPMAKE_PROGS(INIMETAFONT, inimf inimfont, $1)
871
872     AC_MSG_CHECKING(for working metafont mode)
873     modelist='ljfour lj4 lj3 lj2 ljet laserjet'
874     for MFMODE in $modelist; do
875         $METAFONT "\mode:=$MFMODE; mode_setup; end." > /dev/null 2>&1
876         if test -f mfput.tfm; then
877             break;
878         fi
879     done
880     AC_MSG_RESULT($MFMODE)
881
882     rm -f mfput.*
883
884     AC_SUBST(MFMODE)
885 ])
886
887
888 AC_DEFUN(STEPMAKE_WARN, [
889     AC_MSG_WARN($1)
890     warn_b=yes
891 ])
892
893