aboutsummaryrefslogtreecommitdiff
path: root/libexec/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Remove rexecd(8), a server that implements a particularly insecureJacques Vidrine2005-06-101-2/+0
| | | | | | | | | | method of executing commands remotely. There are no rexec clients in the FreeBSD tree, and the client function rexec(3) is present only in libcompat. It has been documented as "obsolete" since 4.3BSD, and its use has been discouraged in the man page for over 10 years. Notes: svn path=/head/; revision=147270
* Enable lukemftpd for 6.0-RELEASE.David E. O'Brien2005-05-161-5/+1
| | | | Notes: svn path=/head/; revision=146286
* Install rlogind(8). Pointy hat is available on request.Ruslan Ermilov2005-03-031-1/+1
| | | | Notes: svn path=/head/; revision=143107
* Wrap BSD r* commands in NO_RCMDS.Tom Rhodes2005-03-021-3/+9
| | | | | | | | | Change NO_RCMDNS to NO_RCMDS and do the switch in bsd.compat.mk. Discussed with: ru, nectar Notes: svn path=/head/; revision=143026
* The only user of this utility (share/man/man0) was removed 2+ years ago.Ruslan Ermilov2005-02-091-1/+0
| | | | Notes: svn path=/head/; revision=141585
* NODOCCOMPRESS -> NO_DOCCOMPRESSRuslan Ermilov2004-12-211-1/+1
| | | | | | | | | | | NOINFO -> NO_INFO NOINFOCOMPRESS -> NO_INFOCOMPRESS NOLINT -> NO_LINT NOPIC -> NO_PIC NOPROFILE -> NO_PROFILE Notes: svn path=/head/; revision=139106
* Add knob NO_NIS (fka NO_YP_LIBC) and make world compileable when set.Bjoern A. Zeeb2004-11-131-2/+7
| | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=137675
* Switch from BIND 8 to BIND 9.Dag-Erling Smørgrav2004-09-211-5/+0
| | | | | | | | | Submitted by: (in part) dougb@, trhodes@ Reviewed by: dougb@, trhodes@, re@ MFC after: 5 days Notes: svn path=/head/; revision=135549
* Commit a crude hack so we get sparc64 snapshots working again with aDavid E. O'Brien2004-06-171-3/+0
| | | | | | | | | stable ld.so. We need to revisit the rtld-elf/sparc64/rtld_start.S rev. 1.5 and rtld-elf/sparc64/rtld_machdep.h rev. 1.5, which was suppose to allow stock Binutils 2.13 (and later) to be used. Notes: svn path=/head/; revision=130635
* Fall out from Binutils 2.15: don't bulid the ld.so on Sparc64.David E. O'Brien2004-06-171-0/+3
| | | | Notes: svn path=/head/; revision=130622
* Link pf to the build and install:Max Laier2004-03-081-0/+5
| | | | | | | | | | | | | | | | | | | This adds the former ports registered groups: proxy and authpf as well as the proxy user. Make sure to run mergemaster -p in oder to complete make installworld without errors. This also provides the passive OS fingerprints from OpenBSD (pf.os) and an example pf.conf. For those who want to go without pf; it provides a NO_PF knob to make.conf. __FreeBSD_version will be bumped soon to reflect this and to be able to change ports accordingly. Approved by: bms(mentor) Notes: svn path=/head/; revision=126756
* - Build things in pure dictionary order (see sort(1)).Ruslan Ermilov2004-01-161-6/+12
| | | | | | | | | | | | | - Unify the conditional assignments section so that architectural exclusions come first, then options and !options, sorted by the option name, also in directory order, then architecture specific sections, sorted by the architecture name, with i386 being a traditional exception. Prodded by: bde Notes: svn path=/head/; revision=124587
* Very big makeover in the way telnet, telnetd and libtelnet are built.Mark Murray2003-07-161-8/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | 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. Notes: svn path=/head/; revision=117675
* Do not exclude amd64 from rtld-elf builds.Peter Wemm2003-05-241-1/+1
| | | | | | | Approved by: re (safe amd64 support commits) Notes: svn path=/head/; revision=115281
* Retire the useless NOSECURE knob.Dag-Erling Smørgrav2003-05-191-2/+1
| | | | | | | Approved by: re (scottl) Notes: svn path=/head/; revision=115157
* Allow a NOPIC "make world" to complete.Mark Murray2003-05-111-1/+1
| | | | | | | OK'ed by: re(scottl) Notes: svn path=/head/; revision=114913
* Exclude rtld-elf for amd64. More porting is still needed.Peter Wemm2003-05-081-1/+4
| | | | | | | Approved by: re (scottl) Notes: svn path=/head/; revision=114833
* Turn MAKE_KERBEROS5 into NO_KERBEROS by negating the logic. Some extraMark Murray2003-05-051-1/+1
| | | | | | | | cleanups were necessary in release/Makefile, and the tinderbox code was syntax checked, not run checked. Notes: svn path=/head/; revision=114709
* Build non-crypto telnet(1) and telnetd(8) if NO_OPENSSL is defined.Ruslan Ermilov2003-05-011-1/+1
| | | | | | | Submitted by: Marius Strobl <marius@alchemy.franken.de> Notes: svn path=/head/; revision=114448
* Don't clobber Kerberos5 telnet(1) and telnetd(8) with non-crypto versions.Ruslan Ermilov2003-04-301-3/+3
| | | | Notes: svn path=/head/; revision=114280
* Add back # accidentally deleted in 1.54Warner Losh2003-04-271-1/+1
| | | | Notes: svn path=/head/; revision=114117
* This is no longer needed after tw is gone.Warner Losh2003-04-271-2/+1
| | | | | | | Approved by: re@ (scottl) Notes: svn path=/head/; revision=114113
* Implement POSIX grantpt(3) functionality, and add a pt_chown utility (akinJuli Mallett2003-01-021-0/+1
| | | | | | | | | | | to Solaris, it is in /usr/libexec) to perform the handing over of tty nodes to the user being granted the pty. Submitted by: Ryan Younce <ryany@pobox.com> Reviewed by: security-officer@, standards@, mike@ Notes: svn path=/head/; revision=108574
* [DAIVD O'BRIEN's OPINION]David E. O'Brien2002-11-121-1/+4
| | | | | | | Head off what I think is an abuse of the TRB, and disable lukemftpd. Notes: svn path=/head/; revision=106817
* Hook rpc.rstatd back up to the build now that it compiles.Mike Barcroft2002-10-021-1/+2
| | | | Notes: svn path=/head/; revision=104385
* Unhook rpc.rstatd from the build until it actually compiles.John Baldwin2002-10-021-2/+1
| | | | Notes: svn path=/head/; revision=104376
* Initiate deorbit burn for the i386-only a.out related support. Moves arePeter Wemm2002-09-171-7/+1
| | | | | | | | | | | | | | | | | | under way to move the remnants of the a.out toolchain to ports. As the comment in src/Makefile said, this stuff is deprecated and one should not expect this to remain beyond 4.0-REL. It has already lasted WAY beyond that. Notable exceptions: gcc - I have not touched the a.out generation stuff there. ldd/ldconfig - still have some code to interface with a.out rtld. old as/ld/etc - I have not removed these yet, pending their move to ports. some includes - necessary for ldd/ldconfig for now. Tested on: i386 (extensively), alpha Notes: svn path=/head/; revision=103436
* Add tcpd to the build - though we don't need to for inetd, someone mightDavid Malone2002-08-131-0/+1
| | | | | | | | | | want it for some other service-running program. Approved by: markm MFC after: 1 week Notes: svn path=/head/; revision=101808
* Add lukemftpd to the mix.David E. O'Brien2002-02-271-0/+1
| | | | Notes: svn path=/head/; revision=91409
* Migrate uucpd to ports as well.Kris Kennaway2001-10-011-4/+0
| | | | | | | Noticed by: ru Notes: svn path=/head/; revision=84255
* Do not build (and install) both secure/ and standard versionsRuslan Ermilov2001-03-261-1/+3
| | | | | | | | | | of libtelnet, telnetd, and telnet. This only worked because secure/ was listed late in SUBDIR in Makefile.inc1. Reviewed by: markm Notes: svn path=/head/; revision=74813
* Add a system to save entropy from /dev/random periodically so thatDoug Barton2001-01-111-0/+1
| | | | | | | | | | | | | | | | | | | | | it can be used to reseed at boot time. This will greatly increase the chances that there will be sufficient entropy available at boot time to prevent long delays. For /etc/rc, remove the vmstat and iostat runs from the attempt to provide some cheesy randomness if the files fail, since those programs are dynamically linked, and ldd seems to want some randomness to do its magic. Guidance and parameters for this project were provided by Mark Murray, based on the requirements of the Yarrow algorithm. Some helpful suggestions for implementation (including the tip about iostat and vmstat) were provided by Sheldon Hearn. All blame for problems or mistakes is mine of course. Notes: svn path=/head/; revision=70922
* Wrap uucpd behind the NOUUCP knob.Dan Moschuk2000-03-241-1/+4
| | | | | | | Noticed by: Doug Barton Notes: svn path=/head/; revision=58532
* Reactivate named-xferPeter Wemm1999-11-301-1/+1
| | | | Notes: svn path=/head/; revision=53932
* Move named and associated tools into a seperate makefile section andPeter Wemm1999-11-301-4/+29
| | | | | | | disable them pending an import and cleanup of bind 8.2.2.p5. Notes: svn path=/head/; revision=53909
* Enable pppoedBrian Somers1999-11-211-1/+1
| | | | Notes: svn path=/head/; revision=53539
* Allow for a telnet in secure/ (SRA telnet).Mark Murray1999-10-071-1/+1
| | | | Notes: svn path=/head/; revision=51995
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50476
* Enable named-xfer and rbootd for alpha.Dima Ruban1998-11-101-14/+5
| | | | Notes: svn path=/head/; revision=41051
* Chaneg MACHINE to MACHINE_ARCH to support MACHINE=pc98.John Birrell1998-09-051-7/+3
| | | | | | | Remove a couple of unsupported machines. Notes: svn path=/head/; revision=38854
* Enable rtld-elf for build on alpha too. We now have support for sharedJohn Birrell1998-09-041-2/+3
| | | | | | | libraries on alpha! Notes: svn path=/head/; revision=38823
* BINFORMAT -> OBJFORMAT ready for E-day.John Birrell1998-08-301-5/+5
| | | | Notes: svn path=/head/; revision=38632
* Build mail.local and smrsh (when building sendmail)Peter Wemm1998-08-041-2/+6
| | | | Notes: svn path=/head/; revision=38101
* Fix stupid typo, I had only tested this in elf mode.Peter Wemm1998-06-121-2/+2
| | | | Notes: svn path=/head/; revision=36932
* Only build rtld-aout if we're in an a.out build environment.Peter Wemm1998-06-121-2/+5
| | | | Notes: svn path=/head/; revision=36923
* named-xfer can't be linked static due to the duplicated symbols inJohn Birrell1998-06-061-4/+4
| | | | | | | | | | | libc and libbind. rpc.rstatd required libkvm. Only try to build these on i386 for the time being. Notes: svn path=/head/; revision=36695
* SUBDIR += rtld-aoutPeter Wemm1998-06-011-2/+5
| | | | Notes: svn path=/head/; revision=36572
* Enable rtld-elf when building an ELF system on the i386.John Polstra1998-03-071-1/+5
| | | | Notes: svn path=/head/; revision=34195
* Disable lfs_cleanerdPoul-Henning Kamp1998-01-301-2/+2
| | | | Notes: svn path=/head/; revision=32891
* Changes for KTH KerberosIV.Mark Murray1997-09-281-7/+2
| | | | Notes: svn path=/head/; revision=29924