From f8256836b91885b42bfec80676c58ccb67f7bb90 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Sat, 29 Jan 2000 02:01:20 +0000 Subject: [PATCH] INLINE is now "extern inline" on GNU --- configure/CONFIG_COMMON | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure/CONFIG_COMMON b/configure/CONFIG_COMMON index 4936d42dc..1b1552824 100644 --- a/configure/CONFIG_COMMON +++ b/configure/CONFIG_COMMON @@ -78,7 +78,7 @@ GENERIC_SRC_INCLUDES = $(addprefix -I, $(GENERIC_SRC_DIRS)) #-------------------------------------------------- # GNU compiler defaults -GCC = $(GNU_BIN)/cc$(CMPLR_SUFFIX) -D 'INLINE=extern __inline__' +GCC = $(GNU_BIN)/cc$(CMPLR_SUFFIX) -D INLINE='extern __inline__' GCC_AR = $(GNU_BIN)/ar$(CMPLR_SUFFIX) GCC_CPP = $(GNU_BIN)/cc$(CMPLR_SUFFIX) -x c -E GCC_RANLIB = $(GNU_BIN)/ranlib$(CMPLR_SUFFIX)