]> git.donarmstrong.com Git - lilypond.git/blob - stepmake/aclocal.m4
release: 1.3.145
[lilypond.git] / stepmake / aclocal.m4
1 dnl aclocal.m4   -*-shell-script-*-
2 dnl StepMake subroutines for configure.in
3
4 AC_DEFUN(AC_STEPMAKE_BIBTEX2HTML, [
5     AC_CHECK_PROGS(BIBTEX2HTML, bibtex2html bib2html, error)
6     if test "$BIBTEX2HTML" = "bib2html"; then
7         BIBTEX2HTML_FLAGS='$< $(@)'
8     else
9         BIBTEX2HTML_FLAGS='-o $(@D)/$(*F) $<'
10     fi
11     AC_SUBST(BIBTEX2HTML)
12     AC_SUBST(BIBTEX2HTML_FLAGS)
13 ])
14
15
16 AC_DEFUN(AC_STEPMAKE_COMPILE, [
17     # -O is necessary to get inlining
18     CFLAGS=${CFLAGS:-""}
19     CXXFLAGS=${CXXFLAGS:-$CFLAGS}
20     LDFLAGS=${LDFLAGS:-""}
21     checking_b=yes
22     optimise_b=yes
23     profile_b=no
24     debug_b=yes
25
26     AC_ARG_ENABLE(checking,
27     [  --enable-checking       set runtime checks (assert calls).  Default: on],
28     [checking_b=$enableval] )
29
30     AC_ARG_ENABLE(debugging,
31     [  --enable-debugging      compile with debugging info.  Default: on],
32     [debug_b=$enableval])
33
34     AC_ARG_ENABLE(profiling, 
35     [  --enable-profiling      compile with gprof support.  Default: off],
36     [profile_b=$enableval])
37     
38
39     if test "$checking_b" = no; then
40         # ugh
41         AC_DEFINE(NDEBUG)
42         DEFINES="$DEFINES -DNDEBUG"
43     fi
44
45     if test "$optimise_b" = yes; then
46         OPTIMIZE="-O2 -finline-functions"
47     fi
48
49
50     if test $profile_b = yes; then
51         EXTRA_LIBES="-pg"
52         OPTIMIZE="$OPTIMIZE -pg"
53     fi
54
55     if test $debug_b = yes; then        
56         OPTIMIZE="$OPTIMIZE -g"
57     fi
58
59
60     AC_PROG_CC
61     LD='$(CC)'
62     AC_SUBST(LD)
63
64     CFLAGS="$CFLAGS $OPTIMIZE"
65     CPPFLAGS=${CPPFLAGS:-""}
66     AC_SUBST(cross_compiling)
67     AC_SUBST(CFLAGS)
68     AC_SUBST(CPPFLAGS)
69     AC_SUBST(LDFLAGS)
70     AC_SUBST(ICFLAGS)
71     AC_SUBST(ILDFLAGS)
72     AC_SUBST(DEFINES)
73     AC_SUBST(EXTRA_LIBES)
74 ])
75
76 AC_DEFUN(AC_STEPMAKE_CXX, [
77     AC_LANG_CPLUSPLUS
78     AC_PROG_CXX
79
80     AC_CHECK_HEADER(FlexLexer.h, true,
81         AC_STEPMAKE_WARN(can"\'"t find flex header. Please install Flex headers correctly))
82
83     CPPFLAGS="$CPPFLAGS $DEFINES"
84     CXXFLAGS="$CXXFLAGS $OPTIMIZE"
85     LDFLAGS="$LDFLAGS $EXTRA_LIBES"
86
87     AC_SUBST(CXXFLAGS)
88     AC_SUBST(CXX)
89     LD='$(CXX)'
90     AC_SUBST(LD)
91 ])
92
93 AC_DEFUN(AC_STEPMAKE_CXXTEMPLATE, [
94     AC_CACHE_CHECK([whether explicit instantiation is needed],
95         lily_cv_need_explicit_instantiation,
96         AC_TRY_LINK([
97     template <class T> struct foo { static int baz; };
98     template <class T> int foo<T>::baz = 1;
99     ], [ return foo<int>::baz; ],
100             lily_cv_need_explicit_instantiation=no,
101             lily_cv_need_explicit_instantiation=yes))
102     if test x"$lily_cv_need_explicit_instantiation"x = x"yes"x; then
103         AC_DEFINE(NEED_EXPLICIT_INSTANTIATION)
104     fi
105 ])
106
107 AC_DEFUN(AC_STEPMAKE_DATADIR, [
108     if test "$datadir" = "\${prefix}/share"; then
109             datadir='${prefix}/share/'$package
110     fi
111     DIR_DATADIR=${datadir}
112     presome=${prefix}
113     if test "$prefix" = "NONE"; then
114             presome=${ac_default_prefix}
115     fi
116     DIR_DATADIR=`echo ${DIR_DATADIR} | sed "s!\\\${prefix}!$presome!"`
117
118     AC_SUBST(datadir)
119     AC_SUBST(DIR_DATADIR)
120     
121     dnl yeah, so fuck me gently with a cactus: this doesnt belong here
122     dnl Please take the person responsible for inventing shell-scripts out
123     dnl and shoot him. On behalf of the sane world, thank you.
124     dnl DIR_SHAREDSTATEDIR="foobar"
125     dnl AC_SUBST(DIR_SHAREDSTATEDIR)
126     
127     AC_DEFINE_UNQUOTED(DIR_DATADIR, "${DIR_DATADIR}")
128 ])
129
130 AC_DEFUN(AC_STEPMAKE_END, [
131     AC_OUTPUT($CONFIGFILE.make:config.make.in)
132
133     # regular in-place build
134     # test for srcdir_build = yes ?
135     if test "$builddir" = "."; then
136         rm -f $srcdir/GNUmakefile
137         cp $srcdir/GNUmakefile.in $srcdir/GNUmakefile
138         chmod 444 $srcdir/GNUmakefile
139     else # --srcdir build
140         rm -f GNUmakefile
141         cp $srcdir/make/srcdir.make.in GNUmakefile
142         chmod 444 GNUmakefile
143     fi
144 ])
145
146 AC_DEFUN(AC_STEPMAKE_GXX, [
147     # ugh autoconf
148     # urg, egcs: how to check for egcs >= 1.1?
149     changequote(<<, >>)dnl
150     if $CXX --version | egrep '2\.[89]' > /dev/null ||
151         $CXX --version | grep 'egcs' > /dev/null
152     changequote([, ])dnl
153     then
154             true
155     else
156             AC_STEPMAKE_WARN(can\'t find g++ 2.8, 2.9 or egcs 1.1)
157     fi
158 ])
159
160 AC_DEFUN(AC_STEPMAKE_GUILE, [
161     ## First, let's just see if we can find Guile at all.
162     AC_MSG_CHECKING("for guile-config")
163     for guile_config in guile-config $target-guile-config $build-guile-config; do
164         AC_MSG_RESULT("$guile_config")
165         if ! $guile_config --version > /dev/null 2>&1 ; then
166             AC_MSG_WARN("cannot execute $guile_config")
167             AC_MSG_CHECKING("if we are cross compiling")
168             guile_config=error
169         else
170             break
171         fi
172     done
173     if test "$guile_config" = "error"; then
174         AC_MSG_ERROR("cannot find guile-config; is Guile installed?")
175         exit 1
176     fi
177     AC_MSG_CHECKING("Guile version")
178     need_guile_version="1.3.4"
179     need_guile_version_numeric=100304
180     guile_version=`$guile_config --version 2>&1 | awk '{print $NF}'`
181     guile_version_numeric=`echo $guile_version | awk -F. '
182 {if ([$]3) {last = [$]3}
183 else {last =0}}
184 {printf "%s%s%s\n",[$]1*100, [$]2*10,last}'`
185     AC_MSG_RESULT("$guile_version")
186     if test $guile_version_numeric -lt $need_guile_version_numeric
187     then
188         AC_STEPMAKE_WARN("Guile version "$need_guile_version" or newer is needed")
189     fi
190     GUILE_FLAGS
191     AC_PATH_PROG(GUILE, guile, error)
192     AC_SUBST(GUILE)
193 ])
194
195 AC_DEFUN(AC_STEPMAKE_INIT, [
196
197     . $srcdir/VERSION
198     FULL_VERSION=$MAJOR_VERSION.$MINOR_VERSION.$PATCH_LEVEL
199     if test x$MY_PATCH_LEVEL != x; then
200         FULL_VERSION=$FULL_VERSION.$MY_PATCH_LEVEL
201     fi
202
203     # urg: don't "fix" this: irix doesn't know about [:lower:] and [:upper:]
204     changequote(<<, >>)dnl
205     PACKAGE=`echo $PACKAGE_NAME | tr '[a-z]' '[A-Z]'`
206     package=`echo $PACKAGE_NAME | tr '[A-Z]' '[a-z]'`
207     changequote([, ])dnl
208
209     # No versioning on directory names of sub-packages 
210     # urg, urg
211     stepmake=${datadir}/stepmake
212     presome=${prefix}
213     if test "$prefix" = "NONE"; then
214             presome=${ac_default_prefix}
215     fi
216     stepmake=`echo ${stepmake} | sed "s!\\\${prefix}!$presome!"`
217
218     # urg, how is this supposed to work?
219     if test "$program_prefix" = "NONE"; then
220           program_prefix=
221     fi
222     if test "$program_suffix" = "NONE"; then
223           program_suffix=
224     fi
225
226     AC_MSG_CHECKING(Package)
227     if test "x$PACKAGE" = "xSTEPMAKE"; then
228         AC_MSG_RESULT(Stepmake package!)
229
230         AC_MSG_CHECKING(builddir)
231         if test "$srcdir" = "."; then
232             builddir=.
233         else
234             absolute_builddir="`pwd`"
235             package_absolute_builddir="`dirname $absolute_builddir`"
236             package_srcdir="`dirname  $srcdir`"
237             builddir="`dirname $package_srcdir`/`basename $package_absolute_builddir`/`basename $absolute_builddir`"
238         fi
239         AC_MSG_RESULT($builddir)
240
241         (cd stepmake 2>/dev/null || mkdir stepmake)
242         (cd stepmake; rm -f stepmake; ln -s ../$srcdir/stepmake .)
243         (cd stepmake; rm -f bin; ln -s ../$srcdir/bin .)
244         AC_CONFIG_AUX_DIR(bin)
245         stepmake=stepmake
246     else
247         AC_MSG_RESULT($PACKAGE)
248
249         AC_MSG_CHECKING(builddir)
250         if test "$srcdir" = "."; then
251             builddir=.
252             srcdir_build=no
253         else
254             absolute_builddir="`pwd`"
255 #           builddir="`dirname  $srcdir`/`basename $absolute_builddir`"
256             builddir="`bash $srcdir/buildscripts/walk.sh \"$srcdir\"`"
257             srcdir_build=yes
258         fi
259         AC_MSG_RESULT($builddir)
260         if expr "$srcdir" : '/' > /dev/null 2>&1; then
261             absolute_srcdir=yes
262             AC_STEPMAKE_WARN(Absolute --srcdir specified: $srcdir)
263         fi
264
265         AC_MSG_CHECKING(for stepmake)
266         # Check for installed stepmake
267         if test -d $stepmake; then
268             AC_MSG_RESULT($stepmake)
269         else
270             if test "$absolute_srcdir" != "yes"; then
271                 stepmake='$(depth)'/$srcdir/stepmake
272             else
273                 stepmake=$srcdir/stepmake
274             fi
275             AC_MSG_RESULT($srcdir/stepmake  ($datadir/stepmake not found))
276         fi
277
278         AC_CONFIG_AUX_DIR(\
279           $HOME/usr/local/share/stepmake/bin\
280           $HOME/usr/local/lib/stepmake/bin\
281           $HOME/usr/share/stepmake/bin\
282           $HOME/usr/lib/stepmake/bin\
283           /usr/local/share/stepmake/bin\
284           /usr/local/lib/stepmake/bin\
285           /usr/share/stepmake/bin\
286           /usr/lib/stepmake/bin\
287           stepmake/bin\
288           $srcdir/stepmake/bin\
289         )
290     fi
291
292     AC_SUBST(builddir)
293     AC_SUBST(stepmake)
294     AC_SUBST(package)
295     AC_SUBST(PACKAGE)
296     AC_SUBST(PACKAGE_NAME)
297     AC_DEFINE_UNQUOTED(PACKAGE, "${PACKAGE_NAME}")
298     AC_DEFINE_UNQUOTED(TOPLEVEL_VERSION, "${FULL_VERSION}")
299
300     if test "$package_depth" = "" ; then
301         package_depth="."
302     else
303         package_depth="../$package_depth"
304     fi
305     export package_depth
306     AC_SUBST(package_depth)
307
308     AUTOGENERATE="This file was automatically generated by configure"
309     AC_SUBST(AUTOGENERATE)
310
311     CONFIGSUFFIX=
312     AC_ARG_ENABLE(config,
313     [  --enable-config=CONF    put settings in config-CONF.make and config-CONF.h;
314                             do \`make conf=CONF' to get output in ./out-CONF],
315     [CONFIGSUFFIX=-$enableval])
316
317     CONFIGFILE=config$CONFIGSUFFIX
318     AC_SUBST(CONFIGSUFFIX)
319      
320     AC_CANONICAL_HOST
321     AC_CHECK_PROGS(MAKE, gmake make, error)
322     AC_CHECK_PROGS(FIND, find, error)
323
324 dnl system supplied INSTALL is unsafe; use our own install.
325 dnl    AC_PROG_INSTALL
326 dnl    if test "$INSTALL" = "bin/install-sh"; then
327 dnl     export INSTALL="\$\(depth\)/bin/install-sh"
328 dnl    fi
329
330     AC_CHECK_PROGS(TAR, tar, error)
331
332     if test "x`uname`" = "xHP-UX"; then
333         AC_PATH_PROG(BASH, bash, /bin/sh)
334         AC_STEPMAKE_WARN(avoiding buggy /bin/sh)
335         AC_PATH_PROG(SHELL, bash, /bin/ksh)
336     else
337         AC_PATH_PROG(BASH, bash, /bin/sh)
338         SHELL=/bin/sh
339         AC_SUBST(SHELL)
340     fi
341
342
343     AC_PATH_PROG(PYTHON, ${PYTHON:-python}, -echo no python)
344     AC_SUBST(PYTHON)
345
346     if test $MAKE != "error" ; then
347         $MAKE -v 2> /dev/null | grep GNU > /dev/null
348         if test "$?" = 1
349         then
350                 AC_STEPMAKE_WARN(Please install *GNU* make) 
351         fi
352     fi 
353
354     AC_CHECK_SEARCH_RESULT($PYTHON, python, You should install Python)
355
356     if test "x$OSTYPE" = "xcygwin32" || test "x$OSTYPE" = "xWindows_NT"; then
357         LN=cp # hard link does not work under cygnus-nt
358         LN_S='cp -r' # symbolic link does not work for native nt
359         ZIP="zip -r -9" #
360         program_suffix=.exe
361         # urg
362         # ROOTSEP=':'
363         # DIRSEP='\\'
364         # PATHSEP=';'
365         #
366         # cygwin fixes all these things.  
367         # it seems these were used because of dos-style TEXINPUTS and
368         # MFINPUTS needed for miktex.
369         # but this breaks parsing of all other cygwin/unix style paths.
370         #
371         # if your (mik)tex breaks, make a:
372         #    /usr/local/bin/tex:
373         #    #!/bin/sh
374         #    TEXINPUTS=`cygpath -pw $TEXINPUTS` /texmf/miktex/bin/tex $*
375         #
376         # and
377         #
378         #    /usr/local/bin/mf:
379         #    #!/bin/sh
380         #    MFINPUTS=`cygpath -pw $MFINPUTS` /texmf/miktex/bin/mf $*
381         #
382         # this way, you may have buildscripts/out/lilypond-profile 
383         # 'automatically' sourced from /usr/etc/profile.d/ too.
384         #
385         ROOTSEP=':'
386         DIRSEP='/'
387         PATHSEP=':'
388         INSTALL="\$(SHELL) \$(stepdir)/../bin/install-dot-exe.sh -c"
389     else
390         ROOTSEP=':'
391         DIRSEP='/'
392         PATHSEP=':'
393         LN=ln
394         LN_S='ln -s'
395         ZIP="zip -r -9"
396         INSTALL="\$(SHELL) \$(stepdir)/../bin/install-sh -c"
397     fi
398     AC_SUBST(program_prefix)
399     AC_SUBST(program_suffix)
400     AC_SUBST(ZIP)
401     AC_SUBST(LN)
402     AC_SUBST(LN_S)
403     AC_SUBST(INSTALL)
404     AC_DEFINE_UNQUOTED(DIRSEP, '${DIRSEP}')
405     AC_DEFINE_UNQUOTED(PATHSEP, '${PATHSEP}')
406     AC_SUBST(PATHSEP)
407     AC_SUBST(DIRSEP)
408   
409     AC_STEPMAKE_DATADIR
410 ])
411
412 AC_DEFUN(AC_STEPMAKE_KPATHSEA, [
413
414     kpathsea_b=yes
415     AC_ARG_WITH(kpathsea,
416     [  --with-kpathsea         use kpathsea lib.  Default: on],
417     [kpathsea_b=$enableval])
418
419     if test "$kpathsea_b" = "yes"; then 
420         AC_HAVE_HEADERS(kpathsea/kpathsea.h)
421         AC_CHECK_LIB(kpathsea, kpse_find_file)
422         AC_CHECK_FUNCS(kpse_find_file,, AC_ERROR(Cannot find kpathsea functions.  Rerun with --without-kpathsea.) )
423     fi
424     AC_MSG_CHECKING(whether to use kpathsea)
425     if test "$kpathsea_b" = yes; then
426         AC_MSG_RESULT(yes)
427         KPATHSEA=1
428     else
429         AC_MSG_RESULT(no)
430         KPATHSEA=0
431     fi
432
433     AC_SUBST(KPATHSEA)
434     AC_DEFINE_UNQUOTED(KPATHSEA, $KPATHSEA)
435 ])
436
437 AC_DEFUN(AC_STEPMAKE_LEXYACC, [
438     # ugh, automake: we want (and check for) bison
439     AC_PROG_YACC
440     # ugh, automake: we want (and check for) flex
441     # AC_PROG_LEX
442     # urg: automake 1.3: hope this doesn't break 1.2 ac_cv_pro_lex_root hack...
443
444     # AC_DECL_YYTEXT
445     # ugh, ugh
446     ac_cv_prog_lex_root=lex.yy
447
448     AC_CHECK_PROGS(BISON, bison, error)
449     AC_CHECK_PROGS(FLEX, flex, error)
450     AC_CHECK_SEARCH_RESULT($BISON, bison,  Please install Bison, 1.25 or newer)
451     AC_CHECK_SEARCH_RESULT($FLEX,  flex, Please install Flex, 2.5 or newer)
452
453     if test $BISON != "error"; then
454         bison_version=`$BISON --version | sed 's/^.*version 1.//g'`
455         if test `echo $bison_version | sed 's/\..*$//g'` -lt 25; then
456             AC_STEPMAKE_WARN(Your bison is a bit old (1.$bison_version). You might have to install 1.25)
457         fi      
458     fi
459
460     AC_SUBST(BISON)
461     AC_SUBST(FLEX)
462 ])
463
464 AC_DEFUN(AC_STEPMAKE_LIB, [
465     AC_CHECK_PROGS(AR, ar, error)
466     AC_PROG_RANLIB
467
468     AC_SUBST(AR)
469     AC_SUBST(RANLIB)
470 ])
471
472 AC_DEFUN(AC_STEPMAKE_LIBTOOL, [
473     # libtool.info ...
474     # **Never** try to set library version numbers so that they correspond
475     # to the release number of your package.  This is an abuse that only
476     # fosters misunderstanding of the purpose of library versions.
477
478     REVISION=$PATCH_LEVEL
479     # CURRENT=$MINOR_VERSION
480     CURRENT=`expr $MINOR_VERSION + 1`
481     # AGE=$(expr $MAJOR_VERSION + 1)
482     AGE=$MAJOR_VERSION
483     AC_SUBST(CURRENT)
484     AC_SUBST(REVISION)
485     AC_SUBST(AGE)
486 ])
487
488 AC_DEFUN(AC_STEPMAKE_LOCALE, [
489     lang=English
490     ALL_LINGUAS="en nl"
491
492     # with/enable ??
493     AC_ARG_WITH(localedir,
494     [  --with-localedir=LOCALE use LOCALE as locale dir.  Default:
495                             PREFIX/share/locale ],
496     localedir=$with_localedir,
497     localedir='${prefix}/share/locale')
498
499     AC_ARG_WITH(lang,
500     [  --with-lang=LANG        use LANG as language to emit messages],
501     language=$with_lang,
502     language=English)
503
504     AC_MSG_CHECKING(language)    
505     case "$language" in
506       En* | en* | Am* | am* | US* | us*)
507             lang=English;;
508       NL | nl | Du* | du* | Ned* | ned*)
509             lang=Dutch;;
510       "")
511             lang=English;;
512       *)
513             lang=unknown;;
514     esac
515     AC_MSG_RESULT($lang)
516
517     if test "$lang" = "unknown" ; then
518         AC_STEPMAKE_WARN($language not supported; available are: $ALL_LINGUAS)
519     fi
520
521 ])
522
523 AC_DEFUN(AC_STEPMAKE_GETTEXT, [
524     DIR_LOCALEDIR=${localedir}
525     presome=${prefix}
526     if test "$prefix" = "NONE"; then
527             presome=${ac_default_prefix}
528     fi
529     DIR_LOCALEDIR=`echo ${DIR_LOCALEDIR} | sed "s!\\\${prefix}!$presome!"`
530     AC_SUBST(localedir)
531     AC_SUBST(DIR_LOCALEDIR)
532     AC_DEFINE_UNQUOTED(DIR_LOCALEDIR, "${DIR_LOCALEDIR}")
533
534     AC_CHECK_LIB(intl, gettext)
535     AC_CHECK_FUNCS(gettext)
536 ])
537
538 AC_DEFUN(AC_STEPMAKE_MAN, [
539     AC_CHECK_PROGS(GROFF, groff ditroff, -echo no groff)
540     AC_CHECK_PROGS(TROFF, troff, -echo no troff)
541     AC_CHECK_PROGS(TBL, tbl, cat)
542 ])
543
544 AC_DEFUN(AC_STEPMAKE_MSGFMT, [
545     # AC_CHECK_PROGS(MSGFMT, msgfmt, -echo no msgfmt)
546     AC_CHECK_PROGS(MSGFMT, msgfmt, \$(SHELL) \$(step-bindir)/fake-msgfmt.sh )
547     AC_MSG_CHECKING(whether msgfmt accepts -o)
548     msgfmt_output="`msgfmt -o bla 2>&1 | grep usage`"
549     if test "$msgfmt_output" = ""; then
550         AC_MSG_RESULT(yes)
551     else
552         # urg
553         MSGFMT="\$(SHELL) \$(step-bindir)/fake-msgfmt.sh"
554         AC_MSG_RESULT(no)
555         AC_STEPMAKE_WARN(please install msgfmt from GNU gettext)
556     fi
557     if test ! -n "$MSGFMT"; then
558         AC_STEPMAKE_WARN(please install msgfmt from GNU gettext)
559     fi
560 ])
561
562 #why has this been dropped?
563 AC_DEFUN(XXAC_STEPMAKE_TEXMF_DIRS, [
564     AC_ARG_ENABLE(tex-prefix,
565     [  --enable-tex-prefix=DIR   set the tex-directory to find TeX
566                                subdirectories.  Default: PREFIX],
567     [TEXPREFIX=$enableval],
568     [TEXPREFIX=auto] )
569     
570     AC_ARG_ENABLE(tex-dir,
571     [  --enable-tex-dir=DIR      set the directory to put $PACKAGE_NAME TeX files in. ],
572     [TEXDIR=$enableval],
573     [TEXDIR=auto] )
574
575     AC_ARG_ENABLE(mf-dir,
576     [  --enable-mf-dir=DIR       set the directory to put $PACKAGE_NAME MetaFont files in. ],
577     [MFDIR=$enableval],
578     [MFDIR=auto])
579
580     if test "x$TEXPREFIX" = xauto ; then
581         AC_TEX_PREFIX(TEXPREFIX)
582     else
583      find_texprefix=$TEXPREFIX
584     fi
585
586     if test "x$MFDIR" = xauto; then
587         AC_MF_SUBDIR(MFDIR)
588     fi
589         
590     if test "x$TEXDIR" = xauto ; then
591         AC_TEX_SUBDIR(TEXDIR)
592     fi
593     AC_SUBST(TEXPREFIX)
594     AC_SUBST(TEXDIR)
595     AC_SUBST(MFDIR)
596 ])
597
598 AC_DEFUN(AC_STEPMAKE_TEXMF_DIRS, [
599     AC_ARG_ENABLE(tfm-path,
600     [  --enable-tfm-path=PATH  set path of tex directories where tfm files live,
601                             esp.: cmr10.tfm.  Default: use kpsewhich],
602     [tfm_path=$enableval],
603     [tfm_path=auto] )
604
605     AC_CHECK_PROGS(KPSEWHICH, kpsewhich, no)
606     AC_MSG_CHECKING(for tfm path)
607
608     TFM_FONTS="cmr msam"
609
610     if test "x$tfm_path" = xauto ; then
611         if test "x$KPSEWHICH" != "xno" ; then
612             for i in $TFM_FONTS; do
613                 dir=`$KPSEWHICH tfm ${i}10.tfm`
614                 TFM_PATH="$TFM_PATH `dirname $dir`"
615             done
616         else
617             AC_STEPMAKE_WARN(Please specify where cmr10.tfm lives:
618     ./configure --enable-tfm-path=/usr/local/TeX/lib/tex/fonts)
619         fi
620     else
621          TFM_PATH=$tfm_path
622     fi
623
624     TFM_PATH=`echo $TFM_PATH | tr ':' ' '`
625     AC_MSG_RESULT($TFM_PATH)
626     AC_SUBST(TFM_PATH)
627 ])
628
629 AC_DEFUN(AC_STEPMAKE_TEXMF, [
630     # urg, never know what names these teTeX guys will think up
631
632     AC_CHECK_PROGS(METAFONT, mf, no)
633     if test "x$METAFONT" = "xno"; then
634         AC_CHECK_PROGS(MFONT, mfont, -echo no mf or mfont)
635         METAFONT=$MFONT
636     fi
637
638     AC_CHECK_PROGS(METAPOST, mp, no)
639     if test "x$METAPOST" = "xno"; then
640         AC_CHECK_PROGS(MPOST, mpost, -echo no mp or mpost)
641
642         METAPOST=$MPOST
643     fi
644
645     AC_CHECK_PROGS(INIMETAFONT, inimf, no)
646     if test "x$INIMETAFONT" = "xno"; then
647         AC_CHECK_PROGS(INIMFONT, inimfont, -echo no inimf or inimfont)
648         INIMETAFONT=$INIMFONT
649     fi
650
651     AC_CHECK_PROGS(INIMETAPOST, inimp, no)
652     if test "x$INIMETAPOST" = "xno"; then
653         AC_CHECK_PROGS(INIMPOST, inimpost, -echo no inimp or inimpost)
654         INIMETAPOST=$INIMPOST
655     fi
656
657     AC_MSG_CHECKING(for working metafont mode)
658     modelist='ljfour lj4 lj3 lj2 ljet laserjet'
659     for MFMODE in $modelist; do
660         $METAFONT "\mode:=$MFMODE; mode_setup; end." > /dev/null 2>&1
661         if test -f mfput.tfm; then
662             break;
663         fi
664     done
665     AC_MSG_RESULT($MFMODE)
666
667     AC_MSG_CHECKING(for mfplain.mp)
668     #
669     # For now let people define these in their environments
670     #
671     : ${MFPLAIN_MP=`kpsewhich mp mfplain.mp`}
672     AC_MSG_RESULT($MFPLAIN_MP)
673
674     AC_MSG_CHECKING(for inimetapost flags)
675     if test  ${INIMETAPOST} = "inimp" ; then
676        : ${INIMETAPOST_FLAGS=''}
677     else
678        : ${INIMETAPOST_FLAGS='-interaction=nonstopmode'}
679     fi
680     AC_MSG_RESULT($INIMETAPOST_FLAGS)
681
682     rm -f mfput.*
683
684     AC_SUBST(METAFONT)
685     AC_SUBST(METAPOST)
686     AC_SUBST(MFMODE)
687     AC_SUBST(INIMETAFONT)
688     AC_SUBST(INIMETAPOST)
689     AC_SUBST(MFPLAIN_MP)
690     AC_SUBST(INIMETAPOST_FLAGS)
691 ])
692
693 AC_DEFUN(AC_STEPMAKE_WARN, [
694     AC_MSG_WARN($1)
695     warn_b=yes
696 ])
697
698 AC_DEFUN(AC_STEPMAKE_YODL, [
699     if test "x$YODL" = "x"; then 
700         AC_CHECK_PROGS(STRIPROFF, striproff, -echo no striproff)
701         AC_CHECK_PROGS(YODL, yodl, -echo no yodl)
702         AC_CHECK_PROGS(YODL2HTML, yodl2html, -echo no yodl)
703         AC_CHECK_PROGS(YODL2LATEX, yodl2latex, )
704         AC_CHECK_PROGS(YODL2MAN, yodl2man, -echo no yodl)
705         AC_CHECK_PROGS(YODL2MSLESS, yodl2msless, -echo no yodl)
706         AC_CHECK_PROGS(YODL2TEXINFO, yodl2texinfo, -echo no yodl)
707         AC_CHECK_PROGS(YODL2TXT, yodl2txt, -echo no yodl)
708         YODL2LESS_DIR='$(bindir)/'
709     else
710         AC_SUBST(STRIPROFF)
711         AC_SUBST(YODL)
712         AC_SUBST(YODL2HTML)
713         AC_SUBST(YODL2LATEX)
714         AC_SUBST(YODL2LESS_DIR)
715         AC_SUBST(YODL2MAN)
716         AC_SUBST(YODL2MSLESS)
717         AC_SUBST(YODL2TEXINFO)
718         AC_SUBST(YODL2TXT)
719         export STRIPROFF YODL YODL2HTML YODL2LATEX YODL2MAN YODL2MSLESS YODL2TEXINFO YODL2TXT
720     fi
721     if test "x$YODL" = "-echo no yodl"; then
722         AC_STEPMAKE_WARN(Did not find YODL (Yodl is Yet Oneother Document Language, see http://www.cs.uu.nl/~hanwen/yodl))
723     fi    
724 ])
725
726 dnl should cache result.
727 dnl should  look in $prefix first.
728 dnl should probably assume TDS
729
730 AC_DEFUN(AC_TEX_PREFIX, [
731     
732
733     AC_MSG_CHECKING(TeX/MF root dir directory)    
734
735     find_root_prefix="$prefix"
736     
737
738     test "x$find_root_prefix" = xNONE && find_root_prefix="$ac_default_prefix"
739     find_texpostfix="";
740     for postfix in "/lib/tex/" "/lib/texmf" "/lib" "/tex" "/texmf"; do
741         find_texprefix="$find_root_prefix$postfix"
742         if test -d $find_texprefix; then
743             find_texpostfix=$postfix
744             break;
745         fi
746     done
747     
748     if test "x$find_texpostfix" = x; then
749         find_texpostfix='/lib/texmf/tex'
750         AC_STEPMAKE_WARN(Cannot determine the TeX-directory.  Please use --enable-tex-prefix)
751     fi
752
753     find_texprefix="$find_root_prefix/$find_texpostfix"
754
755     # only assign if variablename not empty
756     if test x != "x[$]$1"; then
757         $1='${prefix}'/"$find_texpostfix"
758     fi
759     AC_MSG_RESULT($find_texprefix)
760
761 ])
762  
763
764 # find a directory inside a prefix, 
765 # $1 the prefix (expanded version)
766 # $2 variable to assign
767 # $3 the directory name 
768 # $4 description
769 AC_DEFUN(AC_FIND_DIR_IN_PREFIX, [
770     
771     AC_MSG_CHECKING($4 directory)    
772     find_dirdir=`(cd $1; 
773       $FIND ./ -type d -a -name $3 -print |sort|head -1|sed 's#^\./##')`
774     
775
776     if test "x$find_dirdir" = x; then
777        find_dirdir="/$3";
778        AC_STEPMAKE_WARN(Cannot determine $4 subdirectory.  Please set from command-line)
779         true
780     fi
781     $2=$find_dirdir
782     AC_MSG_RESULT($1/$find_dirdir)
783 ])
784
785 # ugh.  this is hopeless
786 AC_DEFUN(AC_KPSE_TEX_DIR, [
787         kpse_paths=`(kpsepath -n latex tex; kpsepath -n tex tex) | sed 's/:/ /g' | tr ' ' '\012' |sort | uniq -d`
788         kpse_syspaths=`echo $kpse_paths | grep '!'| sed 's/!//g'`
789         echo $kpse_paths
790         if test -w "$kpse_syspaths";
791         then
792                 dir=`echo $kpse_syspaths | head -1`
793         else
794                 dir=`echo $kpse_paths | grep -v '!'| head -1`
795         fi
796         if test "$prefix" = "NONE"; then
797                 local_prefix=$ac_default_prefix
798                 local_prefix_quote='${prefix}'
799
800         else
801                 local_prefix=$prefix
802                 local_prefix_quote=$prefix
803         fi
804         echo $local_prefix_quote = $local_prefix
805         echo $dir
806         echo $dir  | sed 's!'$local_prefix'!\$local_prefix_quote!g'
807 ])
808
809 AC_DEFUN(AC_TEX_SUBDIR, [
810 dnl    AC_REQUIRE([AC_TEX_PREFIX])
811     AC_FIND_DIR_IN_PREFIX($find_texprefix, $1, tex,TeX input)
812     $1="$TEXPREFIX/$$1"
813 ])
814
815 AC_DEFUN(AC_MF_SUBDIR, [
816 dnl     AC_REQUIRE([AC_TEX_PREFIX])
817     AC_FIND_DIR_IN_PREFIX($find_texprefix, $1, source, MF input)
818     $1="$TEXPREFIX/$$1"
819 ])
820
821 AC_DEFUN(AC_CHECK_SEARCH_RESULT, [
822         result="`echo \"$1\" | grep echo`"
823         if test "x$1" = "xerror" -o "x$result" != "x"; then
824                 AC_STEPMAKE_WARN(can\'t find $2. $3)
825         fi
826 ])
827
828 dnl   GUILE_FLAGS --- set flags for compiling and linking with Guile
829 dnl
830 dnl   This macro runs the `guile-config' script, installed with Guile,
831 dnl   to find out where Guile's header files and libraries are
832 dnl   installed.  It sets two variables, marked for substitution, as
833 dnl   by AC_SUBST.
834 dnl   
835 dnl     GUILE_CFLAGS --- flags to pass to a C or C++ compiler to build
836 dnl             code that uses Guile header files.  This is almost
837 dnl             always just a -I flag.
838 dnl   
839 dnl     GUILE_LDFLAGS --- flags to pass to the linker to link a
840 dnl             program against Guile.  This includes `-lguile' for
841 dnl             the Guile library itself, any libraries that Guile
842 dnl             itself requires (like -lqthreads), and so on.  It may
843 dnl             also include a -L flag to tell the compiler where to
844 dnl             find the libraries.
845
846 AC_DEFUN([GUILE_FLAGS],[
847 ## The GUILE_FLAGS macro.
848   AC_MSG_CHECKING(for Guile)
849   if ! $guile_config link > /dev/null ; then
850       AC_MSG_RESULT("cannot execute $guile_config")
851       AC_MSG_ERROR("cannot find guile-config; is Guile installed?")
852       exit 1
853   fi
854   GUILE_CFLAGS="`$guile_config compile`"
855   GUILE_LDFLAGS="`$guile_config link`"
856   AC_SUBST(GUILE_CFLAGS)
857   AC_SUBST(GUILE_LDFLAGS)
858   AC_MSG_RESULT(yes)
859 ])
860
861
862 # Configure paths for GTK+
863 # Owen Taylor     97-11-3
864
865 dnl AM_PATH_GTK([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
866 dnl Test for GTK, and define GTK_CFLAGS and GTK_LIBS
867 dnl
868 AC_DEFUN(AM_PATH_GTK,
869 [dnl 
870 dnl Get the cflags and libraries from the gtk-config script
871 dnl
872   AC_PATH_PROG(GTK_CONFIG, gtk-config, no)
873   min_gtk_version=ifelse([$1], ,1.1.1,$1)
874   AC_MSG_CHECKING(for GTK - version >= $min_gtk_version)
875   no_gtk=""
876   if test "$GTK_CONFIG" != "no" ; then
877     GTK_CFLAGS=`$GTK_CONFIG --cflags`
878     GTK_LIBS=`$GTK_CONFIG --libs`
879     ac_save_CFLAGS="$CFLAGS"
880     ac_save_LIBS="$LIBS"
881     ac_save_CXXFLAGS="$CXXFLAGS"
882     CFLAGS="$CFLAGS $GTK_CFLAGS"
883     CXXFLAGS="$CXXFLAGS $GTK_CFLAGS"
884     LIBS="$LIBS $GTK_LIBS"
885 dnl
886 dnl Now check if the installed GTK is sufficiently new. (Also sanity
887 dnl checks the results of gtk-config to some extent)
888 dnl
889     AC_TRY_RUN([
890 #include <gtk/gtk.h>
891 #include <stdio.h>
892
893 int 
894 main ()
895 {
896   int major, minor, micro;
897
898   if (sscanf("$min_gtk_version", "%d.%d.%d", &major, &minor, &micro) != 3) {
899      printf("%s, bad version string\n", "$min_gtk_version");
900      exit(1);
901    }
902
903    return !((gtk_major_version > major) ||
904             ((gtk_major_version == major) && (gtk_minor_version > minor)) ||
905             ((gtk_major_version == major) && (gtk_minor_version == minor) && (gtk_micro_version >= micro)));
906 }
907 ],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
908      CFLAGS="$ac_save_CFLAGS"
909      CXXFLAGS="$ac_save_CXXFLAGS"
910      LIBS="$ac_save_LIBS"
911   else
912      no_gtk=yes
913   fi
914   if test "x$no_gtk" = x ; then
915      AC_MSG_RESULT(yes)
916      ifelse([$2], , :, [$2])     
917   else
918      AC_MSG_RESULT(no)
919      GTK_CFLAGS=""
920      GTK_LIBS=""
921      ifelse([$3], , :, [$3])
922   fi
923   CXXFLAGS="$CXXFLAGS $GTK_CFLAGS"
924   AC_SUBST(CXXFLAGS)
925   AC_SUBST(GTK_CFLAGS)
926   AC_SUBST(GTK_LIBS)
927 ])
928
929
930 # Configure paths for GTK--
931 # Erik Andersen 30 May 1998
932 # Modified by Tero Pulkkinen (added the compiler checks... I hope they work..)
933
934 dnl Test for GTK__, and define GTK___CFLAGS and GTK___LIBS
935 dnl   to be used as follows:
936 dnl AM_PATH_GTKMM([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
937 dnl
938
939 dnl Get the cflags and libraries from the gtkmm-config script
940 dnl
941 AC_ARG_WITH(gtkmm-prefix,[  --with-gtkmm-prefix=PREFIX
942                           Prefix where GTK-- is installed (optional)],
943             gtkmm_config_prefix="$withval", gtkmm_config_prefix="")
944 AC_ARG_WITH(gtkmm-exec-prefix,[  --with-gtkmm-exec-prefix=PREFIX
945                           Exec prefix where GTK-- is installed (optional)],
946             gtkmm_config_exec_prefix="$withval", gtkmm_config_exec_prefix="")
947 AC_ARG_ENABLE(gtkmmtest, [  --disable-gtkmmtest     Do not try to compile and run a test GTK-- program],
948                     , enable_gtkmmtest=yes)
949
950   if test x$gtkmm_config_exec_prefix != x ; then
951      gtkmm_config_args="$gtkmm_config_args --exec-prefix=$gtkmm_config_exec_prefix"
952      if test x${GTKMM_CONFIG+set} != xset ; then
953         GTKMM_CONFIG=$gtkmm_config_exec_prefix/bin/gtkmm-config
954      fi
955   fi
956   if test x$gtkmm_config_prefix != x ; then
957      gtkmm_config_args="$gtkmm_config_args --prefix=$gtkmm_config_prefix"
958      if test x${GTKMM_CONFIG+set} != xset ; then
959         GTKMM_CONFIG=$gtkmm_config_prefix/bin/gtkmm-config
960      fi
961   fi
962
963
964 AC_DEFUN(AM_PATH_GTKMM,
965 [dnl 
966
967 dnl
968 dnl Check if the installed GTK-- is sufficiently new.
969 dnl
970   AC_PATH_PROG(GTKMM_CONFIG, gtkmm-config, no)
971   min_gtkmm_version=ifelse([$1], ,0.9.14,$1)
972
973   AC_MSG_CHECKING(for GTK-- - version >= $min_gtkmm_version)
974   no_gtkmm=""
975   if test "$GTKMM_CONFIG" = "no" ; then
976     no_gtkmm=yes
977   else
978     AC_LANG_SAVE
979     AC_LANG_CPLUSPLUS
980
981     GTK___CFLAGS=`$GTKMM_CONFIG $gtkmm_config_args --cflags`
982     GTK___LIBS=`$GTKMM_CONFIG $gtkmm_config_args --libs`
983     gtkmm_config_major_version=`$GTKMM_CONFIG $gtkmm_config_args --version | \
984            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
985     gtkmm_config_minor_version=`$GTKMM_CONFIG $gtkmm_config_args --version | \
986            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
987     gtkmm_config_micro_version=`$GTKMM_CONFIG $gtkmm_config_args --version | \
988            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
989     if test "x$enable_gtkmmtest" = "xyes" ; then
990       ac_save_CXXFLAGS="$CXXFLAGS"
991       ac_save_LIBS="$LIBS"
992       CXXFLAGS="$CXXFLAGS $GTK___CFLAGS"
993       LIBS="$LIBS $GTK___LIBS"
994 dnl
995 dnl Now check if the installed GTK-- is sufficiently new. (Also sanity
996 dnl checks the results of gtkmm-config to some extent
997 dnl
998       rm -f conf.gtkmmtest
999       AC_TRY_RUN([
1000 #include <gtk--.h>
1001 #include <stdio.h>
1002 #include <stdlib.h>
1003
1004 int 
1005 main ()
1006 {
1007   int major, minor, micro;
1008   char *tmp_version;
1009
1010   system ("touch conf.gtkmmtest");
1011
1012   /* HP/UX 0 (%@#!) writes to sscanf strings */
1013   tmp_version = g_strdup("$min_gtkmm_version");
1014   if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
1015      printf("%s, bad version string\n", "$min_gtkmm_version");
1016      exit(1);
1017    }
1018
1019   if ((gtkmm_major_version != $gtkmm_config_major_version) ||
1020       (gtkmm_minor_version != $gtkmm_config_minor_version) ||
1021       (gtkmm_micro_version != $gtkmm_config_micro_version))
1022     {
1023       printf("\n*** 'gtkmm-config --version' returned %d.%d.%d, but GTK-- (%d.%d.%d)\n", 
1024              $gtkmm_config_major_version, $gtkmm_config_minor_version, $gtkmm_config_micro_version,
1025              gtkmm_major_version, gtkmm_minor_version, gtkmm_micro_version);
1026       printf ("*** was found! If gtkmm-config was correct, then it is best\n");
1027       printf ("*** to remove the old version of GTK--. You may also be able to fix the error\n");
1028       printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
1029       printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
1030       printf("*** required on your system.\n");
1031       printf("*** If gtkmm-config was wrong, set the environment variable GTKMM_CONFIG\n");
1032       printf("*** to point to the correct copy of gtkmm-config, and remove the file config.cache\n");
1033       printf("*** before re-running configure\n");
1034     } 
1035 /* GTK-- does not have the GTKMM_*_VERSION constants */
1036 /* 
1037   else if ((gtkmm_major_version != GTKMM_MAJOR_VERSION) ||
1038            (gtkmm_minor_version != GTKMM_MINOR_VERSION) ||
1039            (gtkmm_micro_version != GTKMM_MICRO_VERSION))
1040     {
1041       printf("*** GTK-- header files (version %d.%d.%d) do not match\n",
1042              GTKMM_MAJOR_VERSION, GTKMM_MINOR_VERSION, GTKMM_MICRO_VERSION);
1043       printf("*** library (version %d.%d.%d)\n",
1044              gtkmm_major_version, gtkmm_minor_version, gtkmm_micro_version);
1045     }
1046 */
1047   else
1048     {
1049       if ((gtkmm_major_version > major) ||
1050         ((gtkmm_major_version == major) && (gtkmm_minor_version > minor)) ||
1051         ((gtkmm_major_version == major) && (gtkmm_minor_version == minor) && (gtkmm_micro_version >= micro)))
1052       {
1053         return 0;
1054        }
1055      else
1056       {
1057         printf("\n*** An old version of GTK-- (%d.%d.%d) was found.\n",
1058                gtkmm_major_version, gtkmm_minor_version, gtkmm_micro_version);
1059         printf("*** You need a version of GTK-- newer than %d.%d.%d. The latest version of\n",
1060                major, minor, micro);
1061         printf("*** GTK-- is always available from ftp://ftp.gtk.org.\n");
1062         printf("***\n");
1063         printf("*** If you have already installed a sufficiently new version, this error\n");
1064         printf("*** probably means that the wrong copy of the gtkmm-config shell script is\n");
1065         printf("*** being found. The easiest way to fix this is to remove the old version\n");
1066         printf("*** of GTK--, but you can also set the GTKMM_CONFIG environment to point to the\n");
1067         printf("*** correct copy of gtkmm-config. (In this case, you will have to\n");
1068         printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
1069         printf("*** so that the correct libraries are found at run-time))\n");
1070       }
1071     }
1072   return 1;
1073 }
1074 ],, no_gtkmm=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
1075        CXXFLAGS="$ac_save_CXXFLAGS"
1076        LIBS="$ac_save_LIBS"
1077      fi
1078   fi
1079   if test "x$no_gtkmm" = x ; then
1080      AC_MSG_RESULT(yes)
1081      ifelse([$2], , :, [$2])     
1082   else
1083      AC_MSG_RESULT(no)
1084      if test "$GTKMM_CONFIG" = "no" ; then
1085        echo "*** The gtkmm-config script installed by GTK-- could not be found"
1086        echo "*** If GTK-- was installed in PREFIX, make sure PREFIX/bin is in"
1087        echo "*** your path, or set the GTK_CONFIG environment variable to the"
1088        echo "*** full path to gtk-config."
1089        echo "*** The gtkmm-config script was not available in GTK-- versions"
1090        echo "*** prior to 0.9.12. Perhaps you need to update your installed"
1091        echo "*** version to 0.9.12 or newer"
1092      else
1093        if test -f conf.gtkmmtest ; then
1094         :
1095        else
1096           echo "*** Could not run GTK-- test program, checking why..."
1097           CXXFLAGS="$CFLAGS $GTKMM_CXXFLAGS"
1098           LIBS="$LIBS $GTK___LIBS"
1099           AC_TRY_LINK([
1100 #include <gtk--.h>
1101 #include <stdio.h>
1102 ],      [ return ((gtkmm_major_version) || (gtkmm_minor_version) || (gtkmm_micro_version)); ],
1103         [ echo "*** The test program compiled, but did not run. This usually means"
1104           echo "*** that the run-time linker is not finding GTK-- or finding the wrong"
1105           echo "*** version of GTK--. If it is not finding GTK--, you'll need to set your"
1106           echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
1107           echo "*** to the installed location  Also, make sure you have run ldconfig if that"
1108           echo "*** is required on your system"
1109           echo "***"
1110           echo "*** If you have an old version installed, it is best to remove it, although"
1111           echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ],
1112         [ echo "*** The test program failed to compile or link. See the file config.log for the"
1113           echo "*** exact error that occured. This usually means GTK-- was incorrectly installed"
1114           echo "*** or that you have moved GTK-- since it was installed. In the latter case, you"
1115           echo "*** may want to edit the gtkmm-config script: $GTKMM_CONFIG" ])
1116           CXXFLAGS="$ac_save_CXXFLAGS"
1117           LIBS="$ac_save_LIBS"
1118        fi
1119      fi
1120      GTK___CFLAGS=""
1121      GTK__LIBS=""
1122      ifelse([$3], , :, [$3])
1123      AC_LANG_RESTORE
1124   fi
1125   AC_SUBST(GTK___CFLAGS)
1126   AC_SUBST(GTK___LIBS)
1127   rm -f conf.gtkmmtest
1128 ])
1129
1130 # Configure paths for GTK--DRAW
1131 # Derek Quinn Wyatt   98-08-21  (adapted from Jan Nieuwenhuizen's code)
1132
1133 dnl AM_PATH_GTK__DRAW([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
1134 dnl Test for GTK--DRAW, and define GTK___CFLAGS and GTK___LIBS
1135 dnl
1136 AC_DEFUN(AM_PATH_GTK__DRAW,
1137 [dnl 
1138 dnl Get the cflags and libraries from the gtk__-config script
1139 dnl
1140   AC_PATH_PROG(GTKMM_CONFIG, gtkmm-config, no)
1141   min_gtk___version=ifelse([$1], ,0.0.5,$1)
1142   AC_MSG_CHECKING(for GTK--DRAW - version >= $min_gtk___version)
1143   no_gtk__=""
1144   if test "$GTKMM_CONFIG" != "no" ; then
1145     GTK___CFLAGS=`$GTKMM_CONFIG --cflags`
1146     GTK___LIBS=`$GTKMM_CONFIG --libs`
1147     GTK___DLIBS="$GTK___LIBS -lgtkmmdraw"
1148     GTK___LIBS="$GTK___DLIBS"
1149     ac_save_CFLAGS="$CFLAGS"
1150     ac_save_LIBS="$LIBS"
1151     ac_save_CXXFLAGS="$CXXFLAGS"
1152     CFLAGS="$CFLAGS $GTK___CFLAGS"
1153     CXXFLAGS="$CXXFLAGS $GTK___CFLAGS"
1154     LIBS="$LIBS $GTK___LIBS"
1155 dnl
1156 dnl Now check if the installed GTK__ is sufficiently new. (Also sanity
1157 dnl checks the results of gtk__-config to some extent)
1158 dnl
1159     AC_TRY_RUN([
1160 #include <gtk--.h>
1161 #include <stdio.h>
1162
1163 int 
1164 main ()
1165 {
1166   // urg
1167   return 0;
1168 }
1169 ],, no_gtk__=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
1170      CFLAGS="$ac_save_CFLAGS"
1171      CXXFLAGS="$ac_save_CXXFLAGS"
1172      LIBS="$ac_save_LIBS"
1173   else
1174      no_gtk__=yes
1175   fi
1176   if test "x$no_gtk__" = x ; then
1177      AC_MSG_RESULT(yes)
1178      ifelse([$2], , :, [$2])     
1179   else
1180      AC_MSG_RESULT(no)
1181      GTK___CFLAGS=""
1182      GTK___LIBS=""
1183      ifelse([$3], , :, [$3])
1184   fi
1185   CXXFLAGS="$CXXFLAGS $GTK___CFLAGS"
1186   AC_SUBST(CXXFLAGS)
1187   AC_SUBST(GTK___CFLAGS)
1188   AC_SUBST(GTK___LIBS)
1189 ])