diff options
author | reed <reed> | 2005-11-09 01:08:58 +0000 |
---|---|---|
committer | reed <reed> | 2005-11-09 01:08:58 +0000 |
commit | a45ec8a39334916b0403295ce6e06d79d2d9f510 (patch) | |
tree | 5dd8760d6a65398971ba7674e6076499647ec639 /mk | |
parent | 61e493c98526682d3992a79f44321a4d8055e27a (diff) | |
download | pkgsrc-a45ec8a39334916b0403295ce6e06d79d2d9f510.tar.gz |
DragonFly does not provide an X11, so default to X.org's X11.
This is the X11 tested and used by the pkgsrc developers on
DragonFly. And far as I know, this is the only X11 used on
DragonFly -- not saying that others are not used though.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/platform/DragonFly.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mk/platform/DragonFly.mk b/mk/platform/DragonFly.mk index 0fb52677521..55c2a5fba7b 100644 --- a/mk/platform/DragonFly.mk +++ b/mk/platform/DragonFly.mk @@ -1,4 +1,4 @@ -# $NetBSD: DragonFly.mk,v 1.21 2005/10/28 20:09:38 joerg Exp $ +# $NetBSD: DragonFly.mk,v 1.22 2005/11/09 01:08:58 reed Exp $ # # Variable definitions for the DragonFly operating system. @@ -30,6 +30,9 @@ ULIMIT_CMD_datasize?= ulimit -d `ulimit -H -d` ULIMIT_CMD_stacksize?= ulimit -s `ulimit -H -s` ULIMIT_CMD_memorysize?= ulimit -m `ulimit -H -m` +# DragonFly does not provide an X11, so default to X.org's X11 +X11_TYPE?= xorg + # imake installs manpages in weird places IMAKE_MAN_SOURCE_PATH= man/man IMAKE_MAN_SUFFIX= 1 |