diff options
author | Keith Whitwell <[email protected]> | 2004-04-30 09:15:58 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2004-04-30 09:15:58 +0000 |
commit | 739f50f542392b06fcec1a2dcafcb4a8ef85441d (patch) | |
tree | 851eeb7e9ebf43cad2e386e8e28fb1f6e2279eb6 | |
parent | 69ab4fec1220d831afbabc3f578634094bc63b2b (diff) |
Define GLX_DIRECT_RENDERING in Makefile.template
-rw-r--r-- | configs/linux-dri | 2 | ||||
-rw-r--r-- | configs/linux-dri-x86-64 | 2 | ||||
-rw-r--r-- | src/mesa/drivers/dri/Makefile.template | 4 |
3 files changed, 6 insertions, 2 deletions
diff --git a/configs/linux-dri b/configs/linux-dri index 70c71e58126..2553961e04e 100644 --- a/configs/linux-dri +++ b/configs/linux-dri @@ -9,7 +9,7 @@ CONFIG_NAME = linux-dri CC = gcc CXX = g++ -CFLAGS = -Wmissing-prototypes -g -std=c99 -Wundef -fPIC -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DPTHREADS -D_GNU_SOURCE -DGLX_DIRECT_RENDERING -I/usr/X11R6/include -I/usr/X11R6/include/X11/extensions +CFLAGS = -Wmissing-prototypes -g -std=c99 -Wundef -fPIC -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DPTHREADS -D_GNU_SOURCE -I/usr/X11R6/include -I/usr/X11R6/include/X11/extensions CXXFLAGS = -Wall -g -ansi -pedantic -fPIC -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE diff --git a/configs/linux-dri-x86-64 b/configs/linux-dri-x86-64 index a829a14be72..2155712a978 100644 --- a/configs/linux-dri-x86-64 +++ b/configs/linux-dri-x86-64 @@ -9,7 +9,7 @@ CONFIG_NAME = linux-dri-x86-64 CC = gcc CXX = g++ -CFLAGS = -m64 -Wmissing-prototypes -g -std=c99 -Wundef -fPIC -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DPTHREADS -D_GNU_SOURCE -DGLX_DIRECT_RENDERING -D__AMD64__ -I/usr/X11R6/include -I/usr/X11R6/include/X11/extensions +CFLAGS = -m64 -Wmissing-prototypes -g -std=c99 -Wundef -fPIC -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DPTHREADS -D_GNU_SOURCE -D__AMD64__ -I/usr/X11R6/include -I/usr/X11R6/include/X11/extensions CXXFLAGS = -m64 -Wall -g -ansi -pedantic -fPIC -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -D__AMD64__ diff --git a/src/mesa/drivers/dri/Makefile.template b/src/mesa/drivers/dri/Makefile.template index 250259785b3..f39cbbed0a2 100644 --- a/src/mesa/drivers/dri/Makefile.template +++ b/src/mesa/drivers/dri/Makefile.template @@ -51,6 +51,10 @@ SHARED_INCLUDES = \ -I$(TOP)/src/mesa/swrast \ -I$(TOP)/src/mesa/swrast_setup +# Of course we're direct rendering. Redundant #ifdefs in the code +# from prehistory require this: +# +DEFINES += -DGLX_DIRECT_RENDERING ##### RULES ##### |