Date: Thu, 2 Sep 1999 18:10:29 -0700 (PDT) From: brooks@one-eyed-alien.net To: freebsd-gnats-submit@freebsd.org Subject: ports/13552: The gnuplot doesn't build with GIF support enabled Message-ID: <19990903011029.41BCF15059@hub.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 13552 >Category: ports >Synopsis: The gnuplot doesn't build with GIF support enabled >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 2 18:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Brooks Davis >Release: 3.2-STABLE >Organization: >Environment: FreeBSD minya 3.2-STABLE FreeBSD 3.2-STABLE #10: Wed Sep 1 13:44:43 PDT 1999 root@minya:/usr/src/sys/compile/MINYA i386 >Description: Since GIF support was removed from GD not long ago, you can't build ports that rely on that support. Gnuplot was one of them. This also broke amanda and any other ports that depended on gnuplot. >How-To-Repeat: build gnuplot. >Fix: The following patch turns off GD which turns off GIF support. PNG support still works as gnuplot uses libpng to product PNGs. Index: Makefile =================================================================== RCS file: /home/ncvs/ports/math/gnuplot/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- Makefile 1999/08/25 07:10:10 1.23 +++ Makefile 1999/09/03 00:55:18 @@ -21,7 +21,7 @@ --includedir=${LOCALBASE}/include/ \ --libdir=${LOCALBASE}/lib \ --with-x --without-linux-vga \ - --with-gd=${LOCALBASE}/lib \ + --with-gd=no \ --with-gnu-readline --with-lasergnu --with-png MAN1= gnuplot.1 lasergnu.1 >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?19990903011029.41BCF15059>