Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: bison/src/bison/2.4.1/bison-2.4.1-src/m4/m4.m4

Issue 10807020: Add native Windows binary for bison. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright 2000 Free Software Foundation, Inc.
2 #
3 # This program is free software: you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation, either version 3 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16 # BISON_PROG_GNU_M4
17 # -----------------
18 # Check for GNU m4, at least 1.3 (supports frozen files).
19 AC_DEFUN([BISON_PROG_GNU_M4],
20 [AC_PATH_PROGS(M4, gm4 gnum4 m4, m4)
21 AC_CACHE_CHECK(whether m4 supports frozen files, ac_cv_prog_gnu_m4,
22 [ac_cv_prog_gnu_m4=no
23 if test x"$M4" != x; then
24 case `$M4 --help < /dev/null 2>&1` in
25 *reload-state*) ac_cv_prog_gnu_m4=yes ;;
26 esac
27 fi])])
OLDNEW
« no previous file with comments | « bison/src/bison/2.4.1/bison-2.4.1-src/m4/longlong.m4 ('k') | bison/src/bison/2.4.1/bison-2.4.1-src/m4/malloc.m4 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698