Remove ancient unused inline hack.
This commit is contained in:
parent
e1ae8db625
commit
95bb6f5362
|
@ -7,9 +7,6 @@ ARCH_SRCS = $(OTHER_SRCS)
|
||||||
# FIXME: Add to the build (NeedPortIO)
|
# FIXME: Add to the build (NeedPortIO)
|
||||||
PORTIO_SRCS = PortIO.S
|
PORTIO_SRCS = PortIO.S
|
||||||
|
|
||||||
# FIXME: Add to the build (if HasGcc || HasGcc2)
|
|
||||||
ILHACK_SRCS = xf86_IlHack.c
|
|
||||||
|
|
||||||
noinst_LTLIBRARIES = libmisc.la
|
noinst_LTLIBRARIES = libmisc.la
|
||||||
|
|
||||||
libmisc_la_SOURCES = Delay.c $(ARCH_SRCS)
|
libmisc_la_SOURCES = Delay.c $(ARCH_SRCS)
|
||||||
|
@ -20,4 +17,4 @@ INCLUDES = $(XORG_INCS)
|
||||||
|
|
||||||
AM_CFLAGS = $(XORG_CFLAGS) $(DIX_CFLAGS)
|
AM_CFLAGS = $(XORG_CFLAGS) $(DIX_CFLAGS)
|
||||||
|
|
||||||
EXTRA_DIST = $(I386_SRCS) $(PORTIO_SRCS) $(ILHACK_SRCS)
|
EXTRA_DIST = $(I386_SRCS) $(PORTIO_SRCS)
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
/*
|
|
||||||
* This file is an incredible crock to get the normally-inline functions
|
|
||||||
* built into the server so that things can be debugged properly.
|
|
||||||
*
|
|
||||||
* Note: this doesn't work when using a compiler other than GCC.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define static /**/
|
|
||||||
#define __inline__ /**/
|
|
||||||
#undef NO_INLINE
|
|
||||||
#define DO_PROTOTYPES
|
|
||||||
#ifdef HAVE_XORG_CONFIG_H
|
|
||||||
#include <xorg-config.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "compiler.h"
|
|
Loading…
Reference in New Issue