]> git.donarmstrong.com Git - lilypond.git/blob - aclocal.m4
* config.make.in (prefix): Prepend $(DESTDIR) to allow install
[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/fred/cvs/savannah/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         builddir="`pwd`"
481         if test "$srcdir" = "."; then
482             srcdir_build=yes
483         else
484             srcdir_build=no
485             package_builddir="`dirname $builddir`"
486             package_srcdir="`dirname  $srcdir`"
487         fi
488         AC_MSG_RESULT($builddir)
489
490         (cd stepmake 2>/dev/null || mkdir stepmake)
491         (cd stepmake; rm -f bin; ln -s ../$srcdir/bin .)
492         AC_CONFIG_AUX_DIR(bin)
493         stepmake=stepmake
494     else
495         AC_MSG_RESULT($PACKAGE)
496
497         AC_MSG_CHECKING(builddir)
498         builddir="`pwd`"
499         if test "$srcdir" = "."; then
500             srcdir_build=yes
501         else
502             srcdir_build=no
503         fi
504         AC_MSG_RESULT($builddir)
505
506         AC_MSG_CHECKING(for stepmake)
507         # Check for installed stepmake
508         if test -d $stepmake; then
509             AC_MSG_RESULT($stepmake)
510         else
511             stepmake="`cd $srcdir/stepmake; pwd`"
512             AC_MSG_RESULT($srcdir/stepmake  ($datadir/stepmake not found))
513         fi
514
515         AC_CONFIG_AUX_DIR(\
516           $HOME/usr/local/share/stepmake/bin\
517           $HOME/usr/local/lib/stepmake/bin\
518           $HOME/usr/share/stepmake/bin\
519           $HOME/usr/lib/stepmake/bin\
520           /usr/local/share/stepmake/bin\
521           /usr/local/lib/stepmake/bin\
522           /usr/share/stepmake/bin\
523           /usr/lib/stepmake/bin\
524           stepmake/bin\
525           $srcdir/stepmake/bin\
526         )
527     fi
528
529     AC_SUBST(builddir)
530     AC_SUBST(stepmake)
531     AC_SUBST(package)
532     AC_SUBST(PACKAGE)
533     AC_SUBST(PACKAGE_NAME)
534     AC_DEFINE_UNQUOTED(PACKAGE, "${PACKAGE_NAME}")
535     AC_DEFINE_UNQUOTED(TOPLEVEL_VERSION, "${FULL_VERSION}")
536
537     if test -z "$package_depth"; then
538         package_depth="."
539     else
540         package_depth="../$package_depth"
541     fi
542     export package_depth
543     AC_SUBST(package_depth)
544
545     AUTOGENERATE="This file was automatically generated by configure"
546     AC_SUBST(AUTOGENERATE)
547
548     CONFIGSUFFIX=
549     AC_ARG_ENABLE(config,
550     [  --enable-config=CONF    put settings in config-CONF.make and config-CONF.h;
551                             do \`make conf=CONF' to get output in ./out-CONF],
552     [CONFIGURATION=$enableval])
553
554     ##'
555
556     test -n "$CONFIGURATION" && CONFIGSUFFIX="-$CONFIGURATION"
557     CONFIGFILE=config$CONFIGSUFFIX
558     AC_SUBST(CONFIGSUFFIX)
559      
560     AC_CANONICAL_HOST
561     STEPMAKE_PROGS(MAKE, gmake make, REQUIRED)
562     STEPMAKE_PROGS(FIND, find, REQUIRED)
563
564     STEPMAKE_PROGS(TAR, tar, REQUIRED)
565
566     if test "x`uname`" = "xHP-UX"; then
567         AC_PATH_PROG(BASH, bash, /bin/sh)
568         STEPMAKE_WARN(avoiding buggy /bin/sh)
569         AC_PATH_PROG(SHELL, bash, /bin/ksh)
570     else
571         AC_PATH_PROG(BASH, bash, /bin/sh)
572         SHELL=/bin/sh
573         AC_SUBST(SHELL)
574     fi
575
576     STEPMAKE_PATH_PROG(PYTHON, python, REQUIRED)
577
578     if expr "$MAKE" : '.*\(echo\)' >/dev/null; then
579         $MAKE -v 2> /dev/null | grep GNU > /dev/null
580         if test "$?" = 1; then
581             warn='make (Please install *GNU* make)'
582             # STEPMAKE_WARN($warn)
583             STEPMAKE_ADD_ENTRY(REQUIRED, $warn)
584         fi
585     fi 
586
587     if test "$OSTYPE" = "cygwin" -o "$OSTYPE" = "cygwin32" -o "$OSTYPE" = "Windows_NT"; then
588         LN=cp # hard link does not work under cygnus-nt
589         LN_S='cp -r' # symbolic link does not work for native nt
590         ZIP="zip -r -9" #
591         program_suffix=.exe
592         ROOTSEP=':'
593         DIRSEP='/'
594         PATHSEP=':'
595         INSTALL="\$(SHELL) \$(stepdir)/../bin/install-dot-exe.sh -c"
596     else
597         ROOTSEP=':'
598         DIRSEP='/'
599         PATHSEP=':'
600         LN=ln
601         LN_S='ln -s'
602         ZIP="zip -r -9"
603         INSTALL="\$(SHELL) \$(stepdir)/../bin/install-sh -c"
604     fi
605     AC_SUBST(program_prefix)
606     AC_SUBST(program_suffix)
607     AC_SUBST(ZIP)
608     AC_SUBST(LN)
609     AC_SUBST(LN_S)
610     AC_SUBST(INSTALL)
611     AC_DEFINE_UNQUOTED(DIRSEP, '${DIRSEP}')
612     AC_DEFINE_UNQUOTED(PATHSEP, '${PATHSEP}')
613     AC_SUBST(DIRSEP)
614     AC_SUBST(PATHSEP)
615     AC_SUBST(ROOTSEP)
616   
617     STEPMAKE_DATADIR
618 ])
619
620     
621 AC_DEFUN(STEPMAKE_KPATHSEA, [
622         
623     AC_ARG_WITH(kpathsea-include,
624         [  --with-kpathsea-include=DIR
625                           location of the kpathsea include dir],[
626             if test "$withval" = "yes" -o "$withval" = "no"; then
627                 AC_MSG_WARN(Usage: --with-kpathsea-include=includedir)
628             else
629                 CPPFLAGS="$CPPFLAGS -I${withval}"
630             fi
631             ])
632     
633     AC_ARG_WITH(kpathsea-lib,
634         [  --with-kpathsea-lib=DIR location of the kpathsea lib dir],[
635             if test "$withval" = "yes" -o "$withval" = "no"; then
636                 AC_MSG_WARN(Usage: --with-kpathsea-lib=libdir)
637             else
638                 LDFLAGS="$LDFLAGS -L${withval}"
639             fi
640             ])
641     
642     kpathsea_b=yes
643     #FIXME --with-xxx is meant for specifying a PATH too,
644     # so this should read: --enable-kpathsea,
645     # or --with-kpathsea-include=PATH --with-kpathsea-lib=PATH
646     AC_ARG_WITH(kpathsea,
647     [  --with-kpathsea         use kpathsea lib.  Default: on],
648     [kpathsea_b=$with_kpathsea])
649
650     if test "$kpathsea_b" != "no"; then 
651         AC_HAVE_HEADERS(kpathsea/kpathsea.h)
652         AC_CHECK_LIB(kpathsea, kpse_find_file)
653         AC_CHECK_FUNCS(kpse_find_file,,kpathsea_b=no)
654         if test "$kpathsea_b" = "no"; then
655             warn='kpathsea (libkpathsea-dev or kpathsea-devel package)
656    Else, please specify the location of your kpathsea using
657    --with-kpathea-include and --with-kpathsea-lib options.  You should
658    install kpathsea; see INSTALL.txt.  Rerun ./configure
659    --without-kpathsea only if kpathsea is not available for your
660    platform.'
661             STEPMAKE_ADD_ENTRY(REQUIRED, $warn)
662         fi
663     fi
664     AC_MSG_CHECKING(whether to use kpathsea)
665     if test "$kpathsea_b" != no; then
666         AC_MSG_RESULT(yes)
667         KPATHSEA=1
668     else
669         AC_MSG_RESULT(no)
670         KPATHSEA=0
671     fi
672
673     AC_SUBST(KPATHSEA)
674     AC_DEFINE_UNQUOTED(KPATHSEA, $KPATHSEA)
675 ])
676
677
678 AC_DEFUN(STEPMAKE_LIB, [
679     STEPMAKE_PROGS(AR, ar, $1)
680     AC_PROG_RANLIB
681     STEPMAKE_OPTIONAL_REQUIRED(RANLIB, ranlib, $1)
682 ])
683
684
685 AC_DEFUN(STEPMAKE_LIBTOOL, [
686     # libtool.info ...
687     # **Never** try to set library version numbers so that they correspond
688     # to the release number of your package.  This is an abuse that only
689     # fosters misunderstanding of the purpose of library versions.
690
691     REVISION=$PATCH_LEVEL
692     # CURRENT=$MINOR_VERSION
693     CURRENT=`expr $MINOR_VERSION + 1`
694     # AGE=$(expr $MAJOR_VERSION + 1)
695     AGE=$MAJOR_VERSION
696     AC_SUBST(CURRENT)
697     AC_SUBST(REVISION)
698     AC_SUBST(AGE)
699 ])
700
701
702 AC_DEFUN(STEPMAKE_LOCALE, [
703     lang=English
704     ALL_LINGUAS="en nl"
705
706     # with/enable ??
707     AC_ARG_WITH(localedir,
708     [  --with-localedir=LOCALE use LOCALE as locale dir.  Default:
709                             PREFIX/share/locale ],
710     localedir=$with_localedir,
711     localedir='${prefix}/share/locale')
712
713     AC_ARG_WITH(lang,
714     [  --with-lang=LANG        use LANG as language to emit messages],
715     language=$with_lang,
716     language=English)
717
718     AC_MSG_CHECKING(language)    
719     case "$language" in
720       En* | en* | Am* | am* | US* | us*)
721             lang=English;;
722       NL | nl | Du* | du* | Ned* | ned*)
723             lang=Dutch;;
724       "")
725             lang=English;;
726       *)
727             lang=unknown;;
728     esac
729     AC_MSG_RESULT($lang)
730
731     if test "$lang" = "unknown" ; then
732         STEPMAKE_WARN($language not supported; available are: $ALL_LINGUAS)
733     fi
734
735 ])
736
737
738 AC_DEFUN(STEPMAKE_MAKEINFO, [
739     STEPMAKE_PROGS(MAKEINFO, makeinfo, $1)
740     if test "$MAKEINFO" = "makeinfo"; then
741         AC_MSG_CHECKING(whether makeinfo can split html by @node)
742         mkdir -p out
743         makeinfo --html --output=out/split <<EOF
744 \input texinfo
745 \input texinfo @c -*-texinfo-*-
746 @setfilename split.info
747 @settitle split.info
748 @bye
749 EOF
750         if test -d out/split; then
751             SPLITTING_MAKEINFO=yes
752             AC_MSG_RESULT(yes)
753             rm -rf out/split
754         else
755             AC_MSG_RESULT(no)
756             STEPMAKE_WARN(your html documentation will be one large file)
757             rm -rf out/split
758         fi
759     fi
760     AC_SUBST(SPLITTING_MAKEINFO)
761 ])
762
763
764
765 AC_DEFUN(STEPMAKE_MAN, [
766     STEPMAKE_PROGS(GROFF, groff ditroff, $1)
767     AC_SUBST(GROFF)
768     STEPMAKE_PROGS(TROFF, troff, $1)
769     AC_SUBST(TROFF)
770     STEPMAKE_PROGS(TBL, tbl, $1)
771     AC_SUBST(TBL)
772 ])
773
774
775 AC_DEFUN(STEPMAKE_MSGFMT, [
776     STEPMAKE_PROGS(MSGFMT, msgfmt, $1)
777 ])
778
779
780 # Check for program ($2), set full path result to ($1).
781 # If missing, add entry to missing-list ($3, one of 'OPTIONAL', 'REQUIRED')
782 AC_DEFUN(STEPMAKE_PATH_PROG, [
783     AC_CHECK_PROGS($1, $2, no)
784     STEPMAKE_OPTIONAL_REQUIRED($1, $2, $3)
785     if test $? -eq 0; then
786         AC_PATH_PROG($1, $2)
787         if test -n "$4"; then
788             STEPMAKE_CHECK_VERSION($1, $3, $4)
789         fi
790     fi
791 ])
792
793
794 # Check for program in set of names ($2), set result to ($1) .
795 # If missing, add entry to missing-list ($3, one of 'OPTIONAL', 'REQUIRED')
796 # If exists, and a minimal version ($4) is required
797 AC_DEFUN(STEPMAKE_PROGS, [
798     AC_CHECK_PROGS($1, $2, no)
799     STEPMAKE_OPTIONAL_REQUIRED($1, $2, $3)
800     if test $? -eq 0 -a -n "$4"; then
801         STEPMAKE_CHECK_VERSION($1, $3, $4)
802     fi
803 ])
804
805
806 AC_DEFUN(STEPMAKE_PERL, [
807     STEPMAKE_PATH_PROG(PERL, perl, $1)
808 ])
809
810
811 AC_DEFUN(STEPMAKE_PYTHON_DEVEL, [
812     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)
813     if test -z "$PYTHON_HEADER"; then
814         warn='python.h (python-devel, python-dev or libpython-dev package)'
815         STEPMAKE_ADD_ENTRY($1, $warn)
816     fi
817 ])
818
819
820 AC_DEFUN(STEPMAKE_TEXMF_DIRS, [
821     AC_ARG_ENABLE(tfm-path,
822     [  --enable-tfm-path=PATH  set path of tex directories where tfm files live,
823                             esp.: cmr10.tfm.  Default: use kpsewhich],
824     [tfm_path=$enableval],
825     [tfm_path=auto] )
826
827     # ugh
828     STEPMAKE_PROGS(KPSEWHICH, kpsewhich, OPTIONAL)
829     AC_MSG_CHECKING(for tfm path)
830
831     TFM_FONTS="cmr msam"
832
833     if test "x$tfm_path" = xauto ; then
834         if test "x$KPSEWHICH" != "xno" ; then
835             for i in $TFM_FONTS; do
836                 dir=`$KPSEWHICH tfm ${i}10.tfm`
837                 TFM_PATH="$TFM_PATH `dirname $dir`"
838             done
839         else
840             STEPMAKE_WARN(Please specify where cmr10.tfm lives:
841     ./configure --enable-tfm-path=/usr/local/TeX/lib/tex/fonts)
842         fi
843     else
844          TFM_PATH=$tfm_path
845     fi
846
847     TFM_PATH=`echo $TFM_PATH | tr ':' ' '`
848     AC_MSG_RESULT($TFM_PATH)
849     AC_SUBST(TFM_PATH)
850 ])
851
852
853 AC_DEFUN(STEPMAKE_TEXMF, [
854     # urg, never know what names these teTeX guys will think up
855
856     STEPMAKE_PROGS(METAFONT, mf mfont, $1)
857     STEPMAKE_PROGS(INIMETAFONT, inimf inimfont, $1)
858
859     AC_MSG_CHECKING(for working metafont mode)
860     modelist='ljfour lj4 lj3 lj2 ljet laserjet'
861     for MFMODE in $modelist; do
862         $METAFONT "\mode:=$MFMODE; mode_setup; end." > /dev/null 2>&1
863         if test -f mfput.tfm; then
864             break;
865         fi
866     done
867     AC_MSG_RESULT($MFMODE)
868
869     rm -f mfput.*
870
871     AC_SUBST(MFMODE)
872 ])
873
874
875 AC_DEFUN(STEPMAKE_WARN, [
876     AC_MSG_WARN($1)
877     warn_b=yes
878 ])
879
880