summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* (1) New variable, SCRIPTS_ENV, which is passed to scripts/configureasami1997-01-121-23/+43
| | | | | | | | | | | | | | | | | | | | | | | and scripts/{pre,post}-* as environment vars. Also, if BATCH is set, "BATCH=yes" is automatically added to SCRIPTS_ENV. (Requested by: max) (2) The INSTALL_* macros are added to SCRIPTS_ENV and MAKE_ENV as BSD_INSTALL_*. (Requested by: obrien) (3) New variable MOTIF_ONLY, which will only build ports with REQUIRES_MOTIF defined. This doesn't do dependencies right (what if the depended port doesn't need Motif) yet. (4) Try not to clean the same port twice in clean-depends when (for instance) it's defined in both BUILD_DEPENDS and INSTALL_DEPENDS. Note that it won't check chained dependencies so you may still see the same port cleaned multiple times, but checking that far will surely make this run slower than the un-"optimized" case so I left it as is. (Requested by: jkh) (5) Ignore *.rej files in patches/ directory in addition to *~ and *.orig.
* Merge the en version changes made in 1.4 -> 1.5.max1997-01-121-2/+2
| | | | (No actual change in the translation.)
* Add more protection when running as init and don't do stupid things.jkh1997-01-125-9/+29
| | | | | Fix looping in fixit cdrom selection by adding a missing break. Move unmount of cdrom down to proper place.
* Added two useful URL's.obrien1997-01-121-1/+13
|
* Updated the Pentium chipset descriptions as suggested by Rodney Grimes.obrien1997-01-121-16/+18
| | | | Submitted by: Rodney Grimes
* *gulp* break this file off the vendor branch in order to fix thepeter1997-01-121-1/+1
| | | | | | | | info entry. It's a real shame that install-info can't override these. I'll fix the repository for this (and the readline commit as well) once this has been fixed properly... Looking at the install-info source gives me a headache. :-( This should be enough to get the tree to build again.
* Ack. When I moved the getsockopt() calls, I forgot to move the lineswpaul1997-01-121-4/+4
| | | | that initialize the getsockopt() args (type and len) too.
* Patch up the readline info building. This one is a bit of a problempeter1997-01-124-12/+33
| | | | | | since the source name is not the same as the texinfo name so we have to use SRCS=. This means we can't build two info sets in the same directory so I've split it.
* Don't conflict with INFODIR?=${SHAREDIR}/info from the system Makefilespeter1997-01-121-5/+5
|
* one more tweak to make it fly without INFO defined. (like bsd.prog.mk)peter1997-01-121-2/+2
|
* Make this slightly less bogus. I'm not 100% sure what is correct here,peter1997-01-121-1/+6
| | | | | | | | | but replacing the "dir" file unconditionally isn't it. During the course of development, if .info files go away from the sources, nothing removes them from /usr/share/info, this is the same as system binaries etc. Removing the entire index isn't helpful, because you've got to reinstall the entire tree to get it back again. bsd.info.mk has a reference to /usr/share/info/dir-tmpl, I wonder if it once created dir if needed?
* Make this (hopefully) build now. There was no dir entry.peter1997-01-121-2/+4
|
* oops, missed a ${BINDIR} -> ${INFODIR}. Also remove the slash betweenpeter1997-01-121-2/+2
| | | | ${DESTDIR}/${INFODIR}.
* Back out the last backout. This should work now that the bsd.info.mkpeter1997-01-122-4/+4
| | | | spammed revisions have been restored.
* recover spammed revisions 1.20 and 1.21. This fixes the breaks in thepeter1997-01-121-9/+8
| | | | | | builds when INFO is commented out. Pointed out by: bde
* Fix path to readline docs, since it's now in contribpeter1997-01-121-1/+1
|
* Remove yacc from the lib-tools target since it is nowsteve1997-01-121-3/+1
| | | | | | back to its original form. Requested by: jkh
* Disconnect the doc subdir as well, bsd.info.mk freaks out if therepeter1997-01-122-4/+4
| | | | is no ${INFO} variable set.. :-(
* Disconnect the doc subdir until somebody fixes this. I don't see how thispeter1997-01-121-2/+2
| | | | could possibly have worked during the testing before the last commit. :-(
* Revert the '-o output_file_name' option changes.steve1997-01-122-22/+1
|
* Revert changes to make the .y.c rule 'make -j n' safe.steve1997-01-121-2/+4
|
* - Save parent pid and check current pid against it upon entry towpaul1997-01-121-1/+10
| | | | | | | terminate(). This makes doubly sure we don't trip the SIGTERM handler in a child process. Suggested by: phk. - It's int main(argc, argv), not void main(argc, argv), gosh darn it.
* Add missing RETURN VALUES/ERRORS sections.mpp1997-01-126-13/+69
|
* Correct typos and spelling errors.jdp1997-01-124-20/+20
|
* Add support for the LD_BIND_NOW environment variable. If it is set to ajdp1997-01-126-60/+142
| | | | | | | | | | | | | | | | | | | | | nonempty string, then function calls are relocated at program start-up rather than lazily. This variable is standard on Sun and SVR4 systems. The dlopen() function now supports both lazy and immediate binding, as determined by its "mode" argument, which can be either 1 (RTLD_LAZY) or 2 (RTLD_NOW). I will add defines of these symbols to <dlfcn.h> as soon as I've done a little more checking to make sure they won't cause collisions or bootstrapping problems that would break "make world". The "LD_*" environment variables which alter dynamic linker behavior are now treated as unset if they are set to the empty string. This agrees with the standard SVR4 conventions for the dynamic linker. Add a work-around for programs compiled with certain buggy versions of crt0.o. The buggy versions failed to set the "crt_ldso" member of the interface structure. This caused certain error messages from the dynamic linker to begin with "(null)" instead of the pathname of the dynamic linker.
* Set LD_TRACE_LOADED_OBJECTS to "1" instead of to "". The dynamic linkerjdp1997-01-122-4/+4
| | | | | now treats empty "LD_*" environment variables as if they were unset, per the standard SVR4 conventions.
* Add support for the LD_BIND_NOW environment variable. If it is set to ajdp1997-01-124-4/+42
| | | | | | | | | | | nonempty string, then function calls are relocated at program start-up rather than lazily. This variable is standard on Sun and SVR4 systems. The dlopen() function now supports both lazy and immediate binding, as determined by its "mode" argument, which can be either 1 (RTLD_LAZY) or 2 (RTLD_NOW). I will add defines of these symbols to <dlfcn.h> as soon as I've done a little more checking to make sure they won't cause collisions or bootstrapping problems that would break "make world".
* Rename the DIAGNOSTICS sections in several man pagesmpp1997-01-126-7/+7
| | | | to RETURN VALUES like they should be.
* Set the "crt_ldso" member of the crt-to-ld.so interface structure. Thisjdp1997-01-111-1/+2
| | | | | | | | | | was apparently overlooked at the time the member was added. Its absence causes some error messages from the dynamic linker to begin with "(null):" instead of with the pathname of the dynamic linker as they should. I am also adding a work-around to the dynamic linker, to cope with legacy binaries that were built with older versions of crt0.
* Remove the EINVAL error from the ERRORS sections thatmpp1997-01-1127-70/+10
| | | | | say is means that a pathname had the high-order bit set, since this is no longer an error.
* Correct entity entry for Ricardo AG, make him the primary contactjkh1997-01-112-4/+4
| | | | for gallery entries.
* When we changed pmap_protect to support adding the writeabledyson1997-01-112-16/+26
| | | | | attribute to a page range, we forgot to set the PG_WRITEABLE flag in the vm_page_t. This fixes that problem.
* Initialize pcic_imask with SWI_MASK to interference from timeout routines.nate1997-01-111-0/+1
| | | | Suggested by: bde
* Minor mdoc fixes in msync.2 and munmap.2.mpp1997-01-113-6/+31
| | | | | | Add RETURN VALUES and ERRORS sections to mincore. Closes PR# 1493.
* Forgot a .El macro.mpp1997-01-111-0/+1
|
* Add RETURN VALUES and ERRORS sections.mpp1997-01-111-3/+28
|
* Some mdoc cleanup. Also added a RETURN VALUES and ERRORSmpp1997-01-111-22/+45
| | | | | | section. Part of PR# 1493.
* Remove the comment about file names having tompp1997-01-111-2/+1
| | | | | | be 7 bit clean, since it isn't true anymore. Part of PR# 1493.
* Public identifiers for Docbook 3.0jfieber1997-01-111-10/+6
|
* Add docbook 3.0jfieber1997-01-117-2/+6539
|
* Remove docbook 2.4.1jfieber1997-01-116-5223/+0
|
* Bring stat(2) into line with what is now actually inmpp1997-01-111-13/+34
| | | | | | stat.h. Also add a little blurb regarding st_mtime & friends clarifiying how they are defined in a non-_POSIX_SOURCE envorinment. Closes PR# 1089.
* Document the fact that the administrator may havempp1997-01-111-2/+7
| | | | | | | to change syslog's config file in order for all of ftpd's log messages to be displayed by syslogd. Closes PR# 1559.
* Change Brian Tao's mail address from taob@io.org tompp1997-01-111-2/+2
| | | | | | | | taob@risc.org as requested (It looks like Nate forgot or didn't know about this one, or I just jumped the gun and got to it before he did :-). Submitted by: Brian Tao <taob@risc.org>
* Add a couple of xrefs. Closes PR# 1280.mpp1997-01-111-0/+1
|
* Add a couple of xrefs.mpp1997-01-111-0/+1
|
* Add a couple of additional xrefs.mpp1997-01-111-1/+3
|
* Minor mdoc cleanup.mpp1997-01-111-2/+4
|
* Add a blurb describing the fact that ls will print thempp1997-01-111-2/+8
| | | | | | | year in place of the hour/minute fields if the time is more than 6 months in the past or future. Also some minor mdoc cleanup.
* Make ls include the year when displaying times that are more thanmpp1997-01-111-2/+6
| | | | | | 6 months into the future. Closes PR# 1657. Submitted by: Sakari Jalowaara <sja.home.tekla.fi>
OpenPOWER on IntegriCloud