diff options
author | pav <pav@FreeBSD.org> | 2012-03-19 04:13:55 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2012-03-19 04:13:55 +0800 |
commit | 599251b3e8736258e5a4cc70d03bfa643c671d5c (patch) | |
tree | 3214d8675765c0ecfca089ef3c403690e6016ef1 /x11-wm | |
parent | e1804a1c91cceeeeb05a0ec7e332af12f3c9e0af (diff) | |
download | freebsd-ports-gnome-599251b3e8736258e5a4cc70d03bfa643c671d5c.tar.gz freebsd-ports-gnome-599251b3e8736258e5a4cc70d03bfa643c671d5c.tar.zst freebsd-ports-gnome-599251b3e8736258e5a4cc70d03bfa643c671d5c.zip |
- Mark BROKEN on 7.X: does not compile
handlers.c: In function 'W_HandleInputEvents':
handlers.c:471: error: 'fd_set' undeclared (first use in this function)
handlers.c:471: error: (Each undeclared identifier is reported only once
handlers.c:471: error: for each function it appears in.)
handlers.c:471: error: expected ';' before 'rset'
handlers.c:486: warning: implicit declaration of function 'FD_ZERO'
handlers.c:486: error: 'rset' undeclared (first use in this function)
handlers.c:487: error: 'wset' undeclared (first use in this function)
handlers.c:488: error: 'eset' undeclared (first use in this function)
handlers.c:493: warning: implicit declaration of function 'FD_SET'
handlers.c:527: warning: implicit declaration of function 'select'
handlers.c:542: warning: implicit declaration of function 'FD_ISSET'
Reported by: pointyhat
Feature safe: yes
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/windowmaker/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/x11-wm/windowmaker/Makefile b/x11-wm/windowmaker/Makefile index e35c8be4e2e0..80537ade6075 100644 --- a/x11-wm/windowmaker/Makefile +++ b/x11-wm/windowmaker/Makefile @@ -56,6 +56,10 @@ USE_LDCONFIG= yes CONFIGURE_ENV+= ac_cv_c_inline_asm=no .endif +.if ${OSVERSION} < 800000 +BROKEN= does not compile on FreeBSD 7.X +.endif + .if defined(WITH_XRANDR) USE_XORG+= xrandr CONFIGURE_ARGS+= --enable-xrandr |