diff options
author | markm <markm@FreeBSD.org> | 2002-03-16 15:14:41 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2002-03-16 15:14:41 +0000 |
commit | 52bb1e4514f4b458b5926cfe3f8d5495830980be (patch) | |
tree | c20e2c31ccdd0fc70a2918d245ab61d1e0e1adf1 /share | |
parent | a3e7599d8a43caae98e4cb0245619bdff3584748 (diff) | |
download | FreeBSD-src-52bb1e4514f4b458b5926cfe3f8d5495830980be.zip FreeBSD-src-52bb1e4514f4b458b5926cfe3f8d5495830980be.tar.gz |
Document NO_PERL.
Diffstat (limited to 'share')
-rw-r--r-- | share/examples/etc/make.conf | 3 | ||||
-rw-r--r-- | share/man/man5/make.conf.5 | 8 |
2 files changed, 10 insertions, 1 deletions
diff --git a/share/examples/etc/make.conf b/share/examples/etc/make.conf index ef7e913..076cd59 100644 --- a/share/examples/etc/make.conf +++ b/share/examples/etc/make.conf @@ -101,6 +101,7 @@ #NO_OBJC= true # do not build Objective C support #NO_OPENSSH= true # do not build OpenSSH #NO_OPENSSL= true # do not build OpenSSL (implies NO_OPENSSH) +#NO_PERL= true # do not build perl5. Disables OpenSSL optimizations #NO_SENDMAIL= true # do not build sendmail and related programs #NO_SHAREDOCS= true # do not build the 4.4BSD legacy docs #NO_TCSH= true # do not build and install /bin/csh (which is tcsh) @@ -109,7 +110,7 @@ #NOGAMES= true # do not build games (games/ subdir) #NOINFO= true # do not make or install info files #NOLIBC_R= true # do not build libc_r (re-entrant version of libc) -#NOPERL= true # do not build perl. Disables OpenSSL optimizations +#NOPERL= true # Deprecated version of NO_PERL #NOPROFILE= true # Avoid compiling profiled libraries #NOSECURE= true # do not build crypto code in secure/ subdir #NOSHARE= true # do not go into the share subdir diff --git a/share/man/man5/make.conf.5 b/share/man/man5/make.conf.5 index 1710b73..139311e 100644 --- a/share/man/man5/make.conf.5 +++ b/share/man/man5/make.conf.5 @@ -406,6 +406,11 @@ Set to not build OpenSSH. .Pq Vt bool Set to not build OpenSSL (implies .Va NO_OPENSSH ) . +.It Va NO_PERL +.Pq Vt bool +Set to avoid building +.Xr perl 1 . +(Also disables OpenSSL optimizations.) .It Va NO_SENDMAIL .Pq Vt bool Set to not build @@ -461,6 +466,9 @@ Set to install man pages uncompressed. .Pq Vt bool Set to avoid building .Xr perl 1 . +This is deprecated in favour of +.It Va NO_PERL +(above). .It Va NOPROFILE .Pq Vt bool Set to avoid compiling profiled libraries. |