summaryrefslogtreecommitdiffstats
path: root/gnu
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Make this (hopefully) build now. There was no dir entry.peter1997-01-121-2/+4
|
* Fix path to readline docs, since it's now in contribpeter1997-01-121-1/+1
|
* 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. :-(
* Correct typos and spelling errors.jdp1997-01-121-5/+5
|
* Add support for the LD_BIND_NOW environment variable. If it is set to ajdp1997-01-122-23/+54
| | | | | | | | | | | | | | | | | | | | | 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-121-2/+2
| | | | | 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-122-2/+21
| | | | | | | | | | | 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".
* Changes to make ld demangle C++ symbol names before printingjmacd1997-01-117-1048/+94
| | | | | | error messages containing them. Reviewed by: Peter Wemm
* Same.jmacd1997-01-112-2/+5
|
* Same. This wasn't installed before either.jmacd1997-01-111-1/+3
|
* Same.jmacd1997-01-111-1/+5
|
* Same. This wasn't even in the old dir file.jmacd1997-01-111-1/+3
|
* Same.jmacd1997-01-112-1/+2
|
* Same deal.jmacd1997-01-111-0/+2
|
* Same deal.jmacd1997-01-111-1/+5
|
* Same thing.jmacd1997-01-111-0/+2
|
* Forgot a TAB.jmacd1997-01-111-1/+1
|
* Same thing.jmacd1997-01-111-0/+3
|
* Getting tired of writing same thing.jmacd1997-01-111-0/+2
|
* Added section and entry annotations.jmacd1997-01-111-0/+3
|
* Add missing info section name.jmacd1997-01-111-0/+1
|
* Add the missing annotations.jmacd1997-01-111-12/+6
|
* Add the missing annotations.jmacd1997-01-111-1/+6
|
* Clearing out the old stuff, its all in contrib now.jmacd1997-01-1178-48330/+95
|
* For "ldd -v", print shared object dependencies that were specified asjdp1997-01-101-3/+6
| | | | | pathnames (rather than as "-lfoo") correctly. Closes PR bin/2404.
* Fix some file descriptor leaks. Closes PR# 2392.mpp1997-01-092-12/+16
| | | | 2.2 candidate.
* Typo, "%d" -> "%s". This caused tar to print things likeasami1997-01-071-1/+1
| | | | tar: Can't change to directory 282656 : No such file or directory
* Remove bogus redeclaration of setenv().jkh1997-01-071-2/+4
| | | | Fixes make world failure #3 for today (part of an ongoing series).
* Fix bogosity with gdb documentation path.jkh1997-01-071-1/+1
| | | | Submitted-By: Chuck Robey <chuckr@glue.umd.edu> (with fix from me)
* Add -f to lnache1997-01-061-3/+3
|
* Use contrib version nowache1997-01-0548-23013/+52
|
* Use ${COPY} instead of -C for installing non-source files. crt*.obde1997-01-011-2/+2
| | | | | should be installed using the same flag as libraries, but ${COPY} is currently used for libraries.
* Use ${COPY} instead of -c for installing non-source files.bde1997-01-016-11/+11
|
* Fix spelling error in manpage.swallace1996-12-261-2/+2
|
* Pull the fix from rev 1.31.2.1; i've accidentally committed it tojoerg1996-12-261-1/+0
| | | | 2.2 first.
* Remove a couple of private malloc() implementations, one of whichphk1996-12-236-1033/+4
| | | | was unused afterall.
* Even more buffer overflow fixesache1996-12-192-51/+52
| | | | | | | | | | Change CATMODE to 0644, because group man not used Add immutable sbit to man binary, so if user even got man uid, he can't replace man binary with fake one Should go to 2.2 Submitted by: Marc Slemko <marcs@znep.com> with small editing by me
* Fix many buffer overflows, sprintf -> snprintfache1996-12-181-27/+25
| | | | | | Fix manpath dirs count overflow Should be in 2.2
* Fix my popen fix: conditionalize saving/restoring of euidache1996-12-181-12/+18
| | | | Should be in 2.2
* Drop man priveledges before popen and restore them after it, becauseache1996-12-181-0/+12
| | | | | | it is possible to execute system command from f.e groff Should be in 2.2
* Correct some xrefs/mlinks.mpp1996-12-141-3/+3
|
* Somewhere along the way, multiple targets started working and nobodyjkh1996-12-141-52/+1
| | | | noticed.
* Add another hateful global to libdialog (what the heck, there are alreadyjkh1996-12-149-25/+94
| | | | | | so many). For now, the only extended attribute implemented is NO ECHO, useful for things like passwords. See TESTS/input2.c for an example. This should go into 2.2.
* Line up some of these OK boxes properly again.jkh1996-12-123-4/+4
|
* Convert to mdoc format.mpp1996-12-092-94/+111
| | | | Submitted by: Sandro Sigala <sandro@cat.local.net> as part of PR# 2134
* Minor formatting fixes.mpp1996-12-093-57/+14
| | | | Submitted by: Sandro Sigala <sandro@cat.local.net> as part of PR # 2134.
* Fix a spelling error.mpp1996-12-091-1/+1
|
* Convert man page to mdoc format.mpp1996-12-091-16/+20
| | | | Submitted by: Sandro Sigala <sandro@cat.local.net> as part of PR# 2154
OpenPOWER on IntegriCloud