diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-04-22 08:19:05 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-04-22 08:19:05 +0000 |
commit | b8e57311b10587dcd0fa548074d0263eaff83736 (patch) | |
tree | ff8e5b6c41557d48583b79664ad72d8dcac21f40 /devel/sdl12 | |
parent | upgrade to 1.0.51 (diff) |
Explicitly disable USB joystick code because there are too many API
incompatible versions of USB code in different FreeBSD releases (or even in
the same release makeworded on from sources cvsup'ed on different dates), so
that supporting all of them is nightmare.
I wish USB team would care about API compatibility in the future.
Submitted by: many
Diffstat (limited to 'devel/sdl12')
-rw-r--r-- | devel/sdl12/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/sdl12/Makefile b/devel/sdl12/Makefile index 975a93c85c00..a23e0b87cdbb 100644 --- a/devel/sdl12/Makefile +++ b/devel/sdl12/Makefile @@ -26,7 +26,8 @@ CONFIGURE_ENV= NASM="${LOCALBASE}/bin/nasm" \ PTHREAD_LIBS="${PTHREAD_LIBS}" CONFIGURE_ARGS= --enable-video-aalib \ --disable-arts \ - --disable-nas + --disable-nas \ + --disable-joystick CFLAGS+= ${PTHREAD_CFLAGS} |