* gettext.m4: Quote names of macros to be defined by AC_DEFUN
[deliverable/binutils-gdb.git] / binutils / acinclude.m4
CommitLineData
252b5132 1sinclude(../bfd/acinclude.m4)
ac48eca1
AO
2
3dnl sinclude(../libtool.m4) already included in bfd/acinclude.m4
4dnl The lines below arrange for aclocal not to bring libtool.m4
5dnl AM_PROG_LIBTOOL into aclocal.m4, while still arranging for automake
6dnl to add a definition of LIBTOOL to Makefile.in.
7ifelse(yes,no,[
8AC_DEFUN([AM_PROG_LIBTOOL],)
9AC_SUBST(LIBTOOL)
10])
11
12dnl sinclude(../gettext.m4) already included in bfd/acinclude.m4
13ifelse(yes,no,[
14AC_DEFUN([CY_WITH_NLS],)
15AC_SUBST(INTLLIBS)
16])
8ca8f343
HPN
17
18## Replacement for AC_PROG_LEX and AC_DECL_YYTEXT
19## by Alexandre Oliva <oliva@dcc.unicamp.br>
20
21## We need to override the installed aclocal/lex.m4 because of a bug in
22## this definition in the recommended automake snapshot of 000227:
23## There were double-quotes around ``$missing_dir/missing flex'' which was
24## bad since aclocal wraps it in double-quotes.
25
26dnl AM_PROG_LEX
27dnl Look for flex, lex or missing, then run AC_PROG_LEX and AC_DECL_YYTEXT
f8b73030 28AC_DEFUN([AM_PROG_LEX],
8ca8f343
HPN
29[missing_dir=ifelse([$1],,`cd $ac_aux_dir && pwd`,$1)
30AC_CHECK_PROGS(LEX, flex lex, [$missing_dir/missing flex])
31AC_PROG_LEX
32AC_DECL_YYTEXT])
This page took 0.287221 seconds and 4 git commands to generate.