diff options
author | John Baldwin <jhb@FreeBSD.org> | 2002-12-03 19:42:30 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2002-12-03 19:42:30 +0000 |
commit | 6478fb73c53a885abc5ec33544dda8d2b5702833 (patch) | |
tree | 2330b2e820293e92250cbdf9424205027bcf9bf9 /usr.sbin/sysinstall/dist.h | |
parent | 544cd270718f99cd8ace270283bee201401acc10 (diff) | |
download | src-6478fb73c53a885abc5ec33544dda8d2b5702833.tar.gz src-6478fb73c53a885abc5ec33544dda8d2b5702833.zip |
- Convert the installation of the X package to using installPackage()
rather than installX11package().
- Add a perl psuedo-dist that installs the perl package. The perl
distribution is selected by default when a User distribution set is
selected. It is not selected when a Minimal distribution set is
selected. The perl distribution may be toggled manually in the
custom menu just as other distributions.
Approved by: re
Notes
Notes:
svn path=/head/; revision=107561
Diffstat (limited to 'usr.sbin/sysinstall/dist.h')
-rw-r--r-- | usr.sbin/sysinstall/dist.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/dist.h b/usr.sbin/sysinstall/dist.h index 4847977e1d0c..b63ffa65d163 100644 --- a/usr.sbin/sysinstall/dist.h +++ b/usr.sbin/sysinstall/dist.h @@ -27,7 +27,8 @@ #define DIST_CATPAGES 0x10000 #define DIST_PORTS 0x20000 #define DIST_LOCAL 0x40000 -#define DIST_ALL 0x7FFFF +#define DIST_PERL 0x80000 +#define DIST_ALL 0xFFFFF /* Subtypes for CRYPTO distribution */ #define DIST_CRYPTO_CRYPTO 0x0001 @@ -124,7 +125,7 @@ /* Canned distribution sets */ #define _DIST_USER \ - ( DIST_BASE | DIST_DOC | DIST_MANPAGES | DIST_DICT | DIST_CRYPTO ) + ( DIST_BASE | DIST_DOC | DIST_MANPAGES | DIST_DICT | DIST_CRYPTO | DIST_PERL ) #define _DIST_DEVELOPER \ ( _DIST_USER | DIST_PROFLIBS | DIST_INFO | DIST_SRC ) |