xserver-multidpi/hw/dmx/glxProxy/Makefile.am
Jurij Smakov 36ff05771b GL: Add GLX compile flags lost in modular X server changes
RISC chips that trap on unaligned loads and stores need to
define __GLX_ALIGN64.  This used to get added to the cflags
in the old *.cf files but it no longer does in the modular
X server.

Also, Alpha needs to pass -mieee to the compiler as well.

This is a simple backport of a patch that debian, and probably other
distributions, have been applying forever.  To the best of my
knowledge the patch was written by Jurij Smakov.  See Debian bug
number #388125.

I just checked and this has been rotting for more than a year in
freedesktop bugzilla as #8392.

Signed-off-by: David S. Miller <davem@davemloft.net>
2007-12-29 00:00:04 +02:00

45 lines
1.5 KiB
Makefile

noinst_LIBRARIES = libglxproxy.a
libglxproxy_a_SOURCES = compsize.c \
g_disptab.c \
g_disptab.h \
global.c \
glxcmds.c \
glxcmdsswap.c \
glxcontext.h \
glxdrawable.h \
glxerror.h \
glxext.c \
glxext.h \
glxfbconfig.c \
glxfbconfig.h \
glxscreens.c \
glxscreens.h \
glxserver.h \
glxsingle.c \
glxsingle.h \
glxswap.c \
glxswap.h \
glxutil.c \
glxutil.h \
glxvendor.c \
glxvendor.h \
glxvisuals.c \
glxvisuals.h \
g_renderswap.c \
render2swap.c \
renderpixswap.c \
unpack.h
AM_CFLAGS = \
@GLX_ARCH_DEFINES@ \
$(DIX_CFLAGS) \
-I$(top_srcdir)/hw/dmx \
-I$(top_srcdir)/include \
-I$(top_srcdir)/GL/include \
-I$(top_builddir)/GL/include \
-I@MESA_SOURCE@/include \
-DHAVE_DMX_CONFIG_H \
@DMXMODULES_CFLAGS@ \
-I$(top_srcdir)/hw/xfree86/os-support