diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2012-12-04 14:06:33 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2012-12-04 14:06:33 +0000 |
commit | d130f6033a546936db655ef93936833bb9f82fdb (patch) | |
tree | 0a7ce502e9dbfe1529dc45cea975f17ca05e076a /lib | |
parent | 9bdb437e0d58f557e340193066bf9d52d8e3e150 (diff) |
Correctly define HAVE_POSIX_MEMALIGN, missed in previous. Breakage reported
by ajacoutot@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libGL/dri/swrastg/Makefile | 3 | ||||
-rw-r--r-- | lib/libGL/mesa/libmesagallium/Makefile | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/libGL/dri/swrastg/Makefile b/lib/libGL/dri/swrastg/Makefile index 5048193e2..3f683a5b1 100644 --- a/lib/libGL/dri/swrastg/Makefile +++ b/lib/libGL/dri/swrastg/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2012/11/28 13:53:16 mpi Exp $ +# $OpenBSD: Makefile,v 1.7 2012/12/04 14:06:32 mpi Exp $ LIB= swrastg_dri.so @@ -8,6 +8,7 @@ CPPFLAGS= \ -I${GALLIUM}/drivers \ -I${GALLIUM}/winsys/sw/dri \ -I${GALLIUM}/state_trackers/dri/common \ + -DHAVE_POSIX_MEMALIGN DRIVER_LIBS= \ ../../gallium/drivers/trace/libtrace_pic.a \ diff --git a/lib/libGL/mesa/libmesagallium/Makefile b/lib/libGL/mesa/libmesagallium/Makefile index 045cdb3ee..6d4f72ef8 100644 --- a/lib/libGL/mesa/libmesagallium/Makefile +++ b/lib/libGL/mesa/libmesagallium/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2012/11/28 13:53:16 mpi Exp $ +# $OpenBSD: Makefile,v 1.3 2012/12/04 14:06:32 mpi Exp $ LIB= mesagallium @@ -6,7 +6,6 @@ CPPFLAGS+= \ -I${MESA}/drivers/dri/common \ -I${GALLIUM}/auxiliary \ -I${GALLIUM}/include \ - -DHAVE_POSIX_MEMALIGN \ -D__NOT_HAVE_DRM_H SRCS= ${MESAGALLIUM_SOURCES} \ |