]> git.donarmstrong.com Git - lilypond.git/blob - aclocal.m4
patch::: 1.3.58.jcn2
[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 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_LEXYACC, [
397     # ugh, automake: we want (and check for) bison
398     AC_PROG_YACC
399     # ugh, automake: we want (and check for) flex
400     # AC_PROG_LEX
401     # urg: automake 1.3: hope this doesn't break 1.2 ac_cv_pro_lex_root hack...
402
403     # AC_DECL_YYTEXT
404     # ugh, ugh
405     ac_cv_prog_lex_root=lex.yy
406
407     AC_CHECK_PROGS(BISON, bison, error)
408     AC_CHECK_PROGS(FLEX, flex, error)
409     AC_CHECK_SEARCH_RESULT($BISON, bison,  Please install Bison, 1.25 or newer)
410     AC_CHECK_SEARCH_RESULT($FLEX,  flex, Please install Flex, 2.5 or newer)
411
412     if test $BISON != "error"; then
413         bison_version=`$BISON --version | sed 's/^.*version 1.//g'`
414         if test `echo $bison_version | sed 's/\..*$//g'` -lt 25; then
415             AC_STEPMAKE_WARN(Your bison is a bit old (1.$bison_version). You might have to install 1.25)
416         fi      
417     fi
418
419     AC_SUBST(BISON)
420     AC_SUBST(FLEX)
421 ])
422
423 AC_DEFUN(AC_STEPMAKE_LIB, [
424     AC_CHECK_PROGS(AR, ar, error)
425     AC_PROG_RANLIB
426
427     AC_SUBST(AR)
428     AC_SUBST(RANLIB)
429 ])
430
431 AC_DEFUN(AC_STEPMAKE_LIBTOOL, [
432     # libtool.info ...
433     # **Never** try to set library version numbers so that they correspond
434     # to the release number of your package.  This is an abuse that only
435     # fosters misunderstanding of the purpose of library versions.
436
437     REVISION=$PATCH_LEVEL
438     # CURRENT=$MINOR_VERSION
439     CURRENT=`expr $MINOR_VERSION + 1`
440     # AGE=$(expr $MAJOR_VERSION + 1)
441     AGE=$MAJOR_VERSION
442     AC_SUBST(CURRENT)
443     AC_SUBST(REVISION)
444     AC_SUBST(AGE)
445 ])
446
447 AC_DEFUN(AC_STEPMAKE_LOCALE, [
448     lang=English
449     ALL_LINGUAS="en nl"
450
451     # with/enable ??
452     AC_ARG_WITH(localedir,
453     [  with-localedir=LOCALE   use LOCALE as locale dir. Default: PREFIX/share/locale ],
454     localedir=$with_localedir,
455     localedir='${prefix}/share/locale')
456
457     AC_ARG_WITH(lang,
458     [  with-lang=LANG          use LANG as language to emit messages],
459     language=$with_lang,
460     language=English)
461
462     AC_MSG_CHECKING(language)    
463     case "$language" in
464       En* | en* | Am* | am* | US* | us*)
465             lang=English;;
466       NL | nl | Du* | du* | Ned* | ned*)
467             lang=Dutch;;
468       "")
469             lang=English;;
470       *)
471             lang=unknown;;
472     esac
473     AC_MSG_RESULT($lang)
474
475     if test "$lang" = "unknown" ; then
476         AC_STEPMAKE_WARN($language not supported; available are: $ALL_LINGUAS)
477     fi
478
479 ])
480
481 AC_DEFUN(AC_STEPMAKE_GETTEXT, [
482     DIR_LOCALEDIR=${localedir}
483     presome=${prefix}
484     if test "$prefix" = "NONE"; then
485             presome=${ac_default_prefix}
486     fi
487     DIR_LOCALEDIR=`echo ${DIR_LOCALEDIR} | sed "s!\\\${prefix}!$presome!"`
488     AC_SUBST(localedir)
489     AC_SUBST(DIR_LOCALEDIR)
490     AC_DEFINE_UNQUOTED(DIR_LOCALEDIR, "${DIR_LOCALEDIR}")
491
492     AC_CHECK_LIB(intl, gettext)
493     AC_CHECK_FUNCS(gettext)
494 ])
495
496 AC_DEFUN(AC_STEPMAKE_MAN, [
497     AC_CHECK_PROGS(GROFF, groff ditroff, -echo no groff)
498     AC_CHECK_PROGS(TROFF, troff, -echo no troff)
499     AC_CHECK_PROGS(TBL, tbl, cat)
500 ])
501
502 AC_DEFUN(AC_STEPMAKE_MSGFMT, [
503     # AC_CHECK_PROGS(MSGFMT, msgfmt, -echo no msgfmt)
504     AC_CHECK_PROGS(MSGFMT, msgfmt, \$(SHELL) \$(step-bindir)/fake-msgfmt.sh )
505     AC_MSG_CHECKING(whether msgfmt accepts -o)
506     msgfmt_output="`msgfmt -o bla 2>&1 | grep usage`"
507     if test "$msgfmt_output" = ""; then
508         AC_MSG_RESULT(yes)
509     else
510         # urg
511         MSGFMT="\$(SHELL) \$(step-bindir)/fake-msgfmt.sh"
512         AC_MSG_RESULT(no)
513         AC_STEPMAKE_WARN(please install msgfmt from GNU gettext)
514     fi
515     if test ! -n "$MSGFMT"; then
516         AC_STEPMAKE_WARN(please install msgfmt from GNU gettext)
517     fi
518 ])
519
520 #why has this been dropped?
521 AC_DEFUN(XXAC_STEPMAKE_TEXMF_DIRS, [
522     AC_ARG_ENABLE(tex-prefix,
523     [  enable-tex-prefix=DIR   set the tex-directory to find TeX subdirectories. (default: PREFIX)],
524     [TEXPREFIX=$enableval],
525     [TEXPREFIX=auto] )
526     
527     AC_ARG_ENABLE(tex-dir,
528     [  enable-tex-dir=DIR      set the directory to put $PACKAGE_NAME TeX files in. ],
529     [TEXDIR=$enableval],
530     [TEXDIR=auto] )
531
532     AC_ARG_ENABLE(mf-dir,
533     [  enable-mf-dir=DIR       set the directory to put $PACKAGE_NAME MetaFont files in. ],
534     [MFDIR=$enableval],
535     [MFDIR=auto])
536
537     if test "x$TEXPREFIX" = xauto ; then
538         AC_TEX_PREFIX(TEXPREFIX)
539     else
540      find_texprefix=$TEXPREFIX
541     fi
542
543     if test "x$MFDIR" = xauto; then
544         AC_MF_SUBDIR(MFDIR)
545     fi
546         
547     if test "x$TEXDIR" = xauto ; then
548         AC_TEX_SUBDIR(TEXDIR)
549     fi
550     AC_SUBST(TEXPREFIX)
551     AC_SUBST(TEXDIR)
552     AC_SUBST(MFDIR)
553 ])
554
555 AC_DEFUN(AC_STEPMAKE_TEXMF_DIRS, [
556     AC_ARG_ENABLE(tfm-path,
557     [  enable-tfm-path=PATH   set path of tex directories where tfm files live, esp.: cmr10.tfm (default: use kpsewhich)],
558     [tfm_path=$enableval],
559     [tfm_path=auto] )
560
561     AC_CHECK_PROGS(KPSEWHICH, kpsewhich, no)
562     AC_MSG_CHECKING(for tfm path)
563
564     TFM_FONTS="cmr msam"
565
566     if test "x$tfm_path" = xauto ; then
567         if test "x$KPSEWHICH" != "xno" ; then
568             for i in $TFM_FONTS; do
569                 dir=`$KPSEWHICH tfm ${i}10.tfm`
570                 TFM_PATH="$TFM_PATH `dirname $dir`"
571             done
572         else
573             AC_STEPMAKE_WARN(Please specify where cmr10.tfm lives:
574     ./configure --enable-tfm-path=/usr/local/TeX/lib/tex/fonts)
575         fi
576     else
577          TFM_PATH=$tfm_path
578     fi
579
580     TFM_PATH=`echo $TFM_PATH | tr ':' ' '`
581     AC_MSG_RESULT($TFM_PATH)
582     AC_SUBST(TFM_PATH)
583 ])
584
585 AC_DEFUN(AC_STEPMAKE_TEXMF, [
586     # urg, never know what names these teTeX guys will think up
587
588     AC_CHECK_PROGS(METAFONT, mf, no)
589     if test "x$METAFONT" = "xno"; then
590         AC_CHECK_PROGS(MFONT, mfont, -echo no mf or mfont)
591         METAFONT=$MFONT
592     fi
593
594     AC_CHECK_PROGS(METAPOST, mp, no)
595     if test "x$METAPOST" = "xno"; then
596         AC_CHECK_PROGS(MPOST, mpost, -echo no mp or mpost)
597
598         METAPOST=$MPOST
599     fi
600
601     AC_CHECK_PROGS(INIMETAFONT, inimf, no)
602     if test "x$INIMETAFONT" = "xno"; then
603         AC_CHECK_PROGS(INIMFONT, inimfont, -echo no inimf or inimfont)
604         INIMETAFONT=$INIMFONT
605     fi
606
607     AC_CHECK_PROGS(INIMETAPOST, inimp, no)
608     if test "x$INIMETAPOST" = "xno"; then
609         AC_CHECK_PROGS(INIMPOST, inimpost, -echo no inimp or inimpost)
610         INIMETAPOST=$INIMPOST
611     fi
612
613     AC_MSG_CHECKING(for working metafont mode)
614     modelist='ljfour lj4 lj3 lj2 ljet laserjet'
615     for MFMODE in $modelist; do
616         $METAFONT "\mode:=$MFMODE; mode_setup; end." > /dev/null 2>&1
617         if test -f mfput.tfm; then
618             break;
619         fi
620     done
621
622     #
623     # For now let people define these in their environments
624     #
625     : ${MFPLAIN_MP=`kpsewhich mp mfplain.mp`}
626
627     if test  ${INIMETAPOST} = "inimp" ; then
628        : ${INIMETAPOST_FLAGS=''}
629     else
630        : ${INIMETAPOST_FLAGS='-interaction=nonstopmode'}
631     fi
632
633     rm -f mfput.*
634     AC_MSG_RESULT($MFMODE)
635
636     AC_SUBST(METAFONT)
637     AC_SUBST(METAPOST)
638     AC_SUBST(MFMODE)
639     AC_SUBST(INIMETAFONT)
640     AC_SUBST(INIMETAPOST)
641     AC_SUBST(MFPLAIN_MP)
642     AC_SUBST(INIMETAPOST_FLAGS)
643 ])
644
645 AC_DEFUN(AC_STEPMAKE_WARN, [
646     AC_MSG_WARN($1)
647     warn_b=yes
648 ])
649
650 AC_DEFUN(AC_STEPMAKE_YODL, [
651     if test "x$YODL" = "x"; then 
652         AC_CHECK_PROGS(STRIPROFF, striproff, -echo no striproff)
653         AC_CHECK_PROGS(YODL, yodl, -echo no yodl)
654         AC_CHECK_PROGS(YODL2HTML, yodl2html, -echo no yodl)
655         AC_CHECK_PROGS(YODL2LATEX, yodl2latex, )
656         AC_CHECK_PROGS(YODL2MAN, yodl2man, -echo no yodl)
657         AC_CHECK_PROGS(YODL2MSLESS, yodl2msless, -echo no yodl)
658         AC_CHECK_PROGS(YODL2TEXINFO, yodl2texinfo, -echo no yodl)
659         AC_CHECK_PROGS(YODL2TXT, yodl2txt, -echo no yodl)
660         YODL2LESS_DIR='$(bindir)/'
661     else
662         AC_SUBST(STRIPROFF)
663         AC_SUBST(YODL)
664         AC_SUBST(YODL2HTML)
665         AC_SUBST(YODL2LATEX)
666         AC_SUBST(YODL2LESS_DIR)
667         AC_SUBST(YODL2MAN)
668         AC_SUBST(YODL2MSLESS)
669         AC_SUBST(YODL2TEXINFO)
670         AC_SUBST(YODL2TXT)
671         export STRIPROFF YODL YODL2HTML YODL2LATEX YODL2MAN YODL2MSLESS YODL2TEXINFO YODL2TXT
672     fi
673     if test "x$YODL" = "-echo no yodl"; then
674         AC_STEPMAKE_WARN(Did not find YODL (Yodl is Yet Oneother Document Language, see http://www.cs.uu.nl/~hanwen/yodl))
675     fi    
676 ])
677
678 dnl should cache result.
679 dnl should  look in $prefix first.
680 dnl should probably assume TDS
681
682 AC_DEFUN(AC_TEX_PREFIX, [
683     
684
685     AC_MSG_CHECKING(TeX/MF root dir directory)    
686
687     find_root_prefix="$prefix"
688     
689
690     test "x$find_root_prefix" = xNONE && find_root_prefix="$ac_default_prefix"
691     find_texpostfix="";
692     for postfix in "/lib/tex/" "/lib/texmf" "/lib" "/tex" "/texmf"; do
693         find_texprefix="$find_root_prefix$postfix"
694         if test -d $find_texprefix; then
695             find_texpostfix=$postfix
696             break;
697         fi
698     done
699     
700     if test "x$find_texpostfix" = x; then
701         find_texpostfix='/lib/texmf/tex'
702         AC_STEPMAKE_WARN(Cannot determine the TeX-directory. Please use --enable-tex-prefix)
703     fi
704
705     find_texprefix="$find_root_prefix/$find_texpostfix"
706
707     # only assign if variablename not empty
708     if test x != "x[$]$1"; then
709         $1='${prefix}'/"$find_texpostfix"
710     fi
711     AC_MSG_RESULT($find_texprefix)
712
713 ])
714  
715
716 # find a directory inside a prefix, 
717 # $1 the prefix (expanded version)
718 # $2 variable to assign
719 # $3 the directory name 
720 # $4 description
721 AC_DEFUN(AC_FIND_DIR_IN_PREFIX, [
722     
723     AC_MSG_CHECKING($4 directory)    
724     find_dirdir=`(cd $1; 
725       $FIND ./ -type d -a -name $3 -print |sort|head -1|sed 's#^\./##')`
726     
727
728     if test "x$find_dirdir" = x; then
729        find_dirdir="/$3";
730        AC_STEPMAKE_WARN(Cannot determine $4 subdirectory. Please set from command-line)
731         true
732     fi
733     $2=$find_dirdir
734     AC_MSG_RESULT($1/$find_dirdir)
735 ])
736
737 # ugh.  this is hopeless
738 AC_DEFUN(AC_KPSE_TEX_DIR, [
739         kpse_paths=`(kpsepath -n latex tex; kpsepath -n tex tex) | sed 's/:/ /g' | tr ' ' '\012' |sort | uniq -d`
740         kpse_syspaths=`echo $kpse_paths | grep '!'| sed 's/!//g'`
741         echo $kpse_paths
742         if test -w "$kpse_syspaths";
743         then
744                 dir=`echo $kpse_syspaths | head -1`
745         else
746                 dir=`echo $kpse_paths | grep -v '!'| head -1`
747         fi
748         if test "$prefix" = "NONE"; then
749                 local_prefix=$ac_default_prefix
750                 local_prefix_quote='${prefix}'
751
752         else
753                 local_prefix=$prefix
754                 local_prefix_quote=$prefix
755         fi
756         echo $local_prefix_quote = $local_prefix
757         echo $dir
758         echo $dir  | sed 's!'$local_prefix'!\$local_prefix_quote!g'
759 ])
760
761 AC_DEFUN(AC_TEX_SUBDIR, [
762 dnl    AC_REQUIRE([AC_TEX_PREFIX])
763     AC_FIND_DIR_IN_PREFIX($find_texprefix, $1, tex,TeX input)
764     $1="$TEXPREFIX/$$1"
765 ])
766
767 AC_DEFUN(AC_MF_SUBDIR, [
768 dnl     AC_REQUIRE([AC_TEX_PREFIX])
769     AC_FIND_DIR_IN_PREFIX($find_texprefix, $1, source, MF input)
770     $1="$TEXPREFIX/$$1"
771 ])
772
773 AC_DEFUN(AC_CHECK_SEARCH_RESULT, [
774         result="`echo \"$1\" | grep echo`"
775         if test "x$1" = "xerror" -o "x$result" != "x"; then
776                 AC_STEPMAKE_WARN(can\'t find $2. $3)
777         fi
778 ])
779
780 dnl   GUILE_FLAGS --- set flags for compiling and linking with Guile
781 dnl
782 dnl   This macro runs the `guile-config' script, installed with Guile,
783 dnl   to find out where Guile's header files and libraries are
784 dnl   installed.  It sets two variables, marked for substitution, as
785 dnl   by AC_SUBST.
786 dnl   
787 dnl     GUILE_CFLAGS --- flags to pass to a C or C++ compiler to build
788 dnl             code that uses Guile header files.  This is almost
789 dnl             always just a -I flag.
790 dnl   
791 dnl     GUILE_LDFLAGS --- flags to pass to the linker to link a
792 dnl             program against Guile.  This includes `-lguile' for
793 dnl             the Guile library itself, any libraries that Guile
794 dnl             itself requires (like -lqthreads), and so on.  It may
795 dnl             also include a -L flag to tell the compiler where to
796 dnl             find the libraries.
797
798 AC_DEFUN([GUILE_FLAGS],[
799 ## The GUILE_FLAGS macro.
800   AC_MSG_CHECKING(for Guile)
801   if ! $guile_config link > /dev/null ; then
802       AC_MSG_RESULT("cannot execute $guile_config")
803       AC_MSG_ERROR("cannot find guile-config; is Guile installed?")
804       exit 1
805   fi
806   GUILE_CFLAGS="`$guile_config compile`"
807   GUILE_LDFLAGS="`$guile_config link`"
808   AC_SUBST(GUILE_CFLAGS)
809   AC_SUBST(GUILE_LDFLAGS)
810   AC_MSG_RESULT(yes)
811 ])
812
813
814 # Configure paths for GTK+
815 # Owen Taylor     97-11-3
816
817 dnl AM_PATH_GTK([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
818 dnl Test for GTK, and define GTK_CFLAGS and GTK_LIBS
819 dnl
820 AC_DEFUN(AM_PATH_GTK,
821 [dnl 
822 dnl Get the cflags and libraries from the gtk-config script
823 dnl
824   AC_PATH_PROG(GTK_CONFIG, gtk-config, no)
825   min_gtk_version=ifelse([$1], ,1.1.1,$1)
826   AC_MSG_CHECKING(for GTK - version >= $min_gtk_version)
827   no_gtk=""
828   if test "$GTK_CONFIG" != "no" ; then
829     GTK_CFLAGS=`$GTK_CONFIG --cflags`
830     GTK_LIBS=`$GTK_CONFIG --libs`
831     ac_save_CFLAGS="$CFLAGS"
832     ac_save_LIBS="$LIBS"
833     ac_save_CXXFLAGS="$CXXFLAGS"
834     CFLAGS="$CFLAGS $GTK_CFLAGS"
835     CXXFLAGS="$CXXFLAGS $GTK_CFLAGS"
836     LIBS="$LIBS $GTK_LIBS"
837 dnl
838 dnl Now check if the installed GTK is sufficiently new. (Also sanity
839 dnl checks the results of gtk-config to some extent)
840 dnl
841     AC_TRY_RUN([
842 #include <gtk/gtk.h>
843 #include <stdio.h>
844
845 int 
846 main ()
847 {
848   int major, minor, micro;
849
850   if (sscanf("$min_gtk_version", "%d.%d.%d", &major, &minor, &micro) != 3) {
851      printf("%s, bad version string\n", "$min_gtk_version");
852      exit(1);
853    }
854
855    return !((gtk_major_version > major) ||
856             ((gtk_major_version == major) && (gtk_minor_version > minor)) ||
857             ((gtk_major_version == major) && (gtk_minor_version == minor) && (gtk_micro_version >= micro)));
858 }
859 ],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
860      CFLAGS="$ac_save_CFLAGS"
861      CXXFLAGS="$ac_save_CXXFLAGS"
862      LIBS="$ac_save_LIBS"
863   else
864      no_gtk=yes
865   fi
866   if test "x$no_gtk" = x ; then
867      AC_MSG_RESULT(yes)
868      ifelse([$2], , :, [$2])     
869   else
870      AC_MSG_RESULT(no)
871      GTK_CFLAGS=""
872      GTK_LIBS=""
873      ifelse([$3], , :, [$3])
874   fi
875   CXXFLAGS="$CXXFLAGS $GTK_CFLAGS"
876   AC_SUBST(CXXFLAGS)
877   AC_SUBST(GTK_CFLAGS)
878   AC_SUBST(GTK_LIBS)
879 ])
880
881
882 # Configure paths for GTK--
883 # Erik Andersen 30 May 1998
884 # Modified by Tero Pulkkinen (added the compiler checks... I hope they work..)
885
886 dnl Test for GTK__, and define GTK___CFLAGS and GTK___LIBS
887 dnl   to be used as follows:
888 dnl AM_PATH_GTKMM([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
889 dnl
890
891 dnl Get the cflags and libraries from the gtkmm-config script
892 dnl
893 AC_ARG_WITH(gtkmm-prefix,[  --with-gtkmm-prefix=PREFIX
894                           Prefix where GTK-- is installed (optional)],
895             gtkmm_config_prefix="$withval", gtkmm_config_prefix="")
896 AC_ARG_WITH(gtkmm-exec-prefix,[  --with-gtkmm-exec-prefix=PREFIX
897                           Exec prefix where GTK-- is installed (optional)],
898             gtkmm_config_exec_prefix="$withval", gtkmm_config_exec_prefix="")
899 AC_ARG_ENABLE(gtkmmtest, [  --disable-gtkmmtest     Do not try to compile and run a test GTK-- program],
900                     , enable_gtkmmtest=yes)
901
902   if test x$gtkmm_config_exec_prefix != x ; then
903      gtkmm_config_args="$gtkmm_config_args --exec-prefix=$gtkmm_config_exec_prefix"
904      if test x${GTKMM_CONFIG+set} != xset ; then
905         GTKMM_CONFIG=$gtkmm_config_exec_prefix/bin/gtkmm-config
906      fi
907   fi
908   if test x$gtkmm_config_prefix != x ; then
909      gtkmm_config_args="$gtkmm_config_args --prefix=$gtkmm_config_prefix"
910      if test x${GTKMM_CONFIG+set} != xset ; then
911         GTKMM_CONFIG=$gtkmm_config_prefix/bin/gtkmm-config
912      fi
913   fi
914
915
916 AC_DEFUN(AM_PATH_GTKMM,
917 [dnl 
918
919 dnl
920 dnl Check if the installed GTK-- is sufficiently new.
921 dnl
922   AC_PATH_PROG(GTKMM_CONFIG, gtkmm-config, no)
923   min_gtkmm_version=ifelse([$1], ,0.9.14,$1)
924
925   AC_MSG_CHECKING(for GTK-- - version >= $min_gtkmm_version)
926   no_gtkmm=""
927   if test "$GTKMM_CONFIG" = "no" ; then
928     no_gtkmm=yes
929   else
930     AC_LANG_SAVE
931     AC_LANG_CPLUSPLUS
932
933     GTK___CFLAGS=`$GTKMM_CONFIG $gtkmm_config_args --cflags`
934     GTK___LIBS=`$GTKMM_CONFIG $gtkmm_config_args --libs`
935     gtkmm_config_major_version=`$GTKMM_CONFIG $gtkmm_config_args --version | \
936            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
937     gtkmm_config_minor_version=`$GTKMM_CONFIG $gtkmm_config_args --version | \
938            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
939     gtkmm_config_micro_version=`$GTKMM_CONFIG $gtkmm_config_args --version | \
940            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
941     if test "x$enable_gtkmmtest" = "xyes" ; then
942       ac_save_CXXFLAGS="$CXXFLAGS"
943       ac_save_LIBS="$LIBS"
944       CXXFLAGS="$CXXFLAGS $GTK___CFLAGS"
945       LIBS="$LIBS $GTK___LIBS"
946 dnl
947 dnl Now check if the installed GTK-- is sufficiently new. (Also sanity
948 dnl checks the results of gtkmm-config to some extent
949 dnl
950       rm -f conf.gtkmmtest
951       AC_TRY_RUN([
952 #include <gtk--.h>
953 #include <stdio.h>
954 #include <stdlib.h>
955
956 int 
957 main ()
958 {
959   int major, minor, micro;
960   char *tmp_version;
961
962   system ("touch conf.gtkmmtest");
963
964   /* HP/UX 0 (%@#!) writes to sscanf strings */
965   tmp_version = g_strdup("$min_gtkmm_version");
966   if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
967      printf("%s, bad version string\n", "$min_gtkmm_version");
968      exit(1);
969    }
970
971   if ((gtkmm_major_version != $gtkmm_config_major_version) ||
972       (gtkmm_minor_version != $gtkmm_config_minor_version) ||
973       (gtkmm_micro_version != $gtkmm_config_micro_version))
974     {
975       printf("\n*** 'gtkmm-config --version' returned %d.%d.%d, but GTK-- (%d.%d.%d)\n", 
976              $gtkmm_config_major_version, $gtkmm_config_minor_version, $gtkmm_config_micro_version,
977              gtkmm_major_version, gtkmm_minor_version, gtkmm_micro_version);
978       printf ("*** was found! If gtkmm-config was correct, then it is best\n");
979       printf ("*** to remove the old version of GTK--. You may also be able to fix the error\n");
980       printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
981       printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
982       printf("*** required on your system.\n");
983       printf("*** If gtkmm-config was wrong, set the environment variable GTKMM_CONFIG\n");
984       printf("*** to point to the correct copy of gtkmm-config, and remove the file config.cache\n");
985       printf("*** before re-running configure\n");
986     } 
987 /* GTK-- does not have the GTKMM_*_VERSION constants */
988 /* 
989   else if ((gtkmm_major_version != GTKMM_MAJOR_VERSION) ||
990            (gtkmm_minor_version != GTKMM_MINOR_VERSION) ||
991            (gtkmm_micro_version != GTKMM_MICRO_VERSION))
992     {
993       printf("*** GTK-- header files (version %d.%d.%d) do not match\n",
994              GTKMM_MAJOR_VERSION, GTKMM_MINOR_VERSION, GTKMM_MICRO_VERSION);
995       printf("*** library (version %d.%d.%d)\n",
996              gtkmm_major_version, gtkmm_minor_version, gtkmm_micro_version);
997     }
998 */
999   else
1000     {
1001       if ((gtkmm_major_version > major) ||
1002         ((gtkmm_major_version == major) && (gtkmm_minor_version > minor)) ||
1003         ((gtkmm_major_version == major) && (gtkmm_minor_version == minor) && (gtkmm_micro_version >= micro)))
1004       {
1005         return 0;
1006        }
1007      else
1008       {
1009         printf("\n*** An old version of GTK-- (%d.%d.%d) was found.\n",
1010                gtkmm_major_version, gtkmm_minor_version, gtkmm_micro_version);
1011         printf("*** You need a version of GTK-- newer than %d.%d.%d. The latest version of\n",
1012                major, minor, micro);
1013         printf("*** GTK-- is always available from ftp://ftp.gtk.org.\n");
1014         printf("***\n");
1015         printf("*** If you have already installed a sufficiently new version, this error\n");
1016         printf("*** probably means that the wrong copy of the gtkmm-config shell script is\n");
1017         printf("*** being found. The easiest way to fix this is to remove the old version\n");
1018         printf("*** of GTK--, but you can also set the GTKMM_CONFIG environment to point to the\n");
1019         printf("*** correct copy of gtkmm-config. (In this case, you will have to\n");
1020         printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
1021         printf("*** so that the correct libraries are found at run-time))\n");
1022       }
1023     }
1024   return 1;
1025 }
1026 ],, no_gtkmm=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
1027        CXXFLAGS="$ac_save_CXXFLAGS"
1028        LIBS="$ac_save_LIBS"
1029      fi
1030   fi
1031   if test "x$no_gtkmm" = x ; then
1032      AC_MSG_RESULT(yes)
1033      ifelse([$2], , :, [$2])     
1034   else
1035      AC_MSG_RESULT(no)
1036      if test "$GTKMM_CONFIG" = "no" ; then
1037        echo "*** The gtkmm-config script installed by GTK-- could not be found"
1038        echo "*** If GTK-- was installed in PREFIX, make sure PREFIX/bin is in"
1039        echo "*** your path, or set the GTK_CONFIG environment variable to the"
1040        echo "*** full path to gtk-config."
1041        echo "*** The gtkmm-config script was not available in GTK-- versions"
1042        echo "*** prior to 0.9.12. Perhaps you need to update your installed"
1043        echo "*** version to 0.9.12 or newer"
1044      else
1045        if test -f conf.gtkmmtest ; then
1046         :
1047        else
1048           echo "*** Could not run GTK-- test program, checking why..."
1049           CXXFLAGS="$CFLAGS $GTKMM_CXXFLAGS"
1050           LIBS="$LIBS $GTK___LIBS"
1051           AC_TRY_LINK([
1052 #include <gtk--.h>
1053 #include <stdio.h>
1054 ],      [ return ((gtkmm_major_version) || (gtkmm_minor_version) || (gtkmm_micro_version)); ],
1055         [ echo "*** The test program compiled, but did not run. This usually means"
1056           echo "*** that the run-time linker is not finding GTK-- or finding the wrong"
1057           echo "*** version of GTK--. If it is not finding GTK--, you'll need to set your"
1058           echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
1059           echo "*** to the installed location  Also, make sure you have run ldconfig if that"
1060           echo "*** is required on your system"
1061           echo "***"
1062           echo "*** If you have an old version installed, it is best to remove it, although"
1063           echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ],
1064         [ echo "*** The test program failed to compile or link. See the file config.log for the"
1065           echo "*** exact error that occured. This usually means GTK-- was incorrectly installed"
1066           echo "*** or that you have moved GTK-- since it was installed. In the latter case, you"
1067           echo "*** may want to edit the gtkmm-config script: $GTKMM_CONFIG" ])
1068           CXXFLAGS="$ac_save_CXXFLAGS"
1069           LIBS="$ac_save_LIBS"
1070        fi
1071      fi
1072      GTK___CFLAGS=""
1073      GTK__LIBS=""
1074      ifelse([$3], , :, [$3])
1075      AC_LANG_RESTORE
1076   fi
1077   AC_SUBST(GTK___CFLAGS)
1078   AC_SUBST(GTK___LIBS)
1079   rm -f conf.gtkmmtest
1080 ])
1081
1082 # Configure paths for GTK--DRAW
1083 # Derek Quinn Wyatt   98-08-21  (adapted from Jan Nieuwenhuizen's code)
1084
1085 dnl AM_PATH_GTK__DRAW([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
1086 dnl Test for GTK--DRAW, and define GTK___CFLAGS and GTK___LIBS
1087 dnl
1088 AC_DEFUN(AM_PATH_GTK__DRAW,
1089 [dnl 
1090 dnl Get the cflags and libraries from the gtk__-config script
1091 dnl
1092   AC_PATH_PROG(GTKMM_CONFIG, gtkmm-config, no)
1093   min_gtk___version=ifelse([$1], ,0.0.5,$1)
1094   AC_MSG_CHECKING(for GTK--DRAW - version >= $min_gtk___version)
1095   no_gtk__=""
1096   if test "$GTKMM_CONFIG" != "no" ; then
1097     GTK___CFLAGS=`$GTKMM_CONFIG --cflags`
1098     GTK___LIBS=`$GTKMM_CONFIG --libs`
1099     GTK___DLIBS="$GTK___LIBS -lgtkmmdraw"
1100     GTK___LIBS="$GTK___DLIBS"
1101     ac_save_CFLAGS="$CFLAGS"
1102     ac_save_LIBS="$LIBS"
1103     ac_save_CXXFLAGS="$CXXFLAGS"
1104     CFLAGS="$CFLAGS $GTK___CFLAGS"
1105     CXXFLAGS="$CXXFLAGS $GTK___CFLAGS"
1106     LIBS="$LIBS $GTK___LIBS"
1107 dnl
1108 dnl Now check if the installed GTK__ is sufficiently new. (Also sanity
1109 dnl checks the results of gtk__-config to some extent)
1110 dnl
1111     AC_TRY_RUN([
1112 #include <gtk--.h>
1113 #include <stdio.h>
1114
1115 int 
1116 main ()
1117 {
1118   // urg
1119   return 0;
1120 }
1121 ],, no_gtk__=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
1122      CFLAGS="$ac_save_CFLAGS"
1123      CXXFLAGS="$ac_save_CXXFLAGS"
1124      LIBS="$ac_save_LIBS"
1125   else
1126      no_gtk__=yes
1127   fi
1128   if test "x$no_gtk__" = x ; then
1129      AC_MSG_RESULT(yes)
1130      ifelse([$2], , :, [$2])     
1131   else
1132      AC_MSG_RESULT(no)
1133      GTK___CFLAGS=""
1134      GTK___LIBS=""
1135      ifelse([$3], , :, [$3])
1136   fi
1137   CXXFLAGS="$CXXFLAGS $GTK___CFLAGS"
1138   AC_SUBST(CXXFLAGS)
1139   AC_SUBST(GTK___CFLAGS)
1140   AC_SUBST(GTK___LIBS)
1141 ])