summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2009-04-29autoconf: Add switch for optional EGLDan Nicholson
EGL doesn't build on all platforms, so allow people to opt out.
2009-04-29autoconf: Clean up some m4 usageDan Nicholson
m4_fatal is equivalent to m4_errprint + m4_exit.
2009-04-24GNU/Hurd fixesSamuel Thibault
Here is a couple of fixes for GNU/Hurd: - dri_interface.h: no libdrm support either. - configure.ac: - GNU/Hurd is a GNU OS with _GNU_SOURCE and PTHREADS. - GNU needs a couple of flags like other OSes Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
2009-04-21Update GALLIUM_AUXILIARY_DIRS in configure.ac to match configs/default.Michel Dänzer
2009-04-19autoconf: Build gallium softpipe when driver=xlibJakob Bornecrantz
2009-04-10Build dri drivers for powerpc and sparc on FreeBSD.Robert Noland
2009-03-25mklib improvements for SolarisAlan Coopersmith
Move flags for linking standard C/C++ libraries from configure.ac to mklib Use -norunpath flag when linking with Sun C++ compiler Convert mklib -exports list into a linker mapfile Set FINAL_LIBS correctly when -noprefix is used Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-03-06st/xorg: Install to XORG_DRIVER_INSTALL_DIRJoel Bosveld
2009-03-04autoconf: Restore _GNU_SOURCE for all Linux systemsDan Nicholson
This catches the linux-uclibc case and any others that were being set prior to 98fcdf3f. Fixes bug 20345. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
2009-02-26mesa: Resurrect SPARC asm code.David S. Miller
This rewrites the sparc GLAPI code so that it's PIC friendly and works with all of the TLS/PTHREADS/64-bit/32-bit combinations properly. As a result we can turn SPARC asm back on. Currently it's only enabled on Linux, as that's the only place where I can test this stuff out. For the moment the cliptest SPARC asm routines are disabled as they are non-working. The problem is that they use register %g7 as a temporary which is where the threading libraries store the thread pointer on SPARC. I will fix that code up in a future change as it's a pretty important routine to optimize. Like x86 we do the runtime patch as a pthread once-invoked initializer in init_glapi_relocs(). Unlike x86, however, our GLAPI stubs on SPARC are just two instruction sequences that branch to a trampoline and put the GLAPI offset into a register. The trampoline is what we run-time patch. The stubs thus all look like: glFoo: ba __glapi_sparc_foo_stub sethi GLAPI_OFFSET(glFOO) * PTR_SIZE, %g3 This actually makes generate_entrypoint() a lot simpler on SPARC. For this case in generate_entrypoint() we generate stubs using a 'call' instead of the 'ba' above to make sure it can reach. In order to get a proper tail call going here, in the unpatched case, we do several tricks. To get the current PC, for example, we save the return address register into a temporary, do a call, save the return address register written by the call to another temporary, then restore the original return address register value. This is to avoid having to allocate a stack frame. This is necessary for PIC address formation. This new GLAPI scheme lets us get rid of the ugly SPARC GLAPI hacks in __glXInitialize() and one_time_init(). Signed-off-by: David S. Miller <davem@davemloft.net>
2009-02-25autoconf: Fixup EGL buildDan Nicholson
This gets the needed libraries pulled in for libEGL for autoconf.
2009-02-24mesa: Build DRI by default on Linux/sparcDavid S. Miller
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-02-20gallium: s/GALLIUM_DRIVER_DIRS/GALLIUM_DRIVERS_DIRS/Jakob Bornecrantz
2009-02-18gallium: Disable i965simple pipe driver after it was brokenJakob Bornecrantz
It is only the i965simple pipe driver that was broken in the gallium-texture-transfere merge that is being disabled, mothing more nothing less. FYI, there never where working i965 hardware support in gallium anyways.
2009-02-16autoconf: Always enable glewDan Nicholson
Maybe this should turn into an option (--disable-glew), but for now just enable glew all the time.
2009-02-13autoconf: Add GLEW needed by progs when building GLUTDan Nicholson
Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
2009-02-13gallium: Add a bunch of autoconf optionsJakob Bornecrantz
./configure --help for more info
2009-02-11autoconf: Fix lib globbing for static buildsDan Nicholson
Reported-by: Siddhartha Chaudhuri <expiring_frog@yahoo.co.uk> Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
2009-02-11autoconf: Adjust to new asm SOURCES variablesDan Nicholson
Commit 90b2beb661f630966788a6e909dc759c99e38973 changed the assembly variables. Without this change, the glapi assembly wasn't being built when it was supposed to, resulting in missing symbols in libGL. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
2009-02-11autoconf: Restore commented ASM_FLAGSDan Nicholson
This is not the proper approach to disabling assembly. If there are bugs, they should be fixed or the assembly can default to off. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
2009-02-11gallium: Update autoconf to latest gallium buildJakob Bornecrantz
2009-02-11gallium: Disable nouveau by defaultJakob Bornecrantz
Most piep drivers should be able to build by default, but since the nouveau ones depend drm they can't be enabled by default.
2009-02-09mesa: merge gallium-0.2 into gallium-master-mergeBrian Paul
Merge commit 'origin/gallium-0.2' into gallium-master-merge Conflicts: Makefile docs/relnotes-7.4.html docs/relnotes.html src/mesa/drivers/dri/i965/brw_wm.h src/mesa/main/imports.c src/mesa/main/mtypes.h src/mesa/main/texcompress.c src/mesa/main/texenvprogram.c src/mesa/main/version.h src/mesa/vbo/vbo_exec_api.c src/mesa/vbo/vbo_save_draw.c
2009-02-09mesa: autoconf fixes for OS XSiddhartha Chaudhuri
See bug report 17566.
2009-02-01gallium autoconf/automakeJerome Glisse
2009-01-30autoconf: Use include-fixed directory with makedepend on newer GCCDan Nicholson
On newer GCC releases, the compiler's headers have been split between the include and include-fixed directories. Add both if the directories exist. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> Signed-off-by: Julien Cristau <jcristau@debian.org>
2009-01-12autoconf: Only _GNU_SOURCE feature test macro needed on gnu systemsDan Nicholson
According to feature_test_macros(7), _GNU_SOURCE encompasses all the other feature macros we were setting, so we can just dispose of them.
2009-01-12mesa: match against *-gnu* instead of *-gnu in configure.acJulien Cristau
Fixes build on arm-linux-gnueabi
2009-01-10mesa: require libdrm 2.4.3 in configure.acBrian
2008-12-14Add OSMesa pkg-config fileDan Nicholson
This makes the GLU .pc file a little simpler, too.
2008-12-14Add more package metadata to the pkg-config filesDan Nicholson
The pkg-config files have been filled in more thoroughly to allow users to use mesa more effectively. By adding metadata to Requires.private, Libs.private and Cflags, we can ensure that all the libraries and headers will be found in all situations. However, the full substitutions are only done when using the configure script. This also fixes the glu pkg-config file to account for using GL or OSMesa. Fixes bug 18161.
2008-12-01Bump dri2proto requirement to 1.99.3, drop CopyRegion bitmask from protocol.Kristian Høgsberg
2008-11-26configure.ac: advertise XCBRALOVICH, Kristóf
2008-10-28configure.ac: Add support for gnu/kfreebsdJulien Cristau
Check for *-gnu instead of linux* to set DEFINES. Change some freebsd* checks to *freebsd*.
2008-09-04configure.ac: bump dri2proto requirement, drop TTM_API define.Kristian Høgsberg
2008-07-28autoconf: disable dri drivers build if being askedFlorent Thoumie
Allow --with-dri-drivers={,no} to disable DRI drivers build. Signed-off-by: Florent Thoumie <flz@FreeBSD.org> Signed-off-by: Robert Noland <rnoland@2hip.net>
2008-07-18autoconf: Support Motif widgets in GLw with --enable-motifDan Nicholson
Add an --enable-motif option, which will enable the Motif widgets in libGLw and link it with libXm. The Motif installation information will be gathered from the motif-config script (this comes with LessTif) or fallback to the standard autoconf checks. To allow the location of the Motif headers to be set from configure, the default setting of -I/usr/include/Motif1.2 has been moved into configs/default and then passed to the Makefile through the MOTIF_CFLAGS variable.
2008-07-12autoconf: Subsitute SHELL for all platformsDan Nicholson
Establish the shell that make will use from configure. This is exactly how autoconf/automake operate, with the environment variable CONFIG_SHELL respected to override the autoconf checks. In the usual case where the user just executes `./configure', autoconf will pick a shell from the current shell, sh, bash, ksh or sh5 that meets its base criteria. The special Solaris case of looking for a POSIX shell has been changed to just set the SHELL variable since autoconf substitutes this already. The EXTRA_CONFIG_LINES substitution is dropped as it should no longer be needed.
2008-07-11autoconf: Add information about the --x-* options to --help outputDan Nicholson
Try to tell the user that the --x-* options are only used when the X libraries can't be found by pkg-config.
2008-07-11autoconf: Tell the user about docs/autoconf.html in --help outputDan Nicholson
The documentation in autoconf.html is much more explicit about how the different configure options control the build. This adds a notice at the end of the `./configure --help' output to tell the user about it.
2008-07-06autoconf: Allow commas or spaces to separate DRI driversDan Nicholson
Explicitly allow the argument to --with-dri-drivers to contain comma-separated or space-separated drivers. A space-separated driver list worked by chance before.
2008-07-06Set library and header installation directories from configurationDan Nicholson
Currently the installation directories for libraries and headers are resolved within the install commands. For instance, the libraries will be installed to $(INSTALL_DIR)/$(LIB_DIR). This limits the flexibility of the installation, such as when the libraries should be installed to a subdirectory like /usr/lib/tls. This adds the make variables $(INSTALL_LIB_DIR) and $(INSTALL_INC_DIR) to define the locations that the libraries and headers are installed. For the static configs, this resolves exactly as before to $(INSTALL_DIR)/include and $(INSTALL_DIR)/$(LIB_DIR). For autoconf, they are derived directly from the --libdir and --includedir settings.
2008-06-30autoconf: Improve the visibility of the swrast DRI driverDan Nicholson
Improve the --with-dri-drivers help text so that users are aware that they should install the swrast DRI driver.
2008-06-27autoconf: Check for posix_memalignDan Nicholson
Rather than just defining HAVE_POSIX_MEMALIGN on Linux, check whether the function exists on all platforms and define the macro if it is.
2008-06-21Solaris port of Mesa 7.1 with autoconf supportAlan Coopersmith
Signed-off-by: Brian Paul <brian.paul@tungstengraphics.com>
2008-06-12sparc: add swrast to dri driversDave Airlie
2008-06-12sparc: add DRI drivers for sparc patch from FedoraDave Airlie
2008-06-04autoconf: Collect arch/platform settings in one locationDan Nicholson
The architecture- and platorm-specific settings were scattered throughout the configure script. This moves them near the beginning before any of the driver-specific settings.
2008-06-04mesa/drm/ttm: allow build against non-TTM aware libdrmDave Airlie
I'll release a libdrm 2.3.1 without TTM apis included from a special drm branch that should allow mesa 7.1 to build against it. I've had to turn off DRI2 stuff.
2008-05-23drop GLcoreGeorge Sapountzis