diff options
author | Eric Anholt <eric@anholt.net> | 2012-05-14 18:26:30 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2012-06-11 09:28:00 -0700 |
commit | 0cc216676c96efacb0e1eb82457e6a83920ae704 (patch) | |
tree | 4df097177b76e78e941a8040cd31c2041eb1858b /configs/linux | |
parent | d5c1801a018efda8ac2bab6e0a21f3c3acc4b334 (diff) |
automake: Remove the old static configs system.
With the incremental automake conversion, we'd broken those that
included glx or egl.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'configs/linux')
-rw-r--r-- | configs/linux | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/configs/linux b/configs/linux deleted file mode 100644 index 2560973fa05..00000000000 --- a/configs/linux +++ /dev/null @@ -1,37 +0,0 @@ -# Configuration for generic Linux - -include $(TOP)/configs/default - -CONFIG_NAME = linux - -# Compiler and flags -CC = gcc -CXX = g++ - -OPT_FLAGS = -O3 -g -PIC_FLAGS = -fPIC - -# Add '-DGLX_USE_TLS' to ARCH_FLAGS to enable TLS support. Add -m32 -# to build properly on 64-bit platforms. - -ARCH_FLAGS ?= - -DEFINES = -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE \ - -D_BSD_SOURCE -D_GNU_SOURCE \ - -DPTHREADS -DUSE_XSHM -DHAVE_POSIX_MEMALIGN - -X11_INCLUDES = -I/usr/X11R6/include - -CFLAGS = -Wall -Wmissing-prototypes -Wdeclaration-after-statement \ - -Wpointer-arith $(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) \ - $(DEFINES) $(ASM_FLAGS) $(X11_INCLUDES) -std=c99 -ffast-math - -CXXFLAGS = -Wall -Wpointer-arith $(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) \ - $(DEFINES) $(X11_INCLUDES) - -# Work around aliasing bugs - developers should comment this out -CFLAGS += -fno-strict-aliasing -CXXFLAGS += -fno-strict-aliasing - - -EXTRA_LIB_PATH = -L/usr/X11R6/lib |