summaryrefslogtreecommitdiffstats
path: root/usr.sbin/amd
Commit message (Collapse)AuthorAgeFilesLines
* META MODE: Remove bin/cat.host dependency.bdrewery2015-11-251-1/+0
| | | | | | | This likely slipped in during early testing; local.dirdeps.mk always excludes bin/cat.host now. Sponsored by: EMC / Isilon Storage Division
* Add more SUBDIR_PARALLEL.bdrewery2015-09-261-1/+3
| | | | | MFC after: 3 weeks Sponsored by: EMC / Isilon Storage Division
* Add META_MODE support.sjg2015-06-1311-0/+256
|\ | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp
| * dirdeps.mk now sets DEP_RELDIRsjg2015-06-0811-22/+1
| |
| * Merge sync of headsjg2015-05-2715-43/+12
| |\ | |/ |/|
| * Merge from head@274682sjg2014-11-198-16/+0
| |\
| * \ Merge head from 7/28sjg2014-08-199-0/+17
| |\ \
| * | | Updated dependenciessjg2014-05-168-8/+0
| | | |
| * | | Updated dependenciessjg2014-05-108-0/+16
| | | |
| * | | Merge from headsjg2014-05-083-3/+3
| |\ \ \
| * \ \ \ Merge headsjg2014-04-281-9/+0
| |\ \ \ \
| * | | | | Updated dependenciessjg2013-03-118-0/+8
| | | | | |
| * | | | | Updated dependenciessjg2013-02-1611-22/+0
| | | | | |
| * | | | | Sync FreeBSD's bmake branch with Juniper's internal bmake branch.marcel2012-08-2211-0/+270
| | | | | | | | | | | | | | | | | | | | | | | | Requested by: Simon Gerraty <sjg@juniper.net>
* | | | | | Stop including if_var.h from userland.glebius2015-04-061-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | Sponsored by: Nginx, Inc.
* | | | | | Remove GNU texinfo from base along with all info pages.bapt2015-01-022-15/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To be able to info pages consider installing texinfo from ports print/texinfo or via pkg: pkg install texinfo Differential Revision: https://reviews.freebsd.org/D1409 Reviewed by: emaste, imp (previous version) Relnotes: yes
* | | | | | Convert usr.sbin to LIBADDbapt2014-11-259-24/+9
| |_|_|_|/ |/| | | | | | | | | | | | | | Reduce overlinking
* | | | | Revert r267233 for now. PIE support needs to be reworked.bdrewery2014-08-198-16/+0
| |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. 50+% of NO_PIE use is fixed by adding -fPIC to INTERNALLIB and other build-only utility libraries. 2. Another 40% is fixed by generating _pic.a variants of various libraries. 3. Some of the NO_PIE use is a bit absurd as it is disabling PIE (and ASLR) where it never would work anyhow, such as csu or loader. This suggests there may be better ways of adding support to the tree. Many of these cases can be fixed such that -fPIE will work but there is really no reason to have it in those cases. 4. Some of the uses are working around hacks done to some Makefiles that are really building libraries but have been using bsd.prog.mk because the code is cleaner. Had they been using bsd.lib.mk then NO_PIE would not have been needed. We likely do want to enable PIE by default (opt-out) for non-tree consumers (such as ports). For in-tree though we probably want to only enable PIE (opt-in) for common attack targets such as remote service daemons and setuid utilities. This is also a great performance compromise since ASLR is expected to reduce performance. As such it does not make sense to enable it in all utilities such as ls(1) that have little benefit to having it enabled. Reported by: kib
* | | | In preparation for ASLR [1] support add WITH_PIE to support building with -fPIE.bdrewery2014-06-088-0/+16
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is currently an opt-in build flag. Once ASLR support is ready and stable it should changed to opt-out and be enabled by default along with ASLR. Each application Makefile uses opt-out to ensure that ASLR will be enabled by default in new directories when the system is compiled with PIE/ASLR. [2] Mark known build failures as NO_PIE for now. The only known runtime failure was rtld. [1] http://www.bsdcan.org/2014/schedule/events/452.en.html Submitted by: Shawn Webb <lattera@gmail.com> Discussed between: des@ and Shawn Webb [2]
* | | Use src.opts.mk in preference to bsd.own.mk except where we need stuffimp2014-05-063-3/+3
| |/ |/| | | | | from the latter.
* | Remove the names of the build host and user and the build date. Thisdes2014-04-121-9/+0
|/ | | | | | still leaves the host OS and version, but these are harder to remove. MFC after: 3 weeks
* Consistently set RPCGEN_CPP when running rpcgen, so the C preprocessordim2012-02-071-1/+1
| | | | | | set via ${CPP} is used, instead of always using hardcoded /usr/bin/cpp. MFC after: 1 week
* MFtbemd:imp2010-08-231-1/+1
| | | | | Prefer MACHNE_CPUARCH to MACHINE_ARCH in most contexts where you want to test of all the CPUs of a given family conform.
* The last big commit: let usr.sbin/ use WARNS=6 by default.ed2010-01-021-0/+2
|
* Don't use sys/nfs/rpcv2.h - it is part of the old kernel RPC implementationdfr2009-06-241-1/+1
| | | | and will be removed.
* Don't always link statically with libwrap. By the time amd(8)ru2008-03-291-1/+1
| | | | | | runs, /usr/lib should have already been mounted. Found by: make checkdpadd
* Teach Amd how to unmount.obrien2007-12-051-0/+3
|
* Accidently created the file with the wrong name.obrien2007-12-051-8/+0
|
* 'amu_autofs_prot.h'obrien2007-12-051-0/+8
|
* Adjust for new files added to 6.1.5, and files retired from 6.0.10p1.obrien2007-12-051-9/+10
| | | | | Also TCP Wrappers is now supported. Also tweak the MK_HESIOD.
* Update for version 6.1.5.obrien2007-12-051-117/+253
|
* We now have to use part of the vendor supplied xdr_func.c.obrien2007-12-051-3/+8
| | | | util renamed to strutil to be more clear of its purpose.
* These now need to link with libamu.obrien2007-12-052-0/+6
|
* Add new BUILD_* knobs, and switch our definition & setting of BUILD_*obrien2007-12-052-6/+8
| | | | and configured settings.
* Autoconf would have created a symlink from conf/autofs/autofs_default.hobrien2007-12-051-0/+8
| | | | | | | to autoamu_autofs_prot.h. It is easier to just create shell header within the Bmake framework. For now it's a stub - fill out when we know our Autofs direction.
* Folded WITH_HESIOD_SUPPORT into WITH_HESIOD.ru2006-03-212-2/+2
|
* Reimplementation of world/kernel build options. For details, see:ru2006-03-173-6/+12
| | | | | | | | http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
* Respect the YES_HESIOD build variablephk2005-08-063-1/+32
|
* Generate locale-agnostic configuration date.ru2005-02-161-1/+1
|
* Add knob NO_NIS (fka NO_YP_LIBC) and make world compileable when set.bz2004-11-133-1/+16
| | | | | | | | | | | 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
* For variables that are only checked with defined(), don't provideru2004-10-241-1/+1
| | | | any fake value.
* Reenable nullfs for local links. The change from 'struct vfsconf'mbr2004-07-151-3/+3
| | | | | to 'struct xvfsconf' broke auto configuration. Patches have been submitted to the vendor.
* Generate fresh aux_conf.h.mbr2004-07-061-18/+6
|
* Check if `dirmask' is a member of `pcfs_args_t'.mbr2004-07-061-0/+3
| | | | | | | | A diff to the autoconf aux-files has been submitted to the amd people. PR: 57401 Submitted by: Andre Albsmeier <andre.albsmeier@siemens.com>
* Unbreak pcfs supportmbr2004-07-061-5/+8
| | | | PR: 68679
* Update OS-dependent variables.mbr2004-07-061-12/+15
|
* Removed unnecessary dependencies on librpcsvc.ru2004-02-042-4/+4
| | | | Prodded by: des
* Sync with fresh generated file, keep our changed settings. This seemsmbr2003-09-021-1386/+1338
| | | | to be a lot cleaner.
* Remove redundant PACKAGE and VERSION defines.mbr2003-09-021-6/+1
|
* Update version string.mbr2003-09-021-1/+1
|
OpenPOWER on IntegriCloud