ports/56725: [patch, non-maintainer] web/webredirect: Fix build with gcc 2.95.4

Simon Barner barner at in.tum.de
Thu Sep 11 23:30:20 UTC 2003


>Number:         56725
>Category:       ports
>Synopsis:       [patch, non-maintainer] web/webredirect: Fix build with gcc 2.95.4
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Sep 11 16:30:16 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     Simon Barner
>Release:        FreeBSD 4.9-PRERELEASE i386
>Organization:
>Environment:
System: FreeBSD zi025.glhnet.mhn.de 4.9-PRERELEASE FreeBSD 4.9-PRERELEASE #1: Thu Sep 4 20:49:53 CEST 2003 simon at zi025.glhnet.mhn.de:/usr/src/sys/compile/KISTE i386

>Description:

This port was broken by the upgrade to the latest release.

>How-To-Repeat:

Build on -stable.

>Fix:

Please apply the following patch (creates 2 new patch files):

--- /dev/null	Fri Sep 12 01:21:45 2003
+++ files/patch-webredirect.cc	Fri Sep 12 01:17:51 2003
@@ -0,0 +1,10 @@
+--- webredirect.cc.orig	Fri Sep 12 00:55:12 2003
++++ webredirect.cc	Fri Sep 12 01:04:57 2003
+@@ -7,6 +7,7 @@
+ #include <iostream>
+ #include <stdexcept>
+ #include <map>
++#include <memory>
+ #include <incu/error.hh>
+ #include <incu/log.hh>
+ #include <incu/socket.hh>
--- /dev/null	Fri Sep 12 01:21:45 2003
+++ files/patch-incu::incu::log.hh	Fri Sep 12 01:18:07 2003
@@ -0,0 +1,18 @@
+--- incu/incu/log.hh.orig	Fri Sep 12 00:55:24 2003
++++ incu/incu/log.hh	Fri Sep 12 01:17:07 2003
+@@ -34,10 +34,15 @@
+     static void setTreshold(LogGrade t) { silence = t; }
+     /** Boring workaround ... Without this, the first thing to get appended to
+      * the Log gets broken. */
++
++    // Does not work with gcc 2.95.4, so people with have to live with
++    // broken output :(
++#if !defined (__GNUC__) || __GNUC__ > 2
+     template<typename T>
+     std::ostream& operator << (const T& t) {
+       return *((std::ostream*)(this)) << t;
+     }
++#endif
+   private:
+     static LogGrade silence;
+     class DeviceMgr;


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list