diff options
author | Andreas Schulz <ats@FreeBSD.org> | 1995-02-25 17:18:23 +0000 |
---|---|---|
committer | Andreas Schulz <ats@FreeBSD.org> | 1995-02-25 17:18:23 +0000 |
commit | 6f98e257b30908ee72b7925cf9e70a1c9eed2c44 (patch) | |
tree | 7c3508aa7a84bbceb00eac7c6c4a1d0ba4865c2b /graphics/dore | |
parent | 9ba9cdc0d847c1eaffdfab1330bceec8a80b708d (diff) | |
download | ports-6f98e257b30908ee72b7925cf9e70a1c9eed2c44.tar.gz ports-6f98e257b30908ee72b7925cf9e70a1c9eed2c44.zip |
Changed all occurences of /usr/include/dore.h to relative includes in the
tree. Change the -ldore to a -L../../../lib/i386 -ldore so that this port
finds this library now.
Notes
Notes:
svn path=/head/; revision=1034
Diffstat (limited to 'graphics/dore')
-rw-r--r-- | graphics/dore/files/patch-ae | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/graphics/dore/files/patch-ae b/graphics/dore/files/patch-ae new file mode 100644 index 000000000000..8087749ea9a6 --- /dev/null +++ b/graphics/dore/files/patch-ae @@ -0,0 +1,61 @@ +*** examples/generic/makefile.ORIG Thu Jan 12 23:13:41 1995 +--- examples/generic/makefile Sat Feb 25 15:30:02 1995 +*************** +*** 17,23 **** + PRECISION= SINGLE + DORELIB= -ldore + +! INCDIR=/usr/include + CFLAGS= -DDORE_REAL_$(PRECISION) -I$(INCDIR) + OFILES= render.o run.o + +--- 17,23 ---- + PRECISION= SINGLE + DORELIB= -ldore + +! INCDIR=../../include + CFLAGS= -DDORE_REAL_$(PRECISION) -I$(INCDIR) + OFILES= render.o run.o + +*** examples/util/makefile.ORIG Thu Jan 12 23:13:44 1995 +--- examples/util/makefile Sat Feb 25 15:33:09 1995 +*************** +*** 19,25 **** + OFILES= copy.o defgroup.o hsvtorgb.o preview.o \ + prsarg.o rectmesh.o replace.o stkgrp.o supermesh.o text.o transform.o + +! INCDIR=/usr/include + CFLAGS= -DDORE_REAL_$(PRECISION) -I$(INCDIR) + + all: libdore_util.a +--- 19,25 ---- + OFILES= copy.o defgroup.o hsvtorgb.o preview.o \ + prsarg.o rectmesh.o replace.o stkgrp.o supermesh.o text.o transform.o + +! INCDIR=../../include + CFLAGS= -DDORE_REAL_$(PRECISION) -I$(INCDIR) + + all: libdore_util.a +*** examples/programs/simple/makefile.ORIG Thu Jan 12 23:13:55 1995 +--- examples/programs/simple/makefile Sat Feb 25 16:56:59 1995 +*************** +*** 15,23 **** + # EXPRESS OR IMPLIED. + + PRECISION= SINGLE +! DORELIB = -ldore + +! INCDIR=/usr/include + CFLAGS= -DDORE_REAL_$(PRECISION) -I$(INCDIR) + LIBS= $(DORELIB) -lX11 -lm + +--- 15,23 ---- + # EXPRESS OR IMPLIED. + + PRECISION= SINGLE +! DORELIB = -L../../../lib/i386 -ldore + +! INCDIR=../../../include + CFLAGS= -DDORE_REAL_$(PRECISION) -I$(INCDIR) + LIBS= $(DORELIB) -lX11 -lm + |