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