Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Sep 1999 10:00:23 -0700 (PDT)
From:      "Brian W. Buchanan" <brian@CSUA.Berkeley.EDU>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/13617: Patch for x11-toolkits/plib
Message-ID:  <Pine.BSF.4.10.9909070959210.35678-100000@smarter.than.nu>

next in thread | raw e-mail | index | archive | help

>Number:         13617
>Category:       ports
>Synopsis:       Patch to get plib to build under 3.3
>Confidential:   no
>Severity:       critical
>Priority:       high
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Sep  7 10:10:01 PDT 1999
>Closed-Date:
>Last-Modified:
>Originator:     Brian Buchanan
>Release:        FreeBSD 4.0-CURRENT i386
>Organization:
>Environment:
>Description:

plib apparently does not build on 3.3-RC systems.  This patch should fix the
error which is shown in Satoshi's build logs.  I don't have access to a
3.3-RC system to test this on, but it doesn't affect the already-working
builds on 4-CURRENT.

>How-To-Repeat:
>Fix:
Add patches/patch-ac as follows:

--- src/ssg/ssg.h.old	Mon Sep  6 19:11:03 1999
+++ src/ssg/ssg.h	Mon Sep  6 19:11:17 1999
@@ -438,7 +438,7 @@
 
   void  setName ( char *nm ) { name = nm ; }
   char *getName () { return name ; }
-  char *getPrintableName () { return (name == NULL) ? "NoName" : name ; }
+  char *getPrintableName () { return (name == NULL) ? (char *)"NoName" : name ; }
 
   sgSphere *getBSphere ()
   {


>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?Pine.BSF.4.10.9909070959210.35678-100000>