1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/graphics/Mesa3/files/patch-aa
Steve Price b1043b0106 Add a 'freebsd-386-elf' target so ELF'ers can build with 386 asm
optimizations too.  Note I didn't turn this on by default to be fair
to those in the our upcoming Alpha world.  However all you have to
do to build with it is set ALL_TARGET to freebsd-386-elf at the
bottom of the Makefile.

Submitted by:	Doug Rabson <dfr@nlsystems.com>
1998-09-28 02:56:44 +00:00

52 lines
1.4 KiB
Plaintext

--- Make-config.orig Wed Jul 1 13:17:10 1998
+++ Make-config Sun Sep 27 11:46:02 1998
@@ -1,8 +1,12 @@
# Make-config
-MAJOR=3
+MAJOR=14
MINOR=0
+.if ${PORTOBJFORMAT} == "elf"
+VERSION=$(MAJOR)
+.else
VERSION=$(MAJOR).$(MINOR)
+.endif
# Mesa 3-D graphics library
# Copyright (C) 1995-1998 Brian Paul
@@ -238,6 +242,16 @@
"MAKELIB = ../mklib.freebsd" \
"XLIBS = -L/usr/X11R6/lib -lXext -lXmu -lXi -lX11"
+freebsd-elf:
+ $(MAKE) $(MFLAGS) targets \
+ "GL_LIB = libMesaGL.a" \
+ "GLU_LIB = libMesaGLU.a" \
+ "GLUT_LIB = libglut.a" \
+ "CC = gcc" \
+ "CFLAGS = -O2 -fPIC -pedantic -I/usr/X11R6/include -DSHM -DHZ=100" \
+ "MAKELIB = ../mklib.freebsd" \
+ "XLIBS = -Wl,-rpath,${X11BASE}/lib -L${X11BASE}/lib -lXext -lXmu -lXi -lX11"
+
freebsd-386:
$(MAKE) $(MFLAGS) targets \
"GL_LIB = libMesaGL.a" \
@@ -247,6 +261,17 @@
"CFLAGS = -O3 -ffast-math -fPIC -pedantic -I/usr/X11R6/include -DSHM -DHZ=100 -DUSE_X86_ASM -DFREEBSD" \
"MAKELIB = ../mklib.freebsd" \
"XLIBS = -L/usr/X11R6/lib -lXext -lXmu -lXi -lX11" \
+ "ASM_SOURCES = asm-386.S"
+
+freebsd-386-elf:
+ $(MAKE) $(MFLAGS) targets \
+ "GL_LIB = libMesaGL.a" \
+ "GLU_LIB = libMesaGLU.a" \
+ "GLUT_LIB = libglut.a" \
+ "CC = gcc" \
+ "CFLAGS = -O3 -ffast-math -fPIC -pedantic -I/usr/X11R6/include -DSHM -DHZ=100 -DUSE_X86_ASM" \
+ "MAKELIB = ../mklib.freebsd" \
+ "XLIBS = -Wl,-rpath,${X11BASE}/lib -L${X11BASE}/lib -lXext -lXmu -lXi -lX11" \
"ASM_SOURCES = asm-386.S"
gcc: