diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-03-26 11:26:45 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-03-26 11:26:45 +0000 |
commit | 4d2779813faf9e0309a2eefe7a35e4b7d3489140 (patch) | |
tree | 2d5e4d50fb761d36797b6e0e6172a91f582496ba /gdb/config | |
parent | 0879a67a8f08e0b520773356f890c3e7fc98ab1e (diff) | |
download | gdb-4d2779813faf9e0309a2eefe7a35e4b7d3489140.zip gdb-4d2779813faf9e0309a2eefe7a35e4b7d3489140.tar.gz gdb-4d2779813faf9e0309a2eefe7a35e4b7d3489140.tar.bz2 |
* config/djgpp/djconfig.sh: Add copyright notice.
* ser-go32.c (rawclock): Remove prototype; include time.h instead.
(ISR, dos_hookirq, isr_t): Convert K&R definition to ANSI C.
(top level) <string.h>: Include gdb_string.h instead.
(dos_noop, dos_raw, dos_noflush_set_tty_state)
(dos_print_tty_state, dos_info): Remove ATTRIBUTE_UNUSED.
* go32-nat.c (go32_create_inferior): Move the declaration of
`environ' to here from the top level.
(top level) <_initialize_go32_nat>: Remove redundant prototype.
<gdb_string.h>: Include it instead of string.h.
(store_register): Call register_buffer instead of accessing
registers[] directly.
(redir_cmdline_delete, redir_cmdline_parse, redir_to_debugger)
(redir_to_debugger, redir_debug_init) [__DJGPP_MINOR__ < 3]: Put
the function names at the start of the line.
(go32_set_dr): Throw internal_error if the argument is not a valid
debug register number.
(go32_open, go32_close, go32_attach, go32_detach, go32_resume)
(go32_wait, go32_xfer_memory, go32_files_info)
(go32_terminal_info): Remove ATTRIBUTE_UNUSED.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/djgpp/djconfig.sh | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/gdb/config/djgpp/djconfig.sh b/gdb/config/djgpp/djconfig.sh index 241f6dd..ae3006d 100644 --- a/gdb/config/djgpp/djconfig.sh +++ b/gdb/config/djgpp/djconfig.sh @@ -1,15 +1,35 @@ #!/bin/sh -# +# # This shell script is a wrapper to the main configure script when # configuring GDB for DJGPP. 99% of it can also be used when # configuring other GNU programs for DJGPP. # +#===================================================================== +# Copyright 1997, 1999, 2000, 2001 Free Software Foundation, Inc. +# # Originally written by Robert Hoehne, revised by Eli Zaretskii. +# This file is part of GDB. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -# Call it like the main configure script with one exception. If you +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. */ +#===================================================================== +# +# Call this script like the main configure script with one exception. If you # want to pass parameters to configure, you have to pass as the first # argument the srcdir, even when it is `.' !!!!! - +# # Where are the sources? If you are used to having the sources # in a separate directory and the objects in another, then set # here the full path to the source directory and run this script |