Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcvs2svn <>2000-05-29 18:08:53 +0400
committercvs2svn <>2000-05-29 18:08:53 +0400
commit6f7f25bfb808802e449948f672ae34b24614b61a (patch)
treee72584fcd89f1c1001b29c30678015dc5521d47d
parentb0e90f8364258c5a906a51753febd511614d41c4 (diff)
This commit was manufactured by cvs2svn to create tag 'binutils-2_10'.binutils-2_10
Sprout from binutils-2_10-branch 2000-05-29 14:08:52 UTC Phil Blundell <philb@gnu.org> 'Add generated files.' Cherrypick from master 2000-05-18 00:29:13 UTC Andrew Cagney <cagney@gnu.org> 'Typo. bfd@sourceware -> binutils@sourceware.': MAINTAINERS djunpack.bat
-rw-r--r--MAINTAINERS76
-rwxr-xr-xdjunpack.bat52
2 files changed, 128 insertions, 0 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
new file mode 100644
index 000000000..477d7c8a0
--- /dev/null
+++ b/MAINTAINERS
@@ -0,0 +1,76 @@
+Please feel free to add, edit, delete this file.
+Please do not make ChangeLog entries.
+
+COPYING, COPYING.LIB, README
+ http://gnu.org.
+
+Makefile.in, configure, configure.in
+ Please notify the following of any committed patches.
+ binutils@sourceware.cygnus.com
+ gdb-patches@sourceware.cygnus.com
+
+bfd/, binutils/, gas/, gprof/, ld/, opcodes/ & BFD's part of include/
+ binutils: http://sourceware.cygnus.com/binutils/
+ Patches to binutils@sourceware.cygnus.com.
+ Please notify the following of any interface changes:
+ gdb-patches@sourceware.cygnus.com
+
+config.guess, config.sub
+ config: http://gnu.org
+ Changes need to be done in tandem with the official CONFIG
+ sources or submitted to the master file maintainer and brought
+ in via a merge.
+
+libiberty/ & libiberty's part of include/
+ gcc: http://gcc.gnu.org
+ Changes need to be done in tandem with the official GCC
+ sources or submitted to the master file maintainer and brought
+ in via a merge.
+
+ltconfig, ltmain.sh
+ libtool: http://gnu.org
+ Changes need to be done in tandem with the official LIBTOOL
+ sources or submitted to the master file maintainer and brought
+ in via a merge.
+
+mkinstalldirs, move-if-change, symlink-tree
+ autoconf: http://gnu.org
+ Change need to be done in tandem with the official AUTOCONF
+ sources or submitted to the master file maintainer and brought
+ in via a merge.
+
+newlib/, libgloss/
+ http://sourceware.cygnus.com/newlib/
+ Patches to newlib@sourceware.cygnus.com.
+
+gdb/, mmalloc/, readline/, sim/ & GDB's part of include/
+ gdb: http://sourceware.cygnus.com/gdb/
+ Patches to gdb-patches@sourceware.cygnus.com.
+ See also gdb/MAINTAINERS, sim/MAINTAINERS, mmalloc/MAINTAINERS.
+
+itcl/, tcl/, tix/, tk/, libgui/
+ insight: http://sourceware.cygnus.com/insight/
+ Contact insight@sourceware.cygnus.com.
+
+winsup/
+ cygwin: http://sourceware.cygnus.com/cygwin
+ Patches to cygwin-patches@sourceware.cygnus.com.
+ General discussion cygwin@sourceware.cygnus.com.
+ See also winsup/MAINTAINERS.
+
+expect/, dejagnu/, config-ml.in, mpw-README, mpw-build.in,
+mpw-config.in, mpw-configure, mpw-install, setup.com, texinfo/,
+missing, makefile.vms, utils/, config/, config.if, makefile.vms,
+missing, ylwrap, mkdep, etc/, install-sh, intl/
+ ?
+
+modules file
+ Obviously changes to this file should not go through
+ overseers@sourceware.cygnus.com. If you understand the file
+ format (or can cut-and-paste existing entries), modify it. If
+ it scares you, get someone who does understand it to help you.
+ Be prepared to fix it if you do break it.
+
+/* Local variables: */
+/* change-log-default-name: "/dev/null" */
+/* End: */
diff --git a/djunpack.bat b/djunpack.bat
new file mode 100755
index 000000000..f09f5ed32
--- /dev/null
+++ b/djunpack.bat
@@ -0,0 +1,52 @@
+@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 GDB 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 Invoke like this:
+Rem
+Rem djunpack gdb-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 GDB release, to
+Rem be identical to the name of the top-level directory where the GDB
+Rem distribution unpacks itself.
+set GDBVER=gdb-5.0
+if "%GDBVER%"=="gdb-5.0" 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
+if not exist %1 GoTo NoArchive
+djtar -x -p -o %GDBVER%/gdb/config/djgpp/fnchange.lst %1 > fnchange.tmp
+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 fnchange.tmp junk.tmp > nul
+if not exist junk.tmp GoTo NoDjTar
+del junk.tmp
+sed -e 's,@V@,%GDBVER%,g' < fnchange.tmp > fnchange.lst
+Rem See the comment above about the reason for using COPY.
+copy fnchange.lst junk.tmp > nul
+if not exist junk.tmp GoTo NoSed
+del junk.tmp
+djtar -x -n fnchange.lst %1
+GoTo End
+:NoSed
+echo FAIL: Sed is not available.
+GoTo End
+:NoDjTar
+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
+:End
+set GDBVER=