diff options
author | jmacd <jmacd@FreeBSD.org> | 1998-04-21 08:09:58 +0800 |
---|---|---|
committer | jmacd <jmacd@FreeBSD.org> | 1998-04-21 08:09:58 +0800 |
commit | fad3354237c8b9958317ad7b575210866c7158db (patch) | |
tree | 26c5ed2932894ebb5e588330ef7957aacf43bd27 /misc/xdelta | |
parent | ebe573df7441656e0a4e875fd028d07300d4ae43 (diff) | |
download | freebsd-ports-gnome-fad3354237c8b9958317ad7b575210866c7158db.tar.gz freebsd-ports-gnome-fad3354237c8b9958317ad7b575210866c7158db.tar.zst freebsd-ports-gnome-fad3354237c8b9958317ad7b575210866c7158db.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
Diffstat (limited to 'misc/xdelta')
-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 |