Date: Tue, 2 Mar 1999 09:45:35 -0500 (EST) From: jservice@hydro.on.ca To: FreeBSD-gnats-submit@freebsd.org Subject: ports/10352: ghostscript55 port build fails using jpeg lib Message-ID: <199903021445.JAA80686@oht.hydro.on.ca>
next in thread | raw e-mail | index | archive | help
>Number: 10352 >Category: ports >Synopsis: ghostscript55 port build fails using jpeg lib >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 2 07:00:01 PST 1999 >Closed-Date: >Last-Modified: >Originator: Jim.Service@oht.hydro.on.ca >Release: FreeBSD 3.1-RELEASE i386 >Organization: Ontario Hydro Technologies >Environment: ghostscript5.5 port, using installed jpeg lib port >Description: Build of ghostscript5.5 fails with error about missing definition in sjpegerr.c. >How-To-Repeat: make && make install in ports/graphics/jpeg make in ports/print/ghostscript5.5 >Fix: The jpeg lib port sets JPEG_LIB_VERSION to this in jpeglib.h: #define JPEG_LIB_VERSION 8 /* Version 6b */ However ports/ghostscript55/work/gs5.50/sjpegerr.c(45) does this cpp compare: #if JPEG_LIB_VERSION <= 50 To fix change line 45 in gs5.50/sjpegerr.c to this: #if JPEG_LIB_VERSION <= 5 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199903021445.JAA80686>