diff options
author | Jon Smirl <jonsmirl@gmail.com> | 2004-06-26 17:16:42 +0000 |
---|---|---|
committer | Jon Smirl <jonsmirl@gmail.com> | 2004-06-26 17:16:42 +0000 |
commit | c2bffec91a5b6ba72514c875b70dbc96ac97431d (patch) | |
tree | 3c5f963b8cec93217b18cdec35c50f0c45b3339e /configs | |
parent | e16f6e3f234391027b300ec2ca8b56fc13aac825 (diff) |
Mesa-solo builds with these changes. There are still more fixups needed to
get individual drivers working again. This converts miniglx to the new
dri interface. Thanks to Erdi Chen for the new interface code.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/linux-solo | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/configs/linux-solo b/configs/linux-solo index e6d4fdf9fd..3b125d9e2a 100644 --- a/configs/linux-solo +++ b/configs/linux-solo @@ -8,9 +8,11 @@ CONFIG_NAME = linux-solo CC = gcc CXX = g++ -CFLAGS = -Wmissing-prototypes -g -std=c99 -pedantic -Wundef -fPIC -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE +CCOMMON = -D_SOLO -DDRI_NEW_INTERFACE_ONLY -D_POSIX_SOURCE -D_SVID_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=199309L -CXXFLAGS = -Wall -O3 -ansi -pedantic -fPIC -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE +CFLAGS = $(CCOMMON) -Wmissing-prototypes -g -std=c99 -Wundef -fPIC -ffast-math + +CXXFLAGS = $(CCOMMON) -Wall -O3 -ansi -pedantic -fPIC ASM_SOURCES = $(X86_SOURCES) @@ -26,4 +28,5 @@ SRC_DIRS = mesa glx glu glut/mini DRIVER_DIRS = dri PROGRAM_DIRS = miniglx -DRI_DIRS = fb gamma i810 i830 mach64 mga r128 r200 radeon sis tdfx +#DRI_DIRS = fb ffb gamma i810 i830 mach64 mga r128 r200 radeon sis savage tdfx unichrome +DRI_DIRS = i810 i830 mach64 mga r128 r200 radeon tdfx unichrome |