Remove ancient unused inline hack.

This commit is contained in:
Mathieu Bérard 2008-08-18 11:47:19 -04:00 committed by Adam Jackson
parent e1ae8db625
commit 95bb6f5362
2 changed files with 1 additions and 20 deletions

View File

@ -7,9 +7,6 @@ ARCH_SRCS = $(OTHER_SRCS)
# FIXME: Add to the build (NeedPortIO)
PORTIO_SRCS = PortIO.S
# FIXME: Add to the build (if HasGcc || HasGcc2)
ILHACK_SRCS = xf86_IlHack.c
noinst_LTLIBRARIES = libmisc.la
libmisc_la_SOURCES = Delay.c $(ARCH_SRCS)
@ -20,4 +17,4 @@ INCLUDES = $(XORG_INCS)
AM_CFLAGS = $(XORG_CFLAGS) $(DIX_CFLAGS)
EXTRA_DIST = $(I386_SRCS) $(PORTIO_SRCS) $(ILHACK_SRCS)
EXTRA_DIST = $(I386_SRCS) $(PORTIO_SRCS)

View File

@ -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"