From owner-freebsd-ports Tue Oct 30 9: 0: 9 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 689E737B403 for ; Tue, 30 Oct 2001 09:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9UH02M39262; Tue, 30 Oct 2001 09:00:02 -0800 (PST) (envelope-from gnats) Date: Tue, 30 Oct 2001 09:00:02 -0800 (PST) Message-Id: <200110301700.f9UH02M39262@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Scot W. Hetzel" Subject: Re: ports/31641: Firebird Reply-To: "Scot W. Hetzel" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/31641; it has been noted by GNATS. From: "Scot W. Hetzel" To: "Kirk Strauser" , Cc: Subject: Re: ports/31641: Firebird Date: Tue, 30 Oct 2001 10:56:30 -0600 From: "Kirk Strauser" > cd /usr/ports/databases/firebird; make install > >Fix: > As a quick fix, I simply lowered the threshold of the OSVERSION test in Makefile: > > ######################################## > > --- Makefile.old Tue Oct 30 10:18:09 2001 > +++ Makefile Tue Oct 30 10:18:17 2001 > @@ -33,7 +33,7 @@ > ${CP} msgs/msg.gbak misc/msg.gbak \ > ) > > -.if ${OSVERSION} >= 500016 > +.if ${OSVERSION} >= 400016 > post-patch: > ${PERL} -pi -e 's,\-ldescrypt,\-lcrypt,g' ${WRKSRC}/builds/original/prefix.freebsd > .endif > > ######################################## > > I do not know what the correct OSVERSION value should be. > The correct check for OSVERSION should be: .if ${OSVERSION} < 4300001 || \ ( ${OSVERSION} >= 500000 && ${OSVERSION} < 500014 ) As these are the versions I found in the CVS repository, while fixing this same problem in the apache13-fp port. Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message