From f4092abdf94af6a99aff944d6264bc1284e8bdd4 Mon Sep 17 00:00:00 2001 From: Reinhard Tartler Date: Mon, 10 Oct 2011 17:43:39 +0200 Subject: Imported nx-X11-3.1.0-1.tar.gz Summary: Imported nx-X11-3.1.0-1.tar.gz Keywords: Imported nx-X11-3.1.0-1.tar.gz into Git repository --- nx-X11/lib/GL/Imakefile | 119 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 nx-X11/lib/GL/Imakefile (limited to 'nx-X11/lib/GL/Imakefile') diff --git a/nx-X11/lib/GL/Imakefile b/nx-X11/lib/GL/Imakefile new file mode 100644 index 000000000..b53a71f4c --- /dev/null +++ b/nx-X11/lib/GL/Imakefile @@ -0,0 +1,119 @@ +XCOMM $XFree86: xc/lib/GL/Imakefile,v 1.43 2003/06/30 01:45:10 torrey Exp $ + +XCOMM +XCOMM Imake tokens which are significant to building libGL: +XCOMM +XCOMM BuildGLXLibrary - if defined, build libs in xc/lib/GL and xc/lib/GLw +XCOMM +XCOMM BuildXF86DRI - if defined, build libGL with DRI capability +XCOMM +XCOMM Only zero or one of the following can be defined at once: +XCOMM GlxBuiltInGamma - if defined, build gamma_dri.so driver into libGL +XCOMM GlxBuiltInTdfx - if defined, build tdfx_dri.so driver into libGL +XCOMM GlxBuiltInMga - if defined, build mga_dri.so driver into libGL +XCOMM GlxBuiltInI810 - if defined, build i810_dri.so driver into libGL +XCOMM GlxBuiltInR128 - if defined, build r128_dri.so driver into libGL +XCOMM GlxBuiltInRadeon - if defined, build radeon_dri.so driver into libGL +XCOMM GlxBuiltInR200 - if defined, build r200_dri.so driver into libGL +XCOMM GlxBuiltInFfb - if defined, build ffb_dri.so driver into libGL +XCOMM GlxBuiltInSIS - if defined, build sis_dri.so driver into libGL +XCOMM +XCOMM GlxUseBuiltInDRIDriver - automatically defined if any of the +XCOMM GlxBuiltIn[Gamma,Tdfx,Mga,I810,R128,Radeon,R200,Ffb,SIS] tokens is +XCOMM defined +XCOMM +XCOMM GlxBuiltInXMesa - if defined, build XMesa (Xlib Mesa driver) into libGL +XCOMM to enable rendering to displays that lack the GLX extension. +XCOMM +XCOMM GlxDriverUsesMesa - will be defined if building a DRI driver into +XCOMM libGL and it uses Mesa. +XCOMM +XCOMM GlxUseSGISI - if defined, use the SGI OpenGL Sample Implementation +XCOMM to build the GLX server extension (not fully implemented yet). +XCOMM +XCOMM NormalLibGlx - if defined, build static libGL.a library +XCOMM +XCOMM SharedLibGlx - if defined, build dynamic libGL.so library +XCOMM +XCOMM DebugLibGlx - if defined, build libGL with debug info +XCOMM +XCOMM ProfileLibGlx - if defined, build libGL with profiling info +XCOMM +XCOMM SharedGlxRev - dynamic library version, currently defined to be "1.2" +XCOMM +XCOMM GlxSoProf - if defined, build dynamic libGL for profiling with soprof +XCOMM +XCOMM GlxStubLib - purpose??? +XCOMM +XCOMM +XCOMM Server-side tokens: +XCOMM BuildGlxExt +XCOMM GlxUseSGISI + + + +#include + +#define IHaveSubdirs + +#define PassCDebugFlags + +LIBGLBUILDDIR = GL + GLXDIRS = glx + +/* + * Need to build the Mesa + XMesa source in the following cases: + * BuildXF86DRI && defined(DriDrivers) + * GlxDriverUsesMesa + * GlxBuiltInXMesa + * BuildOSMesaLib + */ +#if BuildOSMesaLib || \ + (BuildXF86DRI && \ + (defined(DriDrivers) || GlxDriverUsesMesa || GlxBuiltInXMesa)) + MESADIRS = mesa +#endif + +/* + * Only need the OSmesa code in the following case: + * BuildOSMesaLib + */ +#if BuildOSMesaLib + OSMESADIRS = mesa/drivers/osmesa +#endif + +/* + * Need to build the DRI code in the following cases: + * BuildXF86DRI + */ +#if BuildXF86DRI + DRIDIRS = dri/drm +#endif + +/* + * Need to build the DRI drivers in the following cases: + * BuildXF86DRI && defined(DriDrivers) + */ +#if BuildXF86DRI && defined(DriDrivers) + DRIVERDIRS = mesa/drivers/dri +#endif + +#if defined(DarwinArchitecture) && BuildAppleDRI + DRIDIRS = apple +#endif + +/* + * The build order depends on whether the drivers are loaded into libGL or + * built-in to libGL. In the former case, libGL needs to be built before + * the drivers, and in the latter case, it needs to be built after the driver. + */ +#if BuildXF86DRI && GlxUseBuiltInDRIDriver +SUBDIRS = $(MESADIRS) $(DRIDIRS) $(DRIVERDIRS) $(GLXDIRS) $(LIBGLBUILDDIR) $(OSMESADIRS) +#else +SUBDIRS = $(MESADIRS) $(GLXDIRS) $(DRIDIRS) $(LIBGLBUILDDIR) $(OSMESADIRS) $(DRIVERDIRS) +#endif + +MakeSubdirs($(SUBDIRS)) + +DependSubdirs($(SUBDIRS)) + -- cgit v1.2.3