summaryrefslogtreecommitdiffstats
path: root/lib/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Hook libmemstat(3) up to the build.rwatson2005-07-141-1/+1
|
* Build libpmc on all architectures (FWIW :-)marcel2005-04-201-3/+1
| | | | Ok'd by: jkoshy@
* Bring a working snapshot of hwpmc(4), its associated libraries, userland ↵jkoshy2005-04-191-1/+3
| | | | | | | | | | utilities and documentation into -CURRENT. Bump FreeBSD_version. Reviewed by: alc, jhb (kernel changes)
* Connect libthr and libthread_db to make buildworld.davidxu2005-04-021-3/+3
|
* Prepare for importing my 1:1 threading work, disconnect libthr anddavidxu2005-04-021-2/+2
| | | | libthread_db from make buildworld.
* Tie libgpib into the build (unless NO_GPIB)phk2005-02-061-1/+6
|
* NOCRYPT -> NO_CRYPTru2004-12-211-1/+1
|
* NOATM -> NO_ATMru2004-12-211-1/+1
|
* NOLIBC_R -> NO_LIBC_Rru2004-12-211-3/+3
| | | | | NOLIBPTHREAD -> NO_LIBPTHREAD NOLIBTHR -> NO_LIBTHR
* Remove stub libxpg4. All functionality was merged into libc a long time ago.tjr2004-11-131-1/+1
|
* Add knob NO_NIS (fka NO_YP_LIBC) and make world compileable when set.bz2004-11-131-1/+1
| | | | | | | | | | | If turned on no NIS support and related programs will be built. Lost parts rediscovered by: Danny Braniss <danny at cs.huji.ac.il> PR: bin/68303 No objections: des, gshapiro, nectar Reviewed by: ru Approved by: rwatson (mentor) MFC after: 2 weeks
* Help Tinderbox and remove libautofsmarkm2004-11-101-1/+1
|
* Fix build in the !NOATM case by using the begemot library in place oftrhodes2004-09-241-1/+1
| | | | | | | | using libisc which was a part of BIND8. Discussed with: des, re, dougb Submitted by: harti (one part) Reviewed by: harti (previous version)
* Switch from BIND 8 to BIND 9.des2004-09-211-4/+4
| | | | | | Submitted by: (in part) dougb@, trhodes@ Reviewed by: dougb@, trhodes@, re@ MFC after: 5 days
* Hook libautofs to the build.alfred2004-09-031-1/+1
|
* Start the de-orbital burn of our previous FreeBSD version compat libsobrien2004-08-291-3/+1
| | | | | | living in usr/src. We need to use them from ports to record dependencies. Discussed with: re(scottl)
* build libthr on amd64.davidxu2004-08-191-2/+1
|
* Turn on the magic.obrien2004-08-091-2/+2
|
* Enable libpthread build for powerpcgrehan2004-07-191-1/+1
|
* Hook libthread_db into the build, except for arm and powerpc.marcel2004-07-181-2/+6
| | | | | Porting libthread_db to arm and/or powerpc is easy enough, but we don't build gdb on those platforms yet.
* Make bluetooth compile on all platformsemax2004-07-071-1/+2
| | | | Reviewed by: imp, ru
* Style fixes:bde2004-05-141-11/+5
| | | | | | | | Main ones: mostly use conditional expressions in ifdefs instead of a mixture of conditional expressions and nested ifdefs. Nearby ones: - don't do less than echo the code in the comment about libc_r - fixed some internal insertion sort errors and indentation errors.
* Fixed some insertion sort errors (external ones only).bde2004-05-141-25/+25
|
* Do not attempt to build libdisk, libthr and libc_r for arm.cognet2004-05-141-3/+8
|
* Enable libdisk for powerpc build.grehan2004-04-211-5/+1
|
* Put libypclnt behind NO_YP_LIBCphk2004-03-101-2/+6
|
* Hook libthr to the build for PowerPCgrehan2004-03-021-1/+1
|
* Moving forward, there's no reason to exclude libpthread on sparc64.marcel2004-02-201-1/+1
|
* Connect libarchive to the build.kientzle2004-02-121-1/+1
|
* Add NO_BLUETOOTH knob to the build processemax2004-01-281-2/+4
| | | | | Requested by: phk Reviewed by: imp (mentor), ru
* The snmp_netgraph module depends on libnetgraph. So add a dependency andharti2003-11-121-3/+4
| | | | | | add libnetgraph to the list of prebuilt libraries in the main Makefile. Reviewed by: ru
* Link libbsnmp to the build.harti2003-11-101-1/+1
|
* Link libngatm to the build (unless NOATM is set).harti2003-10-221-4/+5
|
* Update Bluetooth code.emax2003-10-121-2/+5
| | | | | Reviewed by: M. Warner Losh <imp@bsdimp.com>; John Hay <jhay@freebsd.org> Approved by: M. Warner Losh <imp@bsdimp.com> (mentor)
* - Support for multibyte charsets in LIBICONV.fjoe2003-09-261-1/+1
| | | | | | | | - CD9660_ICONV, NTFS_ICONV and MSDOSFS_ICONV kernel options (with corresponding modules). - kiconv(3) for loadable charset conversion tables support. Submitted by: Ryuichiro Imura <imura@ryu16.org>
* Introduce more knobs to slim down FreeBSD userlandphk2003-08-291-1/+5
| | | | | | | NO_TOOLCHAIN skips Compilers and Binutils NO_USB skips USB stuff NO_VINUM skips Vinum stuff NO_ACPI skips ACPI stuff
* Make build of libatm depend on existing NOATM conditional.phk2003-08-271-1/+5
|
* Imply NOLIBC_R for PowerPC.obrien2003-08-161-1/+1
|
* Add libpthread to the alpha build.deischen2003-08-091-9/+3
| | | | | | Requested by ru: Since the majority of archs can now support the build of libpthread, rearrange the Makefile to treat libpthread as an exception.
* Since it builds and seems to work OK, add libpthread to the amd64 build.deischen2003-08-081-0/+3
|
* Don't check for the existance of src/crypto/ for building items thatmarkm2003-07-241-1/+1
| | | | | may contain crypto. The days of ITAR paranoia are over, and the simple macro tests that remain are sufficient.
* Connect libncp/libsmb to the build. They compile, but have a couple ofpeter2003-07-241-0/+5
| | | | | silly bugs that probably wont quite make a segfault. eg: passing a pointer to an int to sysctl instead of a pointer to a size_t.
* Now that we have the stubs for alpha and we can build itmtm2003-07-201-6/+6
| | | | | | | | on that platform, invert the test for the platforms on which libthr is built. Amd64 and powerpc are the only platforms excluded. Compile tested on: amd64, alpha
* Very big makeover in the way telnet, telnetd and libtelnet are built.markm2003-07-161-9/+3
| | | | | | | | | | | | | | | | | | | | | | | Previously, there were two copies of telnet; a non-crypto version that lived in the usual places, and a crypto version that lived in crypto/telnet/. The latter was built in a broken manner somewhat akin to other "contribified" sources. This meant that there were 4 telnets competing with each other at build time - KerberosIV, Kerberos5, plain-old-secure and base. KerberosIV is no longer in the running, but the other three took it in turns to jump all over each other during a "make buildworld". As the crypto issue has been clarified, and crypto _calls_ are not a problem, crypto/telnet has been repo-copied to contrib/telnet, and with this commit, all telnets are now "contribified". The contrib path was chosen to not destroy history in the repository, and differs from other contrib/ entries in that it may be worked on as "normal" BSD code. There is no dangerous crypto in these sources, only a very weak system less strong than enigma(1). Kerberos5 telnet and Secure telnet are now selected by using the usual macros in /etc/make.conf, and the build process is unsurprising and less treacherous.
* o disconnect libc_r from the build on ia64. The library is nowmarcel2003-06-271-0/+6
| | | | | | | | obsolete. The intend is to add glue to either libthr or libpthread to create the necessary compat links. o Hook libpthread to the build on ia64. This is slightly out of order, because the kernel still doesn't have all the support, but that's not a problem in this case.
* Re-enable libstand on all platforms including amd64.peter2003-06-261-5/+1
|
* Port libc_r to amd64, and turn it back on for amd64. It passes all ofpeter2003-06-021-1/+2
| | | | the same src/lib/libc_r/test/* tests that the other platforms pass.
* Build libthr by default on ia64.marcel2003-06-011-0/+6
|
* Hook libthr to the build. It's currently built only for i386 andmtm2003-05-311-2/+5
| | | | a NOLIBTHR knob will prevent it from being built.
* Retire the useless NOSECURE knob.des2003-05-191-4/+2
| | | | Approved by: re (scottl)
OpenPOWER on IntegriCloud