diff options
author | Joshua Peck Macdonald <jmacd@FreeBSD.org> | 1998-04-21 00:09:58 +0000 |
---|---|---|
committer | Joshua Peck Macdonald <jmacd@FreeBSD.org> | 1998-04-21 00:09:58 +0000 |
commit | 4a23496b1037df37a83eb58ea68999cbbfb2267c (patch) | |
tree | 7e86ddc712a2582be6fc76d055c8b66922035f6b /misc | |
parent | ca3416790dbe00f98474ea7790cb4f74cbe64183 (diff) | |
download | ports-4a23496b1037df37a83eb58ea68999cbbfb2267c.tar.gz ports-4a23496b1037df37a83eb58ea68999cbbfb2267c.zip |
This fixes problem #2 reported by pierre.dampure@k2c.co.uk (out
of order includes--this version compiled on a 2.2.6 machine without
problems, though).
Rather than patch it, I cut a new release.
Problem #2 is:
> 1) Though the port depends on GDBM, the configure script does not find
> it; I got that to work by creating ad hoc symlinks for
> /usr/include/gdbm.h and /usr/lib/libgdbm.a --> for some reasons,
> /usr/local/include and /usr/local/lib are ignored (btw, any way I can do
> that "cleanly" for all ports?)
which I haven't touched. Since the standard gcc doesn't search
/usr/local/include and /usr/local/lib, it is neccesary to have
CFLAGS=-I/usr/local/include
LDFLAGS=-L/usr/local/lib
before configure succeeds, but I tried adding those lines to MAKE_ENV
and it didn't help configure (is there a CONFIGURE_ENV)?
Why doesn't it search those paths anyway? I looked at other ports which
require gdbm and they are no different, it seems they all have this problem,
or their makefiles have hardcoded /usr/local paths in them.
-josh
Notes
Notes:
svn path=/head/; revision=10614
Diffstat (limited to 'misc')
-rw-r--r-- | misc/xdelta/Makefile | 8 | ||||
-rw-r--r-- | misc/xdelta/distinfo | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/misc/xdelta/Makefile b/misc/xdelta/Makefile index a1af1cd9b87c..877f4c1fd09b 100644 --- a/misc/xdelta/Makefile +++ b/misc/xdelta/Makefile @@ -1,12 +1,12 @@ # New ports collection makefile for: xdelta -# Version required: 0.16 +# Version required: 0.17 # Date created: Sun May 4 21:40:06 CDT 1997 -# Whom: erich +# Whom: jmacd # -# $Id: Makefile,v 1.4 1998/03/15 19:44:16 steve Exp $ +# $Id: Makefile,v 1.5 1998/04/19 01:18:01 jmacd Exp $ # -DISTNAME= xdelta-0.16 +DISTNAME= xdelta-0.17 CATEGORIES= misc MASTER_SITES= ftp://ftp.xcf.berkeley.edu/pub/jmacd/ diff --git a/misc/xdelta/distinfo b/misc/xdelta/distinfo index e97c357f8310..a83f46b399ce 100644 --- a/misc/xdelta/distinfo +++ b/misc/xdelta/distinfo @@ -1 +1 @@ -MD5 (xdelta-0.16.tar.gz) = eb8d8dfdc6fd97556f0eb5e94910f4be +MD5 (xdelta-0.17.tar.gz) = 207757a28c2854f3c0acb259ba796fab |