From owner-freebsd-current Wed Oct 30 23:47:03 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA06829 for current-outgoing; Wed, 30 Oct 1996 23:47:03 -0800 (PST) Received: from dfw-ix2.ix.netcom.com (dfw-ix2.ix.netcom.com [206.214.98.2]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id XAA06824 for ; Wed, 30 Oct 1996 23:47:01 -0800 (PST) Received: from silvia.HIP.Berkeley.EDU (ala-ca13-08.ix.netcom.com [204.32.168.40]) by dfw-ix2.ix.netcom.com (8.6.13/8.6.12) with ESMTP id XAA26697 for ; Wed, 30 Oct 1996 23:46:23 -0800 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) id XAA02701; Wed, 30 Oct 1996 23:45:12 -0800 (PST) Date: Wed, 30 Oct 1996 23:45:12 -0800 (PST) Message-Id: <199610310745.XAA02701@silvia.HIP.Berkeley.EDU> To: current@freebsd.org Subject: ports compilation with XFree86-3.2 From: asami@freebsd.org (Satoshi Asami) Sender: owner-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk This is what I've applied to the XFree86-3.2 imake config files to make it happy with our retirement of libgnumalloc into /usr/lib/compat: ======= --- ./FreeBSD.cf.org Thu Oct 24 07:23:36 1996 +++ ./FreeBSD.cf Wed Oct 30 23:37:38 1996 @@ -2,7 +2,7 @@ XCOMM platform: $XFree86: xc/config/cf/FreeBSD.cf,v 3.54 1996/10/16 14:28:22 dawes Exp $ #ifndef OSName -#define OSName FreeBSD 2.1.5 +#define OSName FreeBSD 2.2 #endif #ifndef OSVendor #define OSVendor /**/ @@ -12,10 +12,10 @@ #define OSMajorVersion 2 #endif #ifndef OSMinorVersion -#define OSMinorVersion 1 +#define OSMinorVersion 2 #endif #ifndef OSTeenyVersion -#define OSTeenyVersion 5 +#define OSTeenyVersion 0 #endif #define HasGcc YES @@ -121,7 +121,7 @@ #endif #ifdef i386Architecture -# define OptimizedCDebugFlags -m486 DefaultGcc2i386Opt +# define OptimizedCDebugFlags DefaultGcc2i386Opt -pipe #else # define OptimizedCDebugFlags -O2 #endif ======= The second chunk is just FYI. I don't have a 486 anyway. The -pipe helps if you have enough memory. By the way, this is also how the binaries in packages-current are compiled. Satoshi