diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-06-05 11:38:35 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-06-05 11:38:35 +0000 |
commit | 400f4557f621dbddf5da9a9c3f672d54d04cd85a (patch) | |
tree | 62415c090168bbbce63fa6ac99b77ed4776e2edb /devel | |
parent | Fix typo in comment. (diff) |
Standartise the way used to disable X11 support in various ports. From now
on WITHOUT_X11 is the Only True Way[tm].
Notes
Notes:
svn path=/head/; revision=43523
Diffstat (limited to 'devel')
-rw-r--r-- | devel/t1lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/t1lib/Makefile b/devel/t1lib/Makefile index 7955bbfbcbcb..3b73679618d8 100644 --- a/devel/t1lib/Makefile +++ b/devel/t1lib/Makefile @@ -18,7 +18,7 @@ MAINTAINER= ijliao@FreeBSD.org USE_LIBTOOL= yes GNU_CONFIGURE= yes -.if !defined(WITHOUT_X) +.if !defined(WITHOUT_X11) USE_XLIB= yes CONFIGURE_ARGS+= --with-x .else |