diff options
author | Matthew Rezny <rezny@FreeBSD.org> | 2017-08-20 16:31:39 +0000 |
---|---|---|
committer | Matthew Rezny <rezny@FreeBSD.org> | 2017-08-20 16:31:39 +0000 |
commit | d63a8027231d2b6b0b034e54cd59c322844c25a4 (patch) | |
tree | 498881ad972e84c2047f14bcd20c2cc8a3180b50 /x11/libxkbcommon | |
parent | Update to upstream version 12.1 (diff) |
Build with reasonable defaults to avoid passing NULL to unprepared users.
Environment variables still take precedence. Without built-in defaults, NULL
will be returned if the environment is empty. Some consumers fail to check
for this condition and exhibit ill behavior.
While here, remove MAKE_JOBS_UNSAFE as nobody recalls why it was put there
originally and parallel builds work in all my test environments.
Reported by: tcberner
Notes
Notes:
svn path=/head/; revision=448434
Diffstat (limited to 'x11/libxkbcommon')
-rw-r--r-- | x11/libxkbcommon/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/x11/libxkbcommon/Makefile b/x11/libxkbcommon/Makefile index d3aee2ac2e78..8ab6485edbc0 100644 --- a/x11/libxkbcommon/Makefile +++ b/x11/libxkbcommon/Makefile @@ -2,6 +2,7 @@ PORTNAME= libxkbcommon PORTVERSION= 0.7.1 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://xkbcommon.org/download/ @@ -14,15 +15,10 @@ XORG_CAT= lib USES= gmake bison tar:xz USE_XORG= xcb -MAKE_JOBS_UNSAFE= yes INSTALL_TARGET= install-strip -CONFIGURE_ARGS= --without-default-layout \ - --without-default-model \ - --without-default-options \ - --without-default-rules \ - --without-default-variant \ - --without-doxygen \ +CONFIGURE_ARGS= --without-doxygen \ + --with-default-rules="xorg" \ --with-x-locale-root=${PREFIX}/lib/X11/locale .include <bsd.port.mk> |