diff options
author | dirk <dirk@FreeBSD.org> | 1998-12-30 11:48:35 +0000 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 1998-12-30 11:48:35 +0000 |
commit | 7c8686b523274922c073d3a443b79781ee7d31c0 (patch) | |
tree | de07a565c6a894fc208328f15685e2e5b144e258 /graphics/povray/files | |
parent | 207dbe7c59c9be7fabbe0992a9560398568ffdfb (diff) | |
download | FreeBSD-ports-7c8686b523274922c073d3a443b79781ee7d31c0.zip FreeBSD-ports-7c8686b523274922c073d3a443b79781ee7d31c0.tar.gz |
- Upgrade to 3.0.1
- set MAINTAINER to kkennawa@physics.adelaide.edu.au
- honor CFLAGS
CHANGES not included in PR ports/9240:
- add USE_XLIB
- remove version string from pkg/COMMENT
PR: ports/9240
Submitted by: Kris Kennaway <kkennawa@physics.adelaide.edu.au>
Diffstat (limited to 'graphics/povray/files')
-rw-r--r-- | graphics/povray/files/patch-b | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/graphics/povray/files/patch-b b/graphics/povray/files/patch-b index 247503c..2e9f944 100644 --- a/graphics/povray/files/patch-b +++ b/graphics/povray/files/patch-b @@ -64,3 +64,24 @@ $(SRCDIR)/point.h \ $(SRCDIR)/povproto.h \ --- 901,906 ---- +*** source/unix/makefile~ Wed Dec 30 16:07:40 1998 +--- source/unix/makefile Wed Dec 30 16:09:21 1998 +*************** +*** 79,85 **** + # for compiles unless you are debugging new code, as it slows things down. + # The option -DPOV_COMMENTS enables informational comments in PNG and PPM + # format output files (see png_pov.c and ppm.c for more info). +! CFLAGS = -O2 -ansi -c -DCOMPILER_VER=\".`uname`.$(CC)\" $(SRCINC) $(LIBPNGINC) $(ZLIBINC) $(XLIBINC) + LFLAGS = $(LIBPNGLIB) $(ZLIBLIB) -lm + + # Linux compiler flags +--- 79,87 ---- + # for compiles unless you are debugging new code, as it slows things down. + # The option -DPOV_COMMENTS enables informational comments in PNG and PPM + # format output files (see png_pov.c and ppm.c for more info). +! CFLAGS ?= -O2 +! CFLAGS += -ansi -c -DCOMPILER_VER=\".`uname`.$(CC)\" $(SRCINC) $(LIBPNGINC) $(ZLIBINC) $(XLIBINC) +! + LFLAGS = $(LIBPNGLIB) $(ZLIBLIB) -lm + + # Linux compiler flags |