Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-12-10 | Link fewer common objects into Gallium winsys layers. | Michel Dänzer | |
These are useless or even harmful due to referencing symbols no longer available in the Gallium build. | |||
2007-08-07 | Gutsy oopses on touch of existing file. Workaround. | Keith Whitwell | |
2007-08-01 | Build libsoftpipe.a | Keith Whitwell | |
Each pipe driver will build to a .a library, as these will optionally be included in the various DRI drivers (this will make more sense once there is at least one hardware driver...). Not strictly necessary for softpipe, but want to minimize the differences between it and actual hw implementations. | |||
2007-06-20 | Add state tracker create/destroy calls to i915 driver. | Keith Whitwell | |
2007-05-10 | Replace `pkg-config --cflags libdrm` with LIBDRM_CFLAGS, remove disabled ↵ | Brian | |
lines, remove obsolete comments. | |||
2007-05-04 | Makefile clean-ups for miniglx. | Brian | |
2006-11-01 | Merge texmem-0-3-branch. | Keith Whitwell | |
2006-09-18 | change make depend output redirection to 2>&1 (bug 8344) | Brian Paul | |
2006-07-13 | LIB_DIR is now just 'lib' or 'lib64' | Brian Paul | |
Replaced $(LIB_DIR) with $(TOP)/$(LIB_DIR), use LIB_DIR in install targets. Patch by Hanno Böck. | |||
2006-06-26 | Use $(LIB_DIR) instead of $(TOP)/lib since libraries sometimes go into lib64/. | Brian Paul | |
Probably need to fix the install destinations too... | |||
2006-06-22 | New 'install' targets in makefile. See bug 2372. | Brian Paul | |
2006-05-02 | remove some unneeded includes | Dave Airlie | |
2006-05-02 | move the pkg config flags for libdrm to the bottom | Dave Airlie | |
2006-04-21 | depend is not a .PHONY target | Brian Paul | |
2006-04-07 | replace >&/dev/null with >/dev/null so it works with all shells | Brian Paul | |
2006-04-07 | make miniglx use libdrm properly | Dave Airlie | |
2006-04-06 | Replace DEFINES with DRIVER_DEFINES. If a driver needs to set extra flags, | Brian Paul | |
do so with DRIVER_DEFINES. This eliminates the duplicated flags we were passing to each cc command. | |||
2006-03-26 | merge from texman branch | Brian Paul | |
2005-10-18 | Add _mesa_exec_malloc() and _mesa_exec_free() for allocating | Keith Whitwell | |
executable memory. Based on Thomas Hellstrom's patch. TODO: glapi.c also needs this, but cannot access this code. | |||
2005-09-14 | use mklib script to make drivers instead of gcc -shared | Brian Paul | |
2005-09-06 | Use mklib script instead of ar. Make libmesa.a instead of mesa.a | Brian Paul | |
2005-08-19 | Convert libGL and DRI drivers to require libdrm. | Adam Jackson | |
libdrm can be had from: http://people.freedesktop.org/~ajax/libdrm/ | |||
2005-08-05 | More EGL prep. No impact on anything outside of EGL | Jon Smirl | |
2005-07-28 | Use the routines supplied in the __DRIinterfaceMethods structure to create a | Ian Romanick | |
destroy __GLcontextModes structures. This eliminates the need for DRI drivers to ever link with glcontextmodes.c. | |||
2005-07-15 | replace gcc with $(CC) (Egbert Eich) | Brian Paul | |
2005-05-28 | Add a freebsd-dri-amd64 config, and quiet makedepend slightly by making an | Eric Anholt | |
EXPAT_INCLUDES config variable (set on FreeBSD) which is then used in Makefile.template's INCLUDES. | |||
2005-05-13 | First attempt at getting egl support up on dumb framebuffer. | Jon Smirl | |
Seems to be mostly working. Not all of egl API is implemented. | |||
2005-05-05 | Refactor COMMON_SOURCES up to Makefile.template | Adam Jackson | |
2005-04-06 | Make linux-dri-x86-64 more like linux-dri-x86. Add ARCH_FLAGS. This is | Ian Romanick | |
where things like "-m64" or "-m32" should be specified. Using this, a 32-bit DRI build can be done on an x86-64 system by doing 'ARCH_CFLAGS=-m32 make linux-dri-x86'. Minor tweaks to linux-dri to support these changes. | |||
2005-01-31 | Bug #2428: #ifdef GLX_DIRECT_RENDERING in DRI drivers is pointless. | Adam Jackson | |
2005-01-07 | Remove -C flags for install which aren't universally supported. | Keith Whitwell | |
2005-01-07 | Improve the semantics of the 'install' target to make sure the right | Keith Whitwell | |
file is really being installed. Useful if you have multiple versions of a single driver directory hanging around and want to switch between them for testing. | |||
2005-01-01 | Use DRM headers from $(DRM_SOURCE_PATH)/shared-core instead of .../shared. | Felix Kuehling | |
2004-12-09 | Get linux-solo dependencies building correctly, | Keith Whitwell | |
Make sure symlinks are built in driver directories before running makedepend. | |||
2004-12-08 | Improve the behaviour of the build system wrt depend files. | Keith Whitwell | |
- Remove the -Y option for makedepend, so that the standard directories are searched - No longer pipe the multiple errors that the -Y option caused into /dev/null -- we want to know about these failures. - Fix up a few other misc makedepend failures. | |||
2004-10-25 | Bug #1679: Link DRI drivers against DRI_LIB_DEPS, not GL_LIB_DEPS. | Adam Jackson | |
2004-10-04 | make clean should remove depend.bak too (Sérgio Moneiro Basto) | Brian Paul | |
2004-08-22 | Converted the Savage driver to the new DRI interface and enabled compilation | Felix Kuehling | |
in the Mesa tree. | |||
2004-06-29 | This should make most linux-solo drivers work again. Mainly a fix | Jon Smirl | |
for changing SAREA size form DRM_PAGE_SIZE to SAREA_MAX. fb driver is still broken. | |||
2004-06-26 | Mesa-solo builds with these changes. There are still more fixups needed to | Jon Smirl | |
get individual drivers working again. This converts miniglx to the new dri interface. Thanks to Erdi Chen for the new interface code. | |||
2004-06-09 | remove depend on clean | Dave Airlie | |
2004-06-01 | Missed in last commit: | Eric Anholt | |
Build fixing for FreeBSD. GNU make is installed as gmake, so make a MAKE variable (defaults to "make") and use that. Use the MKDEP and MKDEP_OPTIONS more. Our shell isn't bash, so change the instances of ">& /dev/null" to a more compatible "> /dev/null 2>&1". | |||
2004-05-03 | the config is included by the Makefiles that includes this file... | Dave Airlie | |
2004-04-30 | Define GLX_DIRECT_RENDERING in Makefile.template | Keith Whitwell | |
2004-04-29 | Allow *_dri.so to build in Mesa tree with the 'linux-dri' target. | Keith Whitwell | |
2004-04-15 | add drm source dir for solo includes | Dave Airlie | |
2004-04-14 | Link against GL_LIB_DEPS | Keith Whitwell | |
2004-04-14 | First attempt at building a dri module in this tree | Keith Whitwell | |
-- make target is linux-dri -- will attempt to build i830_dri.so The object builds but hasn't been tested. |