freebsd-ports/graphics/renderpark/files/patch-Config.site
Martin Wilke 3e4ed01146 - Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+

Thanks to all Helpers:
	Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
	ehaupt, nox, itetcu, flz, pav

PR:		116263
Tested on:	pointyhat
Approved by:	portmgr (pav)
2008-04-19 17:56:05 +00:00

37 lines
1.1 KiB
Text

--- Config.site.orig Fri Jan 31 20:31:11 2003
+++ Config.site Fri Jan 31 20:40:09 2003
@@ -2,27 +2,28 @@
# contributed by Bertrand Petit elrond@phoe.frmug.org 23-feb-98
# with GCC:
-CC = gcc
+CC = %%CC%%
+CXX = %%CXX%%
MAKEDEPEND = gcc -M
PROFLAGS = # -pg # for profiling
-DEBUGFLAGS = -g # for debugging
-OPTFLAGS = -O3 -Wall -pedantic -ansi
+DEBUGFLAGS = # -g # for debugging
+OPTFLAGS = %%CFLAGS%% #-O3 -Wall -pedantic -ansi -Wno-long-long
################################################################
# OpenGL/Mesa
DRIVER = opengl
# Mesa (free OpenGL-like library)
-MESAHOME = /usr/local
+MESAHOME = ${LOCALBASE}
DRIVERFLAGS = -I$(MESAHOME)/include
DRIVERLIBS = -L$(MESAHOME)/lib -lGLU -lGL
################################################################
-X11HOME = /usr/X11R6
+X11HOME = ${LOCALBASE}
XINCLUDES = -I$(X11HOME)/include
XLIBS = -L$(X11HOME)/lib -lXt -lXmu -lXext -lX11
-MOTIFHOME = /usr/local
+MOTIFHOME = ${LOCALBASE}
MOTIFINCLUDES = -I$(MOTIFHOME)/include
# -lXpm library necessary for Motif >=2.0, not for Motif <2.0
MOTIFLIBS = -L$(MOTIFHOME)/lib -lXm -lXpm