Date: Sat, 2 Feb 2002 15:00:07 -0800 (PST) From: Adam Weinberger <monkey@crackula.com> To: FreeBSD-gnats-submit@freebsd.org Cc: monkey@crackula.com Subject: ports/34564: bug fix: ports/editors/cooledit fails to build Message-ID: <200202022300.g12N07t76952@cryonuts.crackula.com>
next in thread | raw e-mail | index | archive | help
>Number: 34564 >Category: ports >Synopsis: bug fix: ports/editors/cooledit fails to build >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 02 15:10:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Adam Weinberger >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD cryonuts.crackula.com 4.5-STABLE FreeBSD 4.5-STABLE #40: Wed Jan 30 11:55:08 PST 2002 root@smacky.crackula.com:/usr/src/sys/compile/smacky i386 >Description: editors/cooledit depends upon svgalib. without it, you get the following exciting errors: ./widget/libC3d.a(wtriangle.o): In function `colhline_neg_paged8': wtriangle.o(.text+0x2f6): undefined reference to `vga_setpage' wtriangle.o(.text+0x316): undefined reference to `vga_setpage' ../widget/libC3d.a(wtriangle.o): In function `colhline_pos_paged8': wtriangle.o(.text+0x433): undefined reference to `vga_setpage' wtriangle.o(.text+0x47f): undefined reference to `vga_setpage' ../widget/libC3d.a(wtriangle.o): In function `colhline_neg_paged8lookup': wtriangle.o(.text+0x996): undefined reference to `vga_setpage' ../widget/libC3d.a(wtriangle.o)(.text+0x9b6): more undefined references to `vga_ setpage' follow >How-To-Repeat: build ports/editors/cooledit >Fix: the following patch will make everything happy again: --- Makefile.orig Thu Sep 6 00:39:10 2001 +++ Makefile Sat Feb 2 14:53:32 2002 @@ -14,7 +14,8 @@ MAINTAINER= brett@peloton.runet.edu -LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext +LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext \ + vga.1:${PORTSDIR}/graphics/svgalib USE_LIBTOOL= yes INSTALLS_SHLIB= yes @@ -22,8 +23,8 @@ USE_XPM= yes USE_GMAKE= yes -CONFIGURE_ARGS= --disable-mail-author --with-libs='-lcrypt -lreadline' \ - --without-included-gettext +CONFIGURE_ARGS= --with-libs='-lcrypt -lreadline -lvga' \ + --disable-mail-author --without-included-gettext CONFIGURE_ENV= CC="${CC} -I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" >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?200202022300.g12N07t76952>