summaryrefslogtreecommitdiffstats
path: root/gnu/lib
Commit message (Collapse)AuthorAgeFilesLines
* Drop support for COPY, -c has been the default mode of install(1)ru2002-07-292-2/+2
| | | | | | for a long time now. Approved by: bde
* s/${INSTALL} -c/${INSTALL} ${COPY}/ru2002-07-181-1/+1
|
* Bandaid for sparc64. Do not build libstdc++.so for now on sparc64.peter2002-07-081-0/+2
| | | | Binaries compiled with it segfault.
* Disconnect the docs until we figure out if there are any with v3.obrien2002-06-191-1/+1
|
* In addition to exiting the dialog via ESC, the user could also havedougb2002-06-131-1/+1
| | | | | exited via \r, \n, or ' ' (space); all of which are valid, non-error responses.
* Use POSIX macros for wait(2)-style status information instead of themike2002-06-031-3/+2
| | | | | deprecated 4.2/4.3BSD wait union. Fix some nearby pid_t/int confusion.
* Turn on the math function stub stubs.obrien2002-06-021-1/+1
| | | | | Submitted by: Martin Blapp <mb@imp.ch> I believe OK with: peter
* The new bsd.incs.mk is powerful enough to handle this wrinkle.ru2002-05-318-213/+100
|
* Add used includes of <stdlib.h>.wollman2002-05-302-0/+3
|
* Tweak so that .o's are written into src/contrib/gccobrien2002-05-291-2/+2
|
* Build docs not out of libobc++.295obrien2002-05-291-1/+1
|
* Add some build glue for libstdc++. I'm not a C++ person, but this seemspeter2002-05-2912-183/+1432
| | | | | | | | | to work at least for the non-hairy stuff. The main wrinkle here is that a whole mess of include files get installed and under different names. An earlier version of this built a shadow include tree first in the obj directory, but this depends on the 'make includes' functionality. More tweaking is certainly going to be needed.
* Alpha has crtfastmath also.obrien2002-05-261-1/+1
|
* Rev 1.12 broke `make all' w/o a previous `make depends'.obrien2002-05-261-4/+5
|
* Fix the sparc64 build and make the LIB1ASMSRC handling more robust.obrien2002-05-181-9/+14
|
* Improve chances that we correctly compile LIB1ASMSRC on all architectures.phk2002-05-181-2/+2
| | | | | | | | | | sparc64 looked for the nonexistent sparc64/lb1spc.asm file instead of the sparc/lb1spc.asm file. arm probably looked for arm/arm/lib1funcs.asm instead of arm/lib1funcs.asm ia64 probably looked for ia64/ia64/lib1funcs.asm instead of ia64/lib1funcs.asm i386 and alpha don't seen to use the LIB1ASMSRC.
* Move LIB1ASMFUNCS from the SYMS variable and explicitly add it to OBJSpeter2002-05-171-3/+2
| | | | | | | | later. Otherwise make will try and build the supposedly assembler .o files from libgcc2.c - which does not work too well (the .o's have no content) Reviewed by: obrien
* Put on peril-sensitive sunglasses and risk touching gcc related build gluepeter2002-05-171-15/+19
| | | | | | | | | again. Try and deal with platforms that provide their own crtbegin/end asm files (ia64 for example). crtstuff.c does not actually work on ia64 since libgcc.a doesn't have a few key support functions when built on ia64 so it is compulsory to use crtbegin.asm and crtend.asm. Reviewed by: obrien
* Post rev 1.39, the PowerPC specific additions to OBJS was getting lost.obrien2002-05-171-1/+3
|
* bsd.lib.mk now understands what to do with .asm files.obrien2002-05-171-2/+2
| | | | | So we can refer to these files by their real name vs. playing tricks renaming them during the build.
* GCC 3.1 on PowerPC also has the crtsavres C Run Time file.obrien2002-05-171-0/+5
|
* Make sure to not yet build the GNU C++, but still allowru2002-05-151-4/+2
| | | | | for the C++ progs to be built with e.g. an old compiler, CXX=/usr/bin/c++, for the time being.
* Quote {CC} so ccache can be used.obrien2002-05-141-1/+1
|
* Fixed CLEANFILES after bsd.lib.mk sweep.ru2002-05-131-1/+3
|
* Major cleanup of bsd.lib.mk.ru2002-05-132-6/+1
| | | | | | | Get rid of the INTERNALSTATICLIB knob and just use plain INTERNALLIB. INTERNALLIB now means to build static library only and don't install anything. Added a NOINSTALLLIB knob for libpam/modules. To not build any library at all, just do not set LIB.
* NOLIB is gone; put INTERNALLIB back for now.ru2002-05-121-0/+2
|
* Added new bsd.incs.mk which handles installing of header filesru2002-05-128-43/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | via INCS. Implemented INCSLINKS (equivalent to SYMLINKS) to handle symlinking include files. Allow for multiple groups of include files to be installed, with the powerful INCSGROUPS knob. Documentation to follow. Added standard `includes' and `incsinstall' targets, use them in Makefile.inc1. Headers from the following makefiles were not installed before (during `includes' in Makefile.inc1): kerberos5/lib/libtelnet/Makefile lib/libbz2/Makefile lib/libdevinfo/Makefile lib/libform/Makefile lib/libisc/Makefile lib/libmenu/Makefile lib/libmilter/Makefile lib/libpanel/Makefile Replaced all `beforeinstall' targets for installing includes with the INCS stuff. Renamed INCDIR to INCSDIR, for consistency with FILES and SCRIPTS, and for compatibility with NetBSD. Similarly for INCOWN, INCGRP, and INCMODE. Consistently use INCLUDEDIR instead of /usr/include. gnu/lib/libstdc++/Makefile and gnu/lib/libsupc++/Makefile changes were only lightly tested due to the missing contrib/libstdc++-v3. I fully tested the pre-WIP_GCC31 version of this patch with the contrib/libstdc++.295 stuff. These changes have been tested on i386 with the -DNO_WERROR "make world" and "make release".
* Properly build lb1spc.asm on Sparc64.obrien2002-05-121-3/+28
|
* There is no more NOLIB.obrien2002-05-121-1/+0
|
* I was not strict enough with my ordering of things to satisfy make(1) nieveobrien2002-05-121-28/+26
| | | | symbol evaluation which causes it to be very sensitive to macro ordering.
* [Ab]use LDFLAGS rather than CFLAGS.obrien2002-05-101-1/+2
| | | | BDE tells me POSIX pretends `ld' as a directly callable entity does not exist.
* Bmake bits for Gcc 3.1.obrien2002-05-107-344/+1371
| | | | Partially made possible by: Wilko.Bulte@compaq.com
* All platforms should be on equal footing now -- no special handling forobrien2002-05-101-10/+6
| | | | Sparc64 and IA-64.
* libstdc++ version 3 (Gcc 3.1 is a consumer) uses the typical `config.h'.obrien2002-05-071-0/+1
|
* GCC's libstdc++ version 3 has the "libgcc" like bits (start up / terminateobrien2002-05-061-0/+1
| | | | code, `new' handler, exception handling, etc.) split out into libsupc++.
* It is easier for me to debug with -I's at the rear.obrien2002-04-201-1/+1
|
* -ltermcap is spelled -lncurses nowadays.ru2002-04-091-2/+2
|
* Unbreak world (missing .else)peter2002-04-081-0/+1
| | | | | Submitted by: fenner Pointy hat to: obrien
* Some things don't compile on ia64 and sparc64 yet.obrien2002-04-081-1/+8
|
* Style reorg. Also spell -fpic as determined by bsd.lib.mk.obrien2002-04-051-6/+5
|
* Style reorg.obrien2002-04-051-5/+2
|
* Back out the previous revision for now. Instead, the current sparc64jhb2002-01-071-4/+0
| | | | Makefile changes are in the sparc64 p4 tree.
* Don't build csu or libgcc on sparc64 for the time being.jhb2002-01-031-0/+4
|
* Fixed memory leak in dialog_gauge(3).ru2001-11-291-0/+4
| | | | | | PR: gnu/32260 Submitted by: Igor Pokrovsky <tiamat@telegraph.spb.ru> MFC after: 3 days
* -v must have a space between it and the variable.obrien2001-11-011-1/+3
| | | | | Submitted by: David Wolfskill <david@catwhisker.org> (did I mention he should be a committer? :-) )
* Removed mentions of TARGET_ARCH from non-cross places.ru2001-10-041-4/+2
|
* Fixed missing return type in synopsis.bde2001-10-031-0/+1
|
* mdoc(7) police: Use the new .In macro for #include statements.ru2001-10-011-1/+1
|
* Properly move cursor when home and end keys are used.eric2001-08-312-4/+20
|
* Remove libgmp build infrastructure.dd2001-08-104-287/+0
|
OpenPOWER on IntegriCloud