summaryrefslogtreecommitdiffstats
path: root/etc/defaults/make.conf
Commit message (Collapse)AuthorAgeFilesLines
* Typo fix (modifes -> modifies)gshapiro2001-06-271-1/+1
|
* Include a mention of WRKDIRPREFIX, useful when mounting /usr/ports readonlynik2001-06-151-0/+4
| | | | from another host.
* ISO_ -> ISO in DOC_LANGache2001-06-111-1/+1
|
* PERL_THREADED is too experimental at this stage. Remove.markm2001-05-311-5/+0
|
* The PERL_THREADED knob is causing too many people too many problems.sheldonh2001-05-271-1/+3
| | | | Add a dire warning about the experimental nature of threaded Perl.
* Add NO_I4B to avoid building/installing isdn4bsd package.ru2001-05-231-0/+1
| | | | | Prompted by: Alexandr Listopad <laa@laa.zp.ua> MFC after: 3 days
* clarify comment about MAKE_KERBEROS5. noticed by Peter Pentchevassar2001-05-121-1/+1
| | | | <roam@orbitel.bg>
* Removed reference to withdrawn secure-supfile.ru2001-04-271-1/+0
|
* Document XFREE86_VERSION.jim2001-04-251-0/+5
|
* Add missed and update existing MASTER_SITE_*.sobomax2001-04-221-12/+18
|
* Change NO_MAKEDEV to a finer granularity method:asmodai2001-03-291-2/+5
| | | | | | | | NO_MAKEDEV_INSTALL and NO_MAKEDEV_RUN. The former implying the latter. The names imply what they do. The last commit by DES based on a PR defeated the original idea behind NO_MAKEDEV, which was not to run MAKEDEV, but to do the installation of MAKEDEV. This should satisfy both parties on the MAKEDEV challenge.
* Add a commented out entry for compat4xmurray2001-03-141-0/+1
| | | | | PR: 25196 Submitted by: Chris Knight <chris@aims.com.au>
* Use CPUTYPE to add appropriate compiler flags to COPTFLAGS for kernelkris2001-03-121-0/+1
| | | | | | builds. This may be disabled using the NO_CPU_COPTFLAGS variable. Reviewed by: arch
* Use the correct path to the SASL .h files as installed by the SASL port.gshapiro2001-03-101-1/+1
| | | | | | MFC candidate. Submitted by: jeh
* Use a different example to avoid confusiongshapiro2001-03-061-1/+1
|
* remove warning of experimental nature of heimdal. it's now the sameassar2001-03-051-4/+0
| | | | | version as the one in ports (and the latest at that), except that not all programs that are in the port get built
* Correct the comment above MAKE_IDEA to be less confusing now that wekris2001-03-041-9/+9
| | | | only have one patented algorithm in make.conf.
* Add definitions and support for the AMD k6-2, Pentium MMX (i586/MMX),kris2001-02-271-1/+3
| | | | | | | | | and Pentium II, III and IV processors (p2, p3, p4), as well as 'mmx' and '3dnow' MACHINE_CPU tags as appropriate. In the near future this will be used to control various ports which have MMX/3dNow optimizations, instead of the ad-hoc methods currently used. Reviewed by: peter
* Short lived fame for -Wundef.asmodai2001-02-271-1/+1
| | | | Second thoughts by: bde
* Add -Wundef to BDECFLAGS:asmodai2001-02-271-1/+1
| | | | | | Warn if an undefined identifier is evaluated in an `#if' directive. Not objected to by: bde
* Update the list of OpenSSL manpages (now contains many more describingkris2001-02-251-0/+7
| | | | | | | libssl, for example), and hide it behind a make.conf option, WANT_OPENSSL_MANPAGES, instead of having it commented out. We still can't install these by default because of clobbering of a number of system manpages with the same name, but they're there for people who want them.
* I thought it was a new CPU :)tanimura2001-02-241-1/+1
| | | | s/i585/i586/
* Need one additional make.conf knob, SENDMAIL_ADDITIONAL_MC to satisfy buggshapiro2001-02-221-0/+5
| | | | | | report. It allows building multiple .cf files at build time. PR: bin/19897
* Add a note indicating that SENDMAIL_MC should include the path. This isgshapiro2001-02-221-2/+2
| | | | | necessary if you expect to be able to use this setting in both /etc/mail and etc/sendmail.
* Overhaul the MACHINE_CPU behaviour:kris2001-02-221-12/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Rip out MACHINE_CPU stuff from sys.mk and include a new <bsd.cpu.mk> after we pull in /etc/make.conf. We need to do it afterwards so we can react to the user setting of the: * CPUTYPE variable, which contains the CPU type which the user wants to optimize for. For example, if you want your binaries to only run on an i686-class machine (or higher), set this to i686. If you want to support running binaries on a variety of CPU generations, set this to the lowest common denominator. Supported values are listed in make.conf. * bsd.cpu.mk does the expansion of CPUTYPE into MACHINE_CPU using the (hopefully) correct unordered list of CPU types which should be used on that CPU. For example, an AMD k6 CPU wants any of the following: k6 k5 i586 i486 i386 This is still an unordered list so the client makefile logic is simple - client makefiles need to test for the various elements of the set in decreasing order of priority using ${MACHINE_CPU:M<foo>}, as before. The various MACHINE_CPU lists are believed to be correct, but should be checked. * If NO_CPU_CFLAGS is not defined, add relevant gcc compiler optimization settings by default (e.g. -karch=k6 for CPUTYPE=k6, etc). Release builders and developers of third-party software need to make sure not to enable CPU-specific optimization when generating code intended to be portable. We probably need to move to an /etc/world.conf to allow the optimization stuff to be applied separately to world/kernel and external compilations, but it's not any worse a problem than it was before. * Add coverage for the ia64/itanium MACHINE_ARCH/CPUTYPE. * Add CPUTYPE support for all of the CPU types supported by FreeBSD and gcc (only i386, alpha and ia64 first, since those are the minimally-working ports. Other architecture porters, please feel free to add the relevant gunk for your platform). Reviewed by: jhb, obrien
* Add a new make knob, SENDMAIL_MC, which is meant to replace SENDMAIL_CF asgshapiro2001-02-221-0/+8
| | | | | | | | | users should be configuring via m4 now. If set, use m4 to create the .cf file. Also, if either SENDMAIL_MC or SENDMAIL_CF is set, 'make install' or 'make distribution' in src/etc/sendmail/ will install the appropriate .cf as /etc/mail/sendmail.cf. This fixes some mergemaster problems. PR: conf/13016
* Introduce support for using OpenSSL ASM optimizations. This is donekris2001-02-191-1/+14
| | | | | | | | | | | | | | | | | | | | | | | through the use of a new build directive, MACHINE_CPU, which contains a list of the CPU generations/features for which optimizations are desired. This feature will be extended to cover the ports tree in the future. Currently OpenSSL provides optimizations for i386, i586 and i686-class CPUs. Currently it has not been tested on an i386 or i486. Teach make(1) to provide sensible defaults for MACHINE_CPU if it is not defined (namely, the lowest common denominator CPU we support for each architecture). Currently this is i386 for the i386 architecture and ev4 for the alpha. sys.mk also sets the variable as a last resort for consistency with MACHINE_ARCH and bootstrapping from very old versions of make. Benchmarks show a significant speed increase even in the i386 case, with additional improvements for i586 and i686 systems. For maximum performance define MACHINE_CPU=i686 i586 i386 in /etc/make.conf. Based on a patch submitted by: Mike Silbersack <silby@silby.com> Reviewed by: current
* Add a reference to the fetch(3) man page.des2000-12-101-1/+1
|
* Add commentary about shared SASL files versus sendmail compilation.gshapiro2000-11-301-0/+6
| | | | Submitted by: Scot W. Hetzel <hetzels@westbend.net>
* Remove "NODESCRYPTLINKS" it has been superseeded by "passwd_format"obrien2000-11-221-1/+0
| | | | in /etc/login.conf.
* Add a note asking committers to update make.conf.5 when they update this.ben2000-11-221-0/+4
|
* Standardize spelling of "optimization" in commentsdougb2000-11-191-3/+3
| | | | | PR: conf/22622 Submitted by: knu
* Disable /usr/bin/ssh being setuid root by default. Let the variablegreen2000-11-141-0/+3
| | | | | | | | | | ENABLE_SUID_SSH being defined reenable it for those that want it. This follows discussion favoring the change from September. It is not usually necessary to be setuid root, possibly less safe, and less convenient (cannot use $HOSTALIASES, for example). Submitted by: jedgar
* Fixed typo in description of ENABLE_SUIDPERL.ru2000-11-101-1/+1
|
* Add commented-out entries for FTP_PROXY and HTTP_PROXY so those behindjkh2000-11-081-1/+12
| | | | | | firewalls have examples to work from. Requested by: chein
* MF4: Add LOADER_TFTP_SUPPORT make.conf flag.ps2000-11-041-0/+6
|
* State that using optimization level above -O for kernel builds isn't smart.obrien2000-11-021-1/+3
|
* Don't use the old URL to the GNU ftp location any more:rse2000-11-011-1/+1
| | | | ftp://prep.ai.mit.edu/pub/gnu/ -> ftp://ftp.gnu.org/gnu/
* Add MASTER_SITE_MOZILLA and MASTER_SITE_XEMACS.knu2000-10-241-0/+2
|
* It is bsd.sites.mk one should look for a full list of default sites,knu2000-10-221-1/+13
| | | | | | | | | not bsd.port.mk anymore. Add MASTER_SITE_XFREE, MASTER_SITE_RINGSERVER, MASTER_SITE_TCLTK and MASTER_SITE_RUBY. Document and add MASTER_SORT_REGEX.
* Give users a way to alter the sendmail (and related utilities) buildgshapiro2000-09-171-0/+15
| | | | environment so they can enable functionality such as SASL, LDAP, Hesiod.
* Comment out MTREE_FOLLOWS_SYMLINKS by default, since it picked before mtree isache2000-09-161-1/+1
| | | | | | builded (on the clean machine without /etc/make.conf) Submitted by: imp
* Add/use MTREE_FOLLOWS_SYMLINKS make.conf optionache2000-09-151-0/+3
| | | | | | This is part of whole subsystem fixing Reviewed by: imp
* Nuke RSAREF support from orbit.kris2000-09-101-1/+0
| | | | It's the only way to be sure.
* ``Anyone is now free to rub two primes together for their own gratification''kris2000-09-061-5/+1
| | | | | | | | | | -- Unknown Now that the RSA algorithm is released into the public domain, build librsaintl by default unless NO_RSAINTL is set in make.conf. The native OpenSSL implementation of RSA is much faster, doesn't have an artificial keysize limitation, has 30% fewer calories and tastes great!
* Move `NOPROFILE' and `NOPERL' to be with the reset of their "NO" brethren.obrien2000-09-021-6/+2
|
* Move the kernel's "cflags" to be next to the world ones.obrien2000-09-021-5/+5
|
* Add a PPP_NOSUID hookbrian2000-08-181-0/+3
|
* Define SUPHOST. If this is set a '-h ${SUPHOST}' is added to thejoe2000-08-131-0/+1
| | | | | | SUPFLAGS when a 'make update' is run. This means that the supfile doesn't need to be edited because the -h will override the CHANGE_THIS.FreeBSD.org host.
* Change BUILD_SUIDPERL to ENABLE_SUIDPERL, with changed note as to whatimp2000-08-131-2/+2
| | | | it does.
OpenPOWER on IntegriCloud