24ae3154c4
tested by ajacoutot@, steven@ ok maintainer ajacoutot@
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
$OpenBSD: patch-src_config_Linux_All_mk,v 1.2 2007/04/10 13:03:09 martynas Exp $
|
|
--- src/config/Linux_All.mk.orig Tue May 10 22:53:44 2005
|
|
+++ src/config/Linux_All.mk Mon Apr 9 21:54:28 2007
|
|
@@ -47,7 +47,7 @@ CFLAGS += -Wall -Wno-format
|
|
OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -D_BSD_SOURCE -DPOSIX_SOURCE -DHAVE_LOCALTIME_R
|
|
|
|
RANLIB = echo
|
|
-MKSHLIB = $(LD) -shared $(XMKSHLIBOPTS)
|
|
+MKSHLIB = $(CC) -shared $(XMKSHLIBOPTS)
|
|
|
|
#.c.o:
|
|
# $(CC) -c -MD $*.d $(CFLAGS) $<
|
|
@@ -74,7 +74,7 @@ endif
|
|
|
|
GFX_ARCH = x
|
|
|
|
-OS_LIBS = -lm -lc
|
|
+OS_LIBS = -lm
|
|
|
|
ASFLAGS += -x assembler-with-cpp
|
|
|
|
@@ -88,16 +88,12 @@ OS_CFLAGS += -mieee
|
|
endif
|
|
|
|
# Use the editline library to provide line-editing support.
|
|
-JS_EDITLINE = 1
|
|
+JS_READLINE = 1
|
|
|
|
-ifeq ($(CPU_ARCH),x86_64)
|
|
-# Use VA_COPY() standard macro on x86-64
|
|
-# FIXME: better use it everywhere
|
|
OS_CFLAGS += -DHAVE_VA_COPY -DVA_COPY=va_copy
|
|
-endif
|
|
|
|
-ifeq ($(CPU_ARCH),x86_64)
|
|
-# We need PIC code for shared libraries
|
|
-# FIXME: better patch rules.mk & fdlibm/Makefile*
|
|
+ifeq ($(CPU_ARCH),sparc64)
|
|
OS_CFLAGS += -DPIC -fPIC
|
|
+else
|
|
+OS_CFLAGS += -DPIC -fpic
|
|
endif
|