From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jun 26 09:20:10 2003 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67FDB37B401 for ; Thu, 26 Jun 2003 09:20:10 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C593143FBD for ; Thu, 26 Jun 2003 09:20:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h5QGK9Up024439 for ; Thu, 26 Jun 2003 09:20:09 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h5QGK9wr024437; Thu, 26 Jun 2003 09:20:09 -0700 (PDT) Date: Thu, 26 Jun 2003 09:20:09 -0700 (PDT) Message-Id: <200306261620.h5QGK9wr024437@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Bartosz Fabianowski Subject: Re: ports/53665: graphics/showimg 0.8 beta 2 broken on 4.8-STABLE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Bartosz Fabianowski List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jun 2003 16:20:10 -0000 The following reply was made to PR ports/53665; it has been noted by GNATS. From: Bartosz Fabianowski To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/53665: graphics/showimg 0.8 beta 2 broken on 4.8-STABLE Date: Fri, 27 Jun 2003 04:12:35 +1200 I have fixed the problems with showimg on 4-STABLE by modifying two source files. However, I have never written a patch, so I hope somebody else could do it :(. What needs to be done is the following: In work/showimg-0.8-20030305/showimg/batchrenamer.h, the order of these two lines needs to be exchanged (this is required on FreeBSD according to the utime(3) man page): #include #include In work/showimg-0.8-20030305/showimg/qtiffio.cpp, the following needs to be done: Before this line: #include This must be added: #include Again, this is required on FreeBSD 4-STABLE according to the mmap(2) man page. It is not required on 5-CURRENT any more, I guess that is why it was never noticed when the port was commited (see also PR misc/21644). With these two changes, showimg compiles and runs on 4-STABLE. - Bartosz