From owner-cvs-gnu Mon Apr 7 01:08:27 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA29721 for cvs-gnu-outgoing; Mon, 7 Apr 1997 01:08:27 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA29714; Mon, 7 Apr 1997 01:08:23 -0700 (PDT) Date: Mon, 7 Apr 1997 01:08:23 -0700 (PDT) From: Peter Wemm Message-Id: <199704070808.BAA29714@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/gdb/gdb freebsd-nat.c Makefile nm.h tm.h Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 97/04/07 01:08:22 Modified: gnu/usr.bin/gdb/gdb Makefile nm.h tm.h Added: gnu/usr.bin/gdb/gdb freebsd-nat.c Log: Attempt to patch up gdb so that it has a chance of working with the new UPAGES layout.. it was entirely too comfortable with reading and writing the U area before. I've changed it to use PT_GETREGS/PT_PUTREGS ptrace ops instead of READ_U etc. The code to read the registers from core dumps is a bandaid at best. It seems to have problems reading core dumps from dynamic linked executables still, but at least static dumps work. I desperately need help from a gdb/bfd expert. :-) HELP!! Revision Changes Path 1.21 +3 -3 src/gnu/usr.bin/gdb/gdb/Makefile 1.7 +3 -0 src/gnu/usr.bin/gdb/gdb/nm.h 1.7 +6 -0 src/gnu/usr.bin/gdb/gdb/tm.h From owner-cvs-gnu Mon Apr 7 09:52:59 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA23175 for cvs-gnu-outgoing; Mon, 7 Apr 1997 09:52:59 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA23165; Mon, 7 Apr 1997 09:52:56 -0700 (PDT) Date: Mon, 7 Apr 1997 09:52:56 -0700 (PDT) From: Bruce Evans Message-Id: <199704071652.JAA23165@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/texinfo/doc Makefile src/gnu/usr.bin/texinfo/info Makefile src/gnu/usr.bin/texinfo/install-info Makefile src/gnu/usr.bin/texinfo/libtxi Makefile src/gnu/usr.bin/texinfo/makeinfo Makefile Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 97/04/07 09:52:55 Modified: gnu/usr.bin/texinfo/doc Makefile gnu/usr.bin/texinfo/info Makefile gnu/usr.bin/texinfo/install-info Makefile gnu/usr.bin/texinfo/libtxi Makefile gnu/usr.bin/texinfo/makeinfo Makefile Log: Fixed bugs involving paths: - LDADD was wrong for non-uniform obj trees. - DPADD was wrong for separate obj tres. Cleaned up nearby messes, mostly ones invoving paths: - -I../libtxi was useless. - there were too many redefinitions and too many different names for the same paths. - use INTERNALLIB* to simplify libtxi/Makefile. Revision Changes Path 1.8 +4 -10 src/gnu/usr.bin/texinfo/doc/Makefile 1.6 +8 -16 src/gnu/usr.bin/texinfo/info/Makefile 1.6 +8 -18 src/gnu/usr.bin/texinfo/install-info/Makefile 1.4 +7 -16 src/gnu/usr.bin/texinfo/libtxi/Makefile 1.7 +9 -16 src/gnu/usr.bin/texinfo/makeinfo/Makefile From owner-cvs-gnu Mon Apr 7 10:21:23 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA25175 for cvs-gnu-outgoing; Mon, 7 Apr 1997 10:21:23 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA25168; Mon, 7 Apr 1997 10:21:21 -0700 (PDT) Date: Mon, 7 Apr 1997 10:21:21 -0700 (PDT) From: Bruce Evans Message-Id: <199704071721.KAA25168@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/texinfo Makefile.inc Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 97/04/07 10:21:20 Added: gnu/usr.bin/texinfo Makefile.inc Log: Fixed bugs involving paths: - LDADD was wrong for non-uniform obj trees. - DPADD was wrong for separate obj tres. Cleaned up nearby messes, mostly ones invoving paths: - ../libtxi was useless. - there were too many redefinitions and too many different names for the same paths. - use INTERNALLIB* to simplify libtxi/Makefile. From owner-cvs-gnu Wed Apr 9 09:00:12 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA28175 for cvs-gnu-outgoing; Wed, 9 Apr 1997 09:00:12 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA28167; Wed, 9 Apr 1997 09:00:10 -0700 (PDT) Date: Wed, 9 Apr 1997 09:00:10 -0700 (PDT) From: Peter Wemm Message-Id: <199704091600.JAA28167@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/lib/libstdc++ Makefile Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 97/04/09 09:00:09 Modified: gnu/lib/libstdc++ Makefile Log: Oops. Missed the Complex number add case of code generation.. :-] Fixes PR#3239. Submitted by: Takeshi WATANABE Revision Changes Path 1.5 +4 -4 src/gnu/lib/libstdc++/Makefile From owner-cvs-gnu Thu Apr 10 07:34:36 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA08755 for cvs-gnu-outgoing; Thu, 10 Apr 1997 07:34:36 -0700 (PDT) Received: (from wpaul@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA08745; Thu, 10 Apr 1997 07:34:33 -0700 (PDT) Date: Thu, 10 Apr 1997 07:34:33 -0700 (PDT) From: Bill Paul Message-Id: <199704101434.HAA08745@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.sbin/ypserv server.c Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 97/04/10 07:34:32 Branch: gnu/usr.sbin/ypserv RELENG_2_1_0 Modified: gnu/usr.sbin/ypserv server.c Log: Backport extra ypproc_xfr_2_svc() sanity check to the 2.1 branch. (Note: in case it doesn't show up, this commit is to the RELENG_2_1_0 branch.) Revision Changes Path 1.6.4.3 +18 -2 src/gnu/usr.sbin/ypserv/Attic/server.c From owner-cvs-gnu Thu Apr 10 09:04:52 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA14705 for cvs-gnu-outgoing; Thu, 10 Apr 1997 09:04:52 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA14698; Thu, 10 Apr 1997 09:04:50 -0700 (PDT) Date: Thu, 10 Apr 1997 09:04:50 -0700 (PDT) From: Bruce Evans Message-Id: <199704101604.JAA14698@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/man/lib Makefile Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 97/04/10 09:04:49 Modified: gnu/usr.bin/man/lib Makefile Log: Fixed bogus existence test related to searching for a nearby obj directory. config.h is always in the current (= object) directory, so don't search for it. config.h is not a source for the library, so don't put it in SRCS and don't make the library depend on it. Don't put unused flags in CFLAGS. Simplify using INTERNALLIB*. Revision Changes Path 1.8 +9 -18 src/gnu/usr.bin/man/lib/Makefile From owner-cvs-gnu Thu Apr 10 09:13:23 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA15409 for cvs-gnu-outgoing; Thu, 10 Apr 1997 09:13:23 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA15400; Thu, 10 Apr 1997 09:13:20 -0700 (PDT) Date: Thu, 10 Apr 1997 09:13:20 -0700 (PDT) From: Bruce Evans Message-Id: <199704101613.JAA15400@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/man/man Makefile Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 97/04/10 09:13:19 Modified: gnu/usr.bin/man/man Makefile Log: Fixed bogus existence test related to searching for a nearby obj directory. man.1 is always in the current (= object) directory, so don't search for it. Revision Changes Path 1.22 +1 -6 src/gnu/usr.bin/man/man/Makefile From owner-cvs-gnu Thu Apr 10 09:14:14 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA15525 for cvs-gnu-outgoing; Thu, 10 Apr 1997 09:14:14 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA15511; Thu, 10 Apr 1997 09:14:11 -0700 (PDT) Date: Thu, 10 Apr 1997 09:14:11 -0700 (PDT) From: Bruce Evans Message-Id: <199704101614.JAA15511@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/man/manpath Makefile Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 97/04/10 09:14:10 Modified: gnu/usr.bin/man/manpath Makefile Log: Fixed bogus existence test related to searching for a nearby obj directory. manpath.1 is always in the current (= object) directory, so don't search for it. Revision Changes Path 1.16 +1 -6 src/gnu/usr.bin/man/manpath/Makefile From owner-cvs-gnu Thu Apr 10 09:33:37 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA16473 for cvs-gnu-outgoing; Thu, 10 Apr 1997 09:33:37 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA16462; Thu, 10 Apr 1997 09:33:34 -0700 (PDT) Date: Thu, 10 Apr 1997 09:33:34 -0700 (PDT) From: Bruce Evans Message-Id: <199704101633.JAA16462@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/lib/libmp Makefile src/gnu/lib/libgmp Makefile Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 97/04/10 09:33:33 Modified: gnu/lib/libgmp Makefile gnu/lib/libmp Makefile Log: Fixed bogus existence test related to searching for a nearby obj directory. The object (= current) directory always exists, so don't search for it. Use ${.TARGET} instead of deprecated $@. Revision Changes Path 1.11 +2 -6 src/gnu/lib/libgmp/Makefile 1.11 +2 -6 src/gnu/lib/libmp/Makefile From owner-cvs-gnu Thu Apr 10 22:17:31 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA26989 for cvs-gnu-outgoing; Thu, 10 Apr 1997 22:17:31 -0700 (PDT) Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA26979; Thu, 10 Apr 1997 22:17:29 -0700 (PDT) Date: Thu, 10 Apr 1997 22:17:29 -0700 (PDT) From: "Jordan K. Hubbard" Message-Id: <199704110517.WAA26979@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/man/lib Makefile Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/10 22:17:27 Modified: gnu/usr.bin/man/lib Makefile Log: Make depend rely on config.h Revision Changes Path 1.9 +1 -1 src/gnu/usr.bin/man/lib/Makefile From owner-cvs-gnu Thu Apr 10 22:53:43 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA28271 for cvs-gnu-outgoing; Thu, 10 Apr 1997 22:53:43 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA28266; Thu, 10 Apr 1997 22:53:33 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id PAA06556; Fri, 11 Apr 1997 15:49:36 +1000 Date: Fri, 11 Apr 1997 15:49:36 +1000 From: Bruce Evans Message-Id: <199704110549.PAA06556@godzilla.zeta.org.au> To: cvs-all@freefall.freebsd.org, CVS-committers@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org, jkh@freefall.freebsd.org Subject: Re: cvs commit: src/gnu/usr.bin/man/lib Makefile Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Modified: gnu/usr.bin/man/lib Makefile > Log: > Make depend rely on config.h Oops. The man makefiles are remarkably complicated for such a simple program suite. (man/lib doesn't depend or rely on config.h, but it needs to build it because man/man and man/manpath depend on it and `make depend' time and are missing explicit dependencies that would give the man makefiles tn3270-like complications and evilness.) Perhaps config.h should be a source file (configured before import time) as in cvs and gdb. Bruce From owner-cvs-gnu Fri Apr 11 01:54:58 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA05167 for cvs-gnu-outgoing; Fri, 11 Apr 1997 01:54:58 -0700 (PDT) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id BAA05162; Fri, 11 Apr 1997 01:54:53 -0700 (PDT) Received: from time.cdrom.com (jkh@localhost [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id BAA16527; Fri, 11 Apr 1997 01:54:45 -0700 (PDT) To: Bruce Evans cc: cvs-all@freefall.freebsd.org, CVS-committers@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org, jkh@freefall.freebsd.org Subject: Re: cvs commit: src/gnu/usr.bin/man/lib Makefile In-reply-to: Your message of "Fri, 11 Apr 1997 15:49:36 +1000." <199704110549.PAA06556@godzilla.zeta.org.au> Date: Fri, 11 Apr 1997 01:54:44 -0700 Message-ID: <16523.860748884@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > man makefiles tn3270-like complications and evilness.) Perhaps config.h > should be a source file (configured before import time) as in cvs and gdb. Well, we're still not out of the woods with gdb yet, boss: :-) in/gdb/gdb/../../../../contrib/gdb/opcodes/dis-buf.c cc -O2 -pipe -I/usr/src/gnu/usr.bin/gdb/gdb -I/usr/include/readline -I/usr/src/gnu/usr.bin/gdb/gdb/../bfd -DNO_MMALLOC -I/usr/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/include/. -I/usr/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/gdb/. -I/usr/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/bfd/. -I/usr/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/libiberty/. -I/usr/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/gdb/config/. -DHAVE_CONFIG_H -c /usr/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/opcodes/disassemble.c make: don't know how to make bfd. Stop *** Error code 2 Hmmmm. I'll look into this now. What do you want me to do with config.h then? Jordan From owner-cvs-gnu Fri Apr 11 08:59:36 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA25691 for cvs-gnu-outgoing; Fri, 11 Apr 1997 08:59:36 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA25682; Fri, 11 Apr 1997 08:59:29 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id BAA27230; Sat, 12 Apr 1997 01:55:32 +1000 Date: Sat, 12 Apr 1997 01:55:32 +1000 From: Bruce Evans Message-Id: <199704111555.BAA27230@godzilla.zeta.org.au> To: bde@zeta.org.au, jkh@time.cdrom.com Subject: Re: cvs commit: src/gnu/usr.bin/man/lib Makefile Cc: cvs-all@freefall.freebsd.org, CVS-committers@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org, jkh@freefall.freebsd.org Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >> man makefiles tn3270-like complications and evilness.) Perhaps config.h >> should be a source file (configured before import time) as in cvs and gdb. > >Well, we're still not out of the woods with gdb yet, boss: :-) > >in/gdb/gdb/../../../../contrib/gdb/opcodes/dis-buf.c >cc -O2 -pipe -I/usr/src/gnu/usr.bin/gdb/gdb -I/usr/include/readline -I/usr/src/gnu/usr.bin/gdb/gdb/../bfd -DNO_MMALLOC -I/usr/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/include/. -I/usr/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/gdb/. -I/usr/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/bfd/. -I/usr/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/libiberty/. -I/usr/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/gdb/config/. -DHAVE_CONFIG_H -c /usr/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/opcodes/disassemble.c >make: don't know how to make bfd. Stop >*** Error code 2 It's almost the same problem :-(. `ld -f' doesn't work right for libraries that don't already exist, and libbfd.a doesn't exist if `make depend' is run first. It works for nonexistent libraries referenced as foo/bar.a (ld -f just prints the name folling the `l' in this case), but not for nonexistent libraries accessed as -Lfoo -lbar (ld -f just prints the name following the `l' in this case too, so -lbfd becomes plain bfd. Oops. It can't do better, since the library might actually be named foo/bar.so.666 when it exists, or there might be more than one -L). >Hmmmm. I'll look into this now. What do you want me to do with >config.h then? Just avoid doing it that way in future imports. Bruce From owner-cvs-gnu Fri Apr 11 09:44:21 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA00325 for cvs-gnu-outgoing; Fri, 11 Apr 1997 09:44:21 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA00313; Fri, 11 Apr 1997 09:44:17 -0700 (PDT) Date: Fri, 11 Apr 1997 09:44:17 -0700 (PDT) From: Satoshi Asami Message-Id: <199704111644.JAA00313@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/lib/libreadline/doc Makefile history.texinfo hstech.texinfo hsuser.texinfo readline.texinfo rltech.texinfo rluser.texinfo src/gnu/lib/libreadline Makefile config.h COPYING ChangeLog README README.8bit STANDALONE VERSION ansi_stdlib.h bind.c chardefs.h complete.c display.c emacs_keymap.c funmap.c history.c history.h isearch.c keymaps.c keymaps.h memalloc.h parens.c posixstat.h readline.3 readline.c readline.h rlconf.h rldefs.h rltty.c search.c signals.c tilde.c tilde.h vi_keymap.c vi_mode.c xmalloc.c src/gnu/lib/libreadline/examples Inputrc Makefile fileman.c histexamp.c manexamp.c Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk asami 97/04/11 09:44:15 Branch: gnu/lib/libreadline RELENG_2_2 gnu/lib/libreadline/doc RELENG_2_2 gnu/lib/libreadline/examples RELENG_2_2 Modified: gnu/lib/libreadline Makefile config.h gnu/lib/libreadline/doc Makefile Removed: gnu/lib/libreadline COPYING ChangeLog README README.8bit STANDALONE VERSION ansi_stdlib.h bind.c chardefs.h complete.c display.c emacs_keymap.c funmap.c history.c history.h isearch.c keymaps.c keymaps.h memalloc.h parens.c posixstat.h readline.3 readline.c readline.h rlconf.h rldefs.h rltty.c search.c signals.c tilde.c tilde.h vi_keymap.c vi_mode.c xmalloc.c gnu/lib/libreadline/doc history.texinfo hstech.texinfo hsuser.texinfo readline.texinfo rltech.texinfo rluser.texinfo gnu/lib/libreadline/examples Inputrc Makefile fileman.c histexamp.c manexamp.c Log: Bring in latest libreadline from -current. Note src/contrib/libreadline is already tagged into RELENG_2_2. Revision Changes Path 1.23.2.1 +19 -11 src/gnu/lib/libreadline/Makefile 1.1.6.1 +18 -71 src/gnu/lib/libreadline/config.h 1.7.6.1 +3 -4 src/gnu/lib/libreadline/doc/Makefile From owner-cvs-gnu Fri Apr 11 09:54:13 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA01723 for cvs-gnu-outgoing; Fri, 11 Apr 1997 09:54:13 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA01714; Fri, 11 Apr 1997 09:54:10 -0700 (PDT) Date: Fri, 11 Apr 1997 09:54:10 -0700 (PDT) From: Satoshi Asami Message-Id: <199704111654.JAA01714@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/texinfo/doc info-stnd.texi info.texi makeinfo.texi texi.texi src/gnu/usr.bin/texinfo/info dir.c display.c display.h doc.c doc.h dribble.c dribble.h echo_area.c echo_area.h filesys.c filesys.h footnotes.c footnotes.h funs.h gc.c gc.h general.h getopt.c getopt.h getopt1.c indices.c indices.h info-utils.c info-utils.h info.1 info.c info.h infodoc.c infomap.c infomap.h m-x.c nodemenu.c nodes.c nodes.h search.c search.h session.c session.h signals.c signals.h termdep.h terminal.c terminal.h tilde.c tilde.h variables.c variables.h window.c window.h xmalloc.c src/gnu/usr.bin/texinfo/makedoc Makefile makedoc.c xmalloc.c src/gnu/usr.bin/texinfo/misc Makefile Makefile.in NEWS README deref.c fixfonts mkinstalldirs tex3patch texi2dvi src/gnu/usr.bin/texinfo/info-files Makefile dir src/gnu/usr.bin/texinfo/makeinfo makeinfo.c src/gnu/usr.bin/texinfo/texindex Makefile texindex.c Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk asami 97/04/11 09:54:10 Branch: gnu/usr.bin/texinfo/doc RELENG_2_2 gnu/usr.bin/texinfo/info RELENG_2_2 gnu/usr.bin/texinfo/info-files RELENG_2_2 gnu/usr.bin/texinfo/makedoc RELENG_2_2 gnu/usr.bin/texinfo/makeinfo RELENG_2_2 gnu/usr.bin/texinfo/misc RELENG_2_2 gnu/usr.bin/texinfo/texindex RELENG_2_2 Removed: gnu/usr.bin/texinfo/doc info-stnd.texi info.texi makeinfo.texi texi.texi gnu/usr.bin/texinfo/info dir.c display.c display.h doc.c doc.h dribble.c dribble.h echo_area.c echo_area.h filesys.c filesys.h footnotes.c footnotes.h funs.h gc.c gc.h general.h getopt.c getopt.h getopt1.c indices.c indices.h info-utils.c info-utils.h info.1 info.c info.h infodoc.c infomap.c infomap.h m-x.c nodemenu.c nodes.c nodes.h search.c search.h session.c session.h signals.c signals.h termdep.h terminal.c terminal.h tilde.c tilde.h variables.c variables.h window.c window.h xmalloc.c gnu/usr.bin/texinfo/info-files Makefile dir gnu/usr.bin/texinfo/makedoc Makefile makedoc.c xmalloc.c gnu/usr.bin/texinfo/makeinfo makeinfo.c gnu/usr.bin/texinfo/misc Makefile Makefile.in NEWS README deref.c fixfonts mkinstalldirs tex3patch texi2dvi gnu/usr.bin/texinfo/texindex Makefile texindex.c Log: Bring in latest texinfo from -current. Note src/contrib/texinfo is already tagged into RELENG_2_2. From owner-cvs-gnu Fri Apr 11 09:58:52 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA02488 for cvs-gnu-outgoing; Fri, 11 Apr 1997 09:58:52 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA02470; Fri, 11 Apr 1997 09:58:48 -0700 (PDT) Date: Fri, 11 Apr 1997 09:58:48 -0700 (PDT) From: Satoshi Asami Message-Id: <199704111658.JAA02470@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-user, cvs-lib, cvs-share, cvs-gnu, cvs-usrsbin Subject: cvs commit: src Makefile src/contrib/gcc/cp reno.texi src/contrib/libgmp gmp.texi src/gnu/lib/libgmp/doc Makefile src/gnu/usr.bin/awk/doc Makefile src/gnu/usr.bin/bison/doc Makefile src/gnu/usr.bin/dc/doc Makefile src/gnu/usr.bin/diff/doc Makefile src/gnu/usr.bin/gdb/doc Makefile src/lib/libcom_err/doc Makefile src/share Makefile src/gnu/lib/libg++/doc Makefile src/gnu/lib/libregex/doc Makefile src/gnu/libexec/uucp/doc Makefile src/gnu/usr.bin/as/doc Makefile src/gnu/usr.bin/cc/doc Makefile src/gnu/usr.bin/cvs/doc Makefile src/gnu/usr.bin/gperf/doc Makefile src/gnu/usr.bin/ptx/doc Makefile src/gnu/usr.bin/send-pr/doc Makefile send-pr.texi src/share/mk bsd.info.mk bsd.own.mk src/usr.sbin/amd/doc Makefile Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk asami 97/04/11 09:58:47 Branch: . RELENG_2_2 share RELENG_2_2 share/mk RELENG_2_2 Modified: . Makefile contrib/gcc/cp reno.texi contrib/libgmp gmp.texi gnu/lib/libg++/doc Makefile gnu/lib/libgmp/doc Makefile gnu/lib/libregex/doc Makefile gnu/libexec/uucp/doc Makefile gnu/usr.bin/as/doc Makefile gnu/usr.bin/awk/doc Makefile gnu/usr.bin/bison/doc Makefile gnu/usr.bin/cc/doc Makefile gnu/usr.bin/cvs/doc Makefile gnu/usr.bin/dc/doc Makefile gnu/usr.bin/diff/doc Makefile gnu/usr.bin/gdb/doc Makefile gnu/usr.bin/gperf/doc Makefile gnu/usr.bin/ptx/doc Makefile gnu/usr.bin/send-pr/doc Makefile send-pr.texi lib/libcom_err/doc Makefile share Makefile share/mk bsd.info.mk bsd.own.mk usr.sbin/amd/doc Makefile Log: Merge in from -current all the changes needed to make world with the latest texinfo. Revision Changes Path 1.109.2.3 +5 -2 src/Makefile 1.1.1.1.2.1 +1 -1 src/contrib/gcc/cp/reno.texi 1.1.1.1.2.1 +1 -1 src/contrib/libgmp/gmp.texi 1.1.2.1 +3 -1 src/gnu/lib/libg++/doc/Makefile 1.3.2.1 +3 -4 src/gnu/lib/libgmp/doc/Makefile 1.3.2.1 +3 -0 src/gnu/lib/libregex/doc/Makefile 1.2.6.1 +1 -0 src/gnu/libexec/uucp/doc/Makefile 1.2.6.1 +2 -0 src/gnu/usr.bin/as/doc/Makefile 1.1.6.1 +3 -0 src/gnu/usr.bin/awk/doc/Makefile 1.1.2.1 +3 -1 src/gnu/usr.bin/bison/doc/Makefile 1.3.2.1 +6 -1 src/gnu/usr.bin/cc/doc/Makefile 1.5.2.1 +5 -1 src/gnu/usr.bin/cvs/doc/Makefile 1.1.6.1 +2 -0 src/gnu/usr.bin/dc/doc/Makefile 1.1.4.1 +4 -2 src/gnu/usr.bin/diff/doc/Makefile 1.3.6.3 +5 -1 src/gnu/usr.bin/gdb/doc/Makefile 1.1.2.1 +3 -1 src/gnu/usr.bin/gperf/doc/Makefile 1.1.6.1 +2 -0 src/gnu/usr.bin/ptx/doc/Makefile 1.1.6.1 +1 -0 src/gnu/usr.bin/send-pr/doc/Makefile 1.1.6.1 +1 -1 src/gnu/usr.bin/send-pr/doc/send-pr.texi 1.1.1.1.6.2 +2 -2 src/lib/libcom_err/doc/Makefile 1.12.2.1 +1 -1 src/share/Makefile 1.19.2.1 +128 -18 src/share/mk/bsd.info.mk 1.7.2.1 +8 -1 src/share/mk/bsd.own.mk 1.2.6.1 +3 -1 src/usr.sbin/amd/doc/Makefile From owner-cvs-gnu Fri Apr 11 10:09:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA03394 for cvs-gnu-outgoing; Fri, 11 Apr 1997 10:09:06 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA03380; Fri, 11 Apr 1997 10:09:03 -0700 (PDT) Date: Fri, 11 Apr 1997 10:09:03 -0700 (PDT) From: Bruce Evans Message-Id: <199704111709.KAA03380@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/ld ld.c Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 97/04/11 10:09:02 Modified: gnu/usr.bin/ld ld.c Log: Don't print nonexistent library names for `ld -f [-Lfoo] -lbar'. A dependency on `bar' is very unlikely to be correct. This is a quick fix for broken dependencies in gdb and many other places. The dependencies on internal libraries are now missing instead of wrong when `make depend' is run before the libraries are created. Revision Changes Path 1.43 +10 -2 src/gnu/usr.bin/ld/ld.c From owner-cvs-gnu Fri Apr 11 10:54:03 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA06335 for cvs-gnu-outgoing; Fri, 11 Apr 1997 10:54:03 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA06326; Fri, 11 Apr 1997 10:54:02 -0700 (PDT) Date: Fri, 11 Apr 1997 10:54:02 -0700 (PDT) From: Satoshi Asami Message-Id: <199704111754.KAA06326@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/texinfo/doc Makefile src/gnu/usr.bin/texinfo/info Makefile src/gnu/usr.bin/texinfo/makeinfo Makefile src/gnu/usr.bin/texinfo Makefile Makefile.inc Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk asami 97/04/11 10:54:01 Branch: gnu/usr.bin/texinfo RELENG_2_2 gnu/usr.bin/texinfo/doc RELENG_2_2 gnu/usr.bin/texinfo/info RELENG_2_2 gnu/usr.bin/texinfo/makeinfo RELENG_2_2 Modified: gnu/usr.bin/texinfo Makefile Makefile.inc gnu/usr.bin/texinfo/doc Makefile gnu/usr.bin/texinfo/info Makefile gnu/usr.bin/texinfo/makeinfo Makefile Log: (I'm not sure why this didn't get committed last time....) Merge in texinfo changes from -current to use src/contrib/texinfo. Revision Changes Path 1.3.6.1 +2 -4 src/gnu/usr.bin/texinfo/Makefile 1.5.2.1 +10 -2 src/gnu/usr.bin/texinfo/Makefile.inc 1.3.2.1 +5 -6 src/gnu/usr.bin/texinfo/doc/Makefile 1.4.2.1 +18 -22 src/gnu/usr.bin/texinfo/info/Makefile 1.3.6.1 +12 -16 src/gnu/usr.bin/texinfo/makeinfo/Makefile From owner-cvs-gnu Sat Apr 12 00:19:13 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA18822 for cvs-gnu-outgoing; Sat, 12 Apr 1997 00:19:13 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA18815; Sat, 12 Apr 1997 00:19:11 -0700 (PDT) Date: Sat, 12 Apr 1997 00:19:11 -0700 (PDT) From: Peter Wemm Message-Id: <199704120719.AAA18815@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin Makefile Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 97/04/12 00:19:10 Modified: gnu/usr.bin Makefile Log: Don't descend into the perl directory if it isn't there (eg: cvsup refuse file), or if NOPERL is defined (eg: in /etc/make.conf) Revision Changes Path 1.36 +6 -2 src/gnu/usr.bin/Makefile From owner-cvs-gnu Sat Apr 12 08:21:40 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA07187 for cvs-gnu-outgoing; Sat, 12 Apr 1997 08:21:40 -0700 (PDT) Received: from po2.glue.umd.edu (root@po2.glue.umd.edu [129.2.128.45]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA07147; Sat, 12 Apr 1997 08:20:58 -0700 (PDT) Received: from modem.eng.umd.edu (modem.eng.umd.edu [129.2.98.187]) by po2.glue.umd.edu (8.8.5/8.8.5) with ESMTP id LAA25038; Sat, 12 Apr 1997 11:20:55 -0400 (EDT) Received: from localhost (chuckr@localhost) by modem.eng.umd.edu (8.8.5/8.6.4) with SMTP id LAA06703; Sat, 12 Apr 1997 11:20:54 -0400 (EDT) X-Authentication-Warning: modem.eng.umd.edu: chuckr owned process doing -bs Date: Sat, 12 Apr 1997 11:20:54 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@modem.eng.umd.edu To: Peter Wemm cc: CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org Subject: Re: cvs commit: src/gnu/usr.bin Makefile In-Reply-To: <199704120719.AAA18815@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sat, 12 Apr 1997, Peter Wemm wrote: > peter 97/04/12 00:19:10 > > Modified: gnu/usr.bin Makefile > Log: > Don't descend into the perl directory if it isn't there (eg: cvsup > refuse file), or if NOPERL is defined (eg: in /etc/make.conf) > > Revision Changes Path > 1.36 +6 -2 src/gnu/usr.bin/Makefile > This was a really nice thing to do. Thanks, Peter! I'll go upgrade my tcl and tk to 8.0 now. ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-cvs-gnu Sat Apr 12 23:39:03 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA20025 for cvs-gnu-outgoing; Sat, 12 Apr 1997 23:39:03 -0700 (PDT) Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA20015; Sat, 12 Apr 1997 23:39:00 -0700 (PDT) Date: Sat, 12 Apr 1997 23:39:00 -0700 (PDT) From: "Jordan K. Hubbard" Message-Id: <199704130639.XAA20015@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/send-pr send-pr-el.in Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/12 23:39:00 Modified: gnu/usr.bin/send-pr send-pr-el.in Log: Close PR#3118 Revision Changes Path 1.2 +1 -1 src/gnu/usr.bin/send-pr/send-pr-el.in