mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 20:33:03 +00:00
since we don't want to insist on a version number at the start of the changelog every time. * Makefile.maint: Sync from coreutils a bit better. (sc_trailing_blank): Renamed from sc_trailing_space. All uses changed. (sc_no_if_have_config_h, sc_require_config_h): (sc_prohibit_assert_without_use): New rules. (sc_obsolete_symbols): Don't catch Makefile.maint itself. (sc_dd_max_sym_length): Fix leading spaces in rule. (sc_system_h_headers): Prefix with @. (sc_useless_cpp_parens, m4-check): Output line numbers. (changelog-check): Allow version only in head. * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to satisfy new Makefile.maint rule. * data/glr.c: Likewise. * data/glr.cc: Likewise. * data/lalr1.cc: Likewise. * data/yacc.c: Likewise. * lib/ebitsetv.c: Likewise. * lib/lbitset.c: Likewise. * lib/subpipe.c: Likewise. * lib/timevar.c: Likewise. * src/system.h: Likewise. * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output. * djgpp/Makefile.maint: Add copyright notice. * djgpp/README.in: Likewise. * djgpp/config.bat: Likewise. * djgpp/config.site: Likewise. * djgpp/config_h.sed: Likewise. * djgpp/djunpack.bat: Likewise. * djgpp/config.sed: Fix copyright notice to match standard format. * djgpp/subpipe.h: Likewise. * lib/bitsetv-print.c: Likewise. * lib/bitsetv.c: Likewise. * lib/subpipe.h: Likewise. * lib/timevar.c: Likewise. * lib/timevar.h: Likewise. * djgpp/subpipe.c: Use standard recipe for config.h. * lib/abitset.c: Likewise. * lib/bitset.c: Likewise. * lib/bitset_stats.c: Likewise. * lib/bitsetv-print.c: Likewise. * lib/bitsetv.c: Likewise. * lib/ebitsetv.c: Likewise. * lib/get-errno.c: Likewise. * lib/lbitset.c: Likewise. * lib/subpipe.c: Likewise. * lib/timevar.c: Likewise. * lib/vbitset.c: Likewise. * tests/local.at: Likewise. * src/scan-gram.l: Don't include verify.h, since system.h does that for us. * .x-sc_require_config_h: New file. * .x-sc_unmarked_diagnostics: New file.
87 lines
3.3 KiB
Batchfile
87 lines
3.3 KiB
Batchfile
@echo off
|
|
Rem
|
|
Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line
|
|
Rem format, or else stock DOS/Windows shells will refuse to run it.
|
|
Rem
|
|
Rem This batch file unpacks the Bison distribution while simultaneously
|
|
Rem renaming some of the files whose names are invalid on DOS or conflict
|
|
Rem with other file names after truncation to DOS 8+3 namespace.
|
|
Rem
|
|
Rem Copyright (C) 2005 Free Software Foundation, Inc.
|
|
Rem
|
|
Rem This program is free software; you can redistribute it and/or modify
|
|
Rem it under the terms of the GNU General Public License as published by
|
|
Rem the Free Software Foundation; either version 2, or (at your option)
|
|
Rem any later version.
|
|
Rem
|
|
Rem This program is distributed in the hope that it will be useful,
|
|
Rem but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
Rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
Rem GNU General Public License for more details.
|
|
Rem
|
|
Rem You should have received a copy of the GNU General Public License
|
|
Rem along with this program; if not, write to the Free Software Foundation,
|
|
Rem Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
Rem
|
|
Rem
|
|
Rem Invoke like this:
|
|
Rem
|
|
Rem djunpack bison-XYZ.tar
|
|
Rem
|
|
Rem where XYZ is the version number. If the argument includes leading
|
|
Rem directories, it MUST use backslashes, not forward slashes.
|
|
Rem
|
|
Rem The following 2 lines need to be changed with each new Bison release, to
|
|
Rem be identical to the name of the top-level directory where the Bison
|
|
Rem distribution unpacks itself.
|
|
set ENVIRONMENT_SIZE_TEST_STRING=ENVIRONMENT_SIZE_TEST_STRING
|
|
if "%ENVIRONMENT_SIZE_TEST_STRING%"=="ENVIRONMENT_SIZE_TEST_STRING" GoTo EnvOk
|
|
Rem If their environment space is too small, re-exec with a larger one
|
|
command.com /e:4096 /c %0 %1
|
|
GoTo End
|
|
:EnvOk
|
|
set ENVIRONMENT_SIZE_TEST_STRING=
|
|
if "%1" == "" GoTo NoArgument
|
|
if not exist %1 GoTo NoArchive
|
|
Rem Extract top src dir from archive file.
|
|
djtar -t %1 > top_src.dir
|
|
Rem The following uses a feature of COPY whereby it does not copy
|
|
Rem empty files. We need that because the previous line will create
|
|
Rem an empty fnchange.tmp even if the command failed for some reason.
|
|
copy top_src.dir junk.tmp > nul
|
|
if not exist junk.tmp GoTo NoDjTar
|
|
del junk.tmp
|
|
sed "1{s/^.*bison-/djtar -x -p -o bison-/;s|$|djgpp/fnchange.lst %%1 > fnchange.tmp|};2,$d" top_src.dir > ext_list.bat
|
|
Rem See the comment above about the reason for using COPY.
|
|
copy ext_list.bat junk.tmp > nul
|
|
if not exist junk.tmp GoTo NoSed
|
|
del junk.tmp
|
|
Rem Extract fnchange.lst from archive.
|
|
call ext_list.bat %1
|
|
del ext_list.bat
|
|
sed "1{s|^.*bison-|s/@V@/bison-|;s|$|g|};2,$d" top_src.dir > version.sed
|
|
sed -f version.sed < fnchange.tmp > fnchange.lst
|
|
del version.sed
|
|
del fnchange.tmp
|
|
del top_src.dir
|
|
Rem unpack the source distribution
|
|
djtar -x -n fnchange.lst %1
|
|
del fnchange.lst
|
|
GoTo End
|
|
:NoSed
|
|
del junk.tmp
|
|
echo FAIL: Sed is not available.
|
|
GoTo End
|
|
:NoDjTar
|
|
del junk.tmp
|
|
echo FAIL: DJTAR is not available or no fnchange.lst file in %1.
|
|
GoTo End
|
|
:NoArchive
|
|
echo FAIL: the file %1 does not seem to exist.
|
|
echo Remember that %1 cannot use forward slashes, only backslashes.
|
|
GoTo End
|
|
:NoArgument
|
|
echo FAIL: no archive file has been specified.
|
|
echo Remember that the file name cannot use forward slashes, only backslashes.
|
|
:End
|