diff options
author | ats <ats@FreeBSD.org> | 1995-02-25 17:18:23 +0000 |
---|---|---|
committer | ats <ats@FreeBSD.org> | 1995-02-25 17:18:23 +0000 |
commit | c1570ad948eb2e6f6278d6feebae91e32eab922e (patch) | |
tree | 12bd53aa308e5d65e3a0f62668207ae899e48284 /graphics/dore | |
parent | 6ca8dce387b7d7c75de3b89c74ab6efb6c0816a5 (diff) | |
download | FreeBSD-ports-c1570ad948eb2e6f6278d6feebae91e32eab922e.zip FreeBSD-ports-c1570ad948eb2e6f6278d6feebae91e32eab922e.tar.gz |
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.
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 0000000..8087749 --- /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 + |