ports/58876: Update port: games/xevil

KATO Tsuguru tkato at prontomail.com
Mon Nov 3 15:20:30 UTC 2003


>Number:         58876
>Category:       ports
>Synopsis:       Update port: games/xevil
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Nov 03 07:20:16 PST 2003
>Closed-Date:
>Last-Modified:
>Originator:     KATO Tsuguru
>Release:        FreeBSD 4.9-RELEASE i386
>Organization:
>Environment:
>Description:
- Fix build on -current

New file:
files/patch-cmn::actual.cpp
files/patch-cmn::area.cpp
files/patch-cmn::game.cpp
files/patch-cmn::game.h
files/patch-cmn::game_style.cpp
files/patch-cmn::game_style.h
files/patch-cmn::intel.cpp
files/patch-cmn::locator.h
files/patch-cmn::physical.cpp
files/patch-cmn::physical.h
files/patch-cmn::role.cpp
files/patch-cmn::streams.cpp
files/patch-cmn::utils.cpp
files/patch-cmn::world.cpp
files/patch-cmn::xetp.cpp
files/patch-x11::l_agreement_dlg.cpp
files/patch-x11::main.cpp
files/patch-x11::panel.cpp
files/patch-x11::serverping.cpp
files/patch-x11::ui.cpp
files/patch-x11::viewport.cpp
files/patch-x11::xdata.cpp

>How-To-Repeat:
>Fix:

diff -urN /usr/ports/games/xevil/Makefile games/xevil/Makefile
--- /usr/ports/games/xevil/Makefile	Sat Oct 25 22:12:15 2003
+++ games/xevil/Makefile	Sat Oct 25 21:25:55 2003
@@ -17,6 +17,9 @@
 USE_X_PREFIX=	yes
 USE_ZIP=	yes
 USE_XPM=	yes
+USE_REINPLACE=	yes
+MAKE_ENV=	CXX="${CXX}" CXXFLAGS="${CXXFLAGS}"
+MAKEFILE=	makefile
 ALL_TARGET=	freebsd
 
 .include <bsd.port.pre.mk>
@@ -26,26 +29,19 @@
 CFLAGS+="-DXEVIL_KEYSET=UIalpha"
 .endif
 
-.if ${OSVERSION} >= 501000
-BROKEN=		"Does not compile on FreeBSD ${OSVERSION}"
-.endif
-
 pre-extract:
 	@${MKDIR} ${WRKDIR}/${DISTNAME}
 
 do-extract:
 	@unzip -aqo ${DISTDIR}/${DISTFILES} -d ${WRKSRC}
 
-post-extract:
-	@${MV} -f ${WRKDIR}/${DISTNAME}/makefile ${WRKDIR}/${DISTNAME}/Makefile
-
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/x11/FREEBSD/xevil ${PREFIX}/bin/xevil
 .if !defined(NOPORTDOCS)
-	${MKDIR} ${PREFIX}/share/doc/xevil/instructions
-	${INSTALL_DATA} ${WRKSRC}/readme.txt ${PREFIX}/share/doc/xevil
-	${INSTALL_DATA} ${WRKSRC}/instructions/* \
-	${PREFIX}/share/doc/xevil/instructions
+	@${MKDIR} ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR}
+	@${MKDIR} ${DOCSDIR}/instructions
+	${INSTALL_DATA} ${WRKSRC}/instructions/* ${DOCSDIR}/instructions
 .endif
 
 .include <bsd.port.post.mk>
diff -urN /usr/ports/games/xevil/files/patch-aa games/xevil/files/patch-aa
--- /usr/ports/games/xevil/files/patch-aa	Mon May 19 09:39:57 2003
+++ games/xevil/files/patch-aa	Mon Nov  3 21:51:41 2003
@@ -1,5 +1,5 @@
 --- config.mk.orig	Sun Mar 23 00:08:58 2003
-+++ config.mk	Sun May 18 12:02:44 2003
++++ config.mk	Sat Oct 25 21:05:31 2003
 @@ -34,7 +34,7 @@
  # You can add -DNDEBUG to speed up a release build by removing the assert() 
  # calls.  But, on a really obscure Linux machine, this caused Xlib to blow up 
@@ -20,12 +20,14 @@
  		archit=$$HOSTTYPE ; \
  	elif [ $${hosttype-bob} != bob ] ; then \
  		archit=$$hosttype ; \
-@@ -162,7 +164,7 @@
+@@ -161,8 +163,8 @@
+ # The -DMSEC_PER_CLOCK=8 is kind of a hack, take it out if the game speed of 
  # XEvil is all screwed up.
  freebsd:
- 	@$(MAKE) CC="c++" \
+-	@$(MAKE) CC="c++" \
 -CFLAGS="-DUSE_RANDOM -DPROTECTED_IS_PUBLIC -DMSEC_PER_CLOCK=8 -DUNAME_USR_BIN" \
-+CFLAGS="-DUSE_RANDOM -DUSE_UINT_NET_LENGTH -DUNAME_USR_BIN ${CFLAGS}" \
++	@$(MAKE) CC="${CXX}" \
++CFLAGS="-DUSE_RANDOM -DUSE_UINT_NET_LENGTH -DUNAME_USR_BIN ${CXXFLAGS}" \
  INCL_DIRS="-I/usr/X11R6/include" LIBS_DIRS="-L/usr/X11R6/lib" \
  OBJ_DIR=$(DEPTH)/x11/FREEBSD PCKG_NAME="freebsd" \
  LIBS="-lXpm -lX11 -lm" $(TARGETS)
diff -urN /usr/ports/games/xevil/files/patch-ad games/xevil/files/patch-ad
--- /usr/ports/games/xevil/files/patch-ad	Mon May 19 09:39:57 2003
+++ games/xevil/files/patch-ad	Mon Nov  3 21:51:41 2003
@@ -1,5 +1,5 @@
---- Makefile.orig	Sun Mar 23 00:09:08 2003
-+++ Makefile	Sun May 18 12:05:08 2003
+--- makefile.orig	Sun Mar 23 00:09:08 2003
++++ makefile	Sun May 18 12:05:08 2003
 @@ -63,11 +63,6 @@
  
  # Could also include serverping in the distribution
diff -urN /usr/ports/games/xevil/files/patch-cmn::actual.cpp games/xevil/files/patch-cmn::actual.cpp
--- /usr/ports/games/xevil/files/patch-cmn::actual.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-cmn::actual.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,12 @@
+--- cmn/actual.cpp.orig	Wed Jan 19 12:54:36 2000
++++ cmn/actual.cpp	Sat Oct 25 21:39:07 2003
+@@ -32,7 +32,8 @@
+ 
+ // Include Files
+ #if X11
+-#include <strstream.h>
++#include <strstream>
++using namespace std;
+ #endif
+ #if WIN32
+ #include <strstrea.h>
diff -urN /usr/ports/games/xevil/files/patch-cmn::area.cpp games/xevil/files/patch-cmn::area.cpp
--- /usr/ports/games/xevil/files/patch-cmn::area.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-cmn::area.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,12 @@
+--- cmn/area.cpp.orig	Wed Mar 19 10:04:22 2003
++++ cmn/area.cpp	Sat Oct 25 21:39:50 2003
+@@ -34,7 +34,8 @@
+ extern "C" {
+ #include <limits.h> // For INT_MAX
+ }
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ #include "utils.h"
+ #include "coord.h"
+ #include "area.h"
diff -urN /usr/ports/games/xevil/files/patch-cmn::game.cpp games/xevil/files/patch-cmn::game.cpp
--- /usr/ports/games/xevil/files/patch-cmn::game.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-cmn::game.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,12 @@
+--- cmn/game.cpp.orig	Sat Mar 22 22:20:00 2003
++++ cmn/game.cpp	Sat Oct 25 21:40:23 2003
+@@ -34,7 +34,8 @@
+ }
+ 
+ #if X11
+-#include <strstream.h>
++#include <strstream>
++using namespace std;
+ #endif
+ #if WIN32
+ #include <strstrea.h>
diff -urN /usr/ports/games/xevil/files/patch-cmn::game.h games/xevil/files/patch-cmn::game.h
--- /usr/ports/games/xevil/files/patch-cmn::game.h	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-cmn::game.h	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,12 @@
+--- cmn/game.h.dist	Sat Mar 22 20:44:32 2003
++++ cmn/game.h	Sat Oct 25 21:40:54 2003
+@@ -35,7 +35,8 @@
+ extern "C" {
+ #include <time.h>
+ }
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ #include "utils.h"
+ #include "ui.h"
+ #include "world.h"
diff -urN /usr/ports/games/xevil/files/patch-cmn::game_style.cpp games/xevil/files/patch-cmn::game_style.cpp
--- /usr/ports/games/xevil/files/patch-cmn::game_style.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-cmn::game_style.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,12 @@
+--- cmn/game_style.cpp.orig	Sat Mar 22 20:47:42 2003
++++ cmn/game_style.cpp	Sat Oct 25 21:41:21 2003
+@@ -34,7 +34,8 @@
+ }
+ 
+ #if X11
+-#include <strstream.h>
++#include <strstream>
++using namespace std;
+ #endif
+ 
+ #if WIN32
diff -urN /usr/ports/games/xevil/files/patch-cmn::game_style.h games/xevil/files/patch-cmn::game_style.h
--- /usr/ports/games/xevil/files/patch-cmn::game_style.h	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-cmn::game_style.h	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,12 @@
+--- cmn/game_style.h.dist	Sat Mar 22 20:22:30 2003
++++ cmn/game_style.h	Sat Oct 25 21:41:50 2003
+@@ -31,7 +31,8 @@
+ #endif 
+ 
+ #if X11
+-#include <strstream.h>
++#include <strstream>
++using namespace std;
+ #endif
+ #if WIN32
+ #include <strstrea.h>
diff -urN /usr/ports/games/xevil/files/patch-cmn::intel.cpp games/xevil/files/patch-cmn::intel.cpp
--- /usr/ports/games/xevil/files/patch-cmn::intel.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-cmn::intel.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,12 @@
+--- cmn/intel.cpp.orig	Wed Mar 19 09:49:22 2003
++++ cmn/intel.cpp	Sat Oct 25 21:42:14 2003
+@@ -35,7 +35,8 @@
+   #include <string.h>
+ }
+ #if X11
+-#include <strstream.h>
++#include <strstream>
++using namespace std;
+ #endif
+ #if WIN32
+ #include <strstrea.h>
diff -urN /usr/ports/games/xevil/files/patch-cmn::locator.h games/xevil/files/patch-cmn::locator.h
--- /usr/ports/games/xevil/files/patch-cmn::locator.h	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-cmn::locator.h	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,12 @@
+--- cmn/locator.h.dist	Sat Mar 22 20:35:30 2003
++++ cmn/locator.h	Sat Oct 25 21:42:46 2003
+@@ -47,7 +47,8 @@
+ 
+ 
+ // Include Files
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ 
+ #include "utils.h"
+ #include "coord.h"
diff -urN /usr/ports/games/xevil/files/patch-cmn::physical.cpp games/xevil/files/patch-cmn::physical.cpp
--- /usr/ports/games/xevil/files/patch-cmn::physical.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-cmn::physical.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,16 @@
+--- cmn/physical.cpp.orig	Wed Jan 19 20:38:14 2000
++++ cmn/physical.cpp	Sat Oct 25 21:43:15 2003
+@@ -33,10 +33,11 @@
+ // Include Files
+ #include "xdata.h"
+ #include "physical.h"
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ 
+ #if X11
+-#include <strstream.h>
++#include <strstream>
+ #endif
+ #if WIN32
+ #include <strstrea.h>
diff -urN /usr/ports/games/xevil/files/patch-cmn::physical.h games/xevil/files/patch-cmn::physical.h
--- /usr/ports/games/xevil/files/patch-cmn::physical.h	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-cmn::physical.h	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,11 @@
+--- cmn/physical.h.orig	Wed Jan 19 12:54:08 2000
++++ cmn/physical.h	Mon Nov  3 21:36:14 2003
+@@ -93,7 +93,7 @@
+    CLASSNAME::CLASSNAME(InStreamP in,const CLASSNAME ## Context &cx, \
+                          CLASSNAME ## Xdata &x_data, \
+                          WorldP w,LocatorP l) \
+-   : PARENT(in,cx. ## parent ## Context,x_data,w,l) 
++   : PARENT(in,cx. parent ## Context,x_data,w,l) 
+ 
+ // Used by internal nodes and leaves.
+ #define DEFINE_UPDATE_FROM_STREAM(CLASSNAME,PARENT) \
diff -urN /usr/ports/games/xevil/files/patch-cmn::role.cpp games/xevil/files/patch-cmn::role.cpp
--- /usr/ports/games/xevil/files/patch-cmn::role.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-cmn::role.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,15 @@
+--- cmn/role.cpp.orig	Wed Jan 19 12:54:34 2000
++++ cmn/role.cpp	Sat Oct 25 21:43:43 2003
+@@ -29,9 +29,10 @@
+ 
+ #include "stdafx.h"
+ 
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ #if X11
+-#include <strstream.h>
++#include <strstream>
+ #include <time.h>
+ #endif
+ #if WIN32
diff -urN /usr/ports/games/xevil/files/patch-cmn::streams.cpp games/xevil/files/patch-cmn::streams.cpp
--- /usr/ports/games/xevil/files/patch-cmn::streams.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-cmn::streams.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,12 @@
+--- cmn/streams.cpp.orig	Wed Jan 19 12:54:32 2000
++++ cmn/streams.cpp	Sat Oct 25 21:44:08 2003
+@@ -31,7 +31,8 @@
+ #include "utils.h"
+ #include "neth.h" // needed for recv, send, recvfrom, sendto
+ 
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ 
+ #include "streams.h"
+ #include "xetp.h" // yuck, need this for XETP::versionStr
diff -urN /usr/ports/games/xevil/files/patch-cmn::utils.cpp games/xevil/files/patch-cmn::utils.cpp
--- /usr/ports/games/xevil/files/patch-cmn::utils.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-cmn::utils.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,26 @@
+--- cmn/utils.cpp.orig	Wed Mar 19 10:05:12 2003
++++ cmn/utils.cpp	Sat Oct 25 21:45:15 2003
+@@ -30,16 +30,17 @@
+ 
+ // Include Files
+ #include "stdafx.h"
+-#include <iostream.h>
+-#include <limits.h>
+-#include <string.h>
+-#include <ctype.h>
+-#include <fstream.h>
++#include <iostream>
++#include <climits>
++#include <cstring>
++#include <cctype>
++#include <fstream>
++using namespace std;
+ #if WIN32
+ #include <strstrea.h>
+ #endif
+ #if X11
+-#include <strstream.h>
++#include <strstream>
+ #endif
+ 
+ #ifdef WIN32
diff -urN /usr/ports/games/xevil/files/patch-cmn::world.cpp games/xevil/files/patch-cmn::world.cpp
--- /usr/ports/games/xevil/files/patch-cmn::world.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-cmn::world.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,12 @@
+--- cmn/world.cpp.orig	Wed Jan 19 21:15:08 2000
++++ cmn/world.cpp	Sat Oct 25 21:45:40 2003
+@@ -35,7 +35,8 @@
+ #endif
+ 
+ // Include Files.
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ 
+ #include "utils.h"
+ #include "coord.h"
diff -urN /usr/ports/games/xevil/files/patch-cmn::xetp.cpp games/xevil/files/patch-cmn::xetp.cpp
--- /usr/ports/games/xevil/files/patch-cmn::xetp.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-cmn::xetp.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,15 @@
+--- cmn/xetp.cpp.orig	Wed Jan 19 12:54:30 2000
++++ cmn/xetp.cpp	Sat Oct 25 21:46:02 2003
+@@ -29,9 +29,10 @@
+ 
+ #include "stdafx.h"
+ 
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ #if X11
+-#include <strstream.h>
++#include <strstream>
+ #endif
+ #if WIN32
+ #include <strstrea.h>
diff -urN /usr/ports/games/xevil/files/patch-x11::l_agreement_dlg.cpp games/xevil/files/patch-x11::l_agreement_dlg.cpp
--- /usr/ports/games/xevil/files/patch-x11::l_agreement_dlg.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-x11::l_agreement_dlg.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,12 @@
+--- x11/l_agreement_dlg.cpp.orig	Wed Jan 19 12:55:04 2000
++++ x11/l_agreement_dlg.cpp	Sat Oct 25 21:46:33 2003
+@@ -31,7 +31,8 @@
+ #include <X11/Xatom.h>
+ }
+ 
+-#include <strstream.h>
++#include <strstream>
++using namespace std;
+ 
+ #include "xdata.h"
+ #include "panel.h"
diff -urN /usr/ports/games/xevil/files/patch-x11::main.cpp games/xevil/files/patch-x11::main.cpp
--- /usr/ports/games/xevil/files/patch-x11::main.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-x11::main.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,12 @@
+--- x11/main.cpp.orig	Sat Mar 22 20:52:14 2003
++++ x11/main.cpp	Sat Oct 25 21:47:04 2003
+@@ -33,7 +33,8 @@
+ #include <X11/Xos.h>
+ }
+ 
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ 
+ #include "utils.h"
+ #include "neth.h"
diff -urN /usr/ports/games/xevil/files/patch-x11::panel.cpp games/xevil/files/patch-x11::panel.cpp
--- /usr/ports/games/xevil/files/patch-x11::panel.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-x11::panel.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,14 @@
+--- x11/panel.cpp.orig	Sat Mar 22 20:50:44 2003
++++ x11/panel.cpp	Sat Oct 25 21:47:34 2003
+@@ -31,8 +31,9 @@
+ #include <X11/Xutil.h>
+ #include <X11/keysym.h>
+ }
+-#include <iostream.h>
+-#include <strstream.h>
++#include <iostream>
++#include <strstream>
++using namespace std;
+ 
+ #include "utils.h"
+ #include "xdata.h"
diff -urN /usr/ports/games/xevil/files/patch-x11::serverping.cpp games/xevil/files/patch-x11::serverping.cpp
--- /usr/ports/games/xevil/files/patch-x11::serverping.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-x11::serverping.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,14 @@
+--- x11/serverping.cpp.orig	Sat Mar 22 21:55:12 2003
++++ x11/serverping.cpp	Sat Oct 25 21:48:03 2003
+@@ -25,8 +25,9 @@
+ // code and should be reasonably easy to compile on Windows.
+ 
+ 
+-#include <iostream.h>
+-#include <strstream.h>
++#include <iostream>
++#include <strstream>
++using namespace std;
+ #include "utils.h"
+ #include "streams.h"
+ #include "xetp_basic.h"
diff -urN /usr/ports/games/xevil/files/patch-x11::ui.cpp games/xevil/files/patch-x11::ui.cpp
--- /usr/ports/games/xevil/files/patch-x11::ui.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-x11::ui.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,14 @@
+--- x11/ui.cpp.orig	Wed Mar 19 10:05:38 2003
++++ x11/ui.cpp	Sat Oct 25 21:48:32 2003
+@@ -40,8 +40,9 @@
+ #include <X11/Xatom.h>
+ }
+ 
+-#include <iostream.h>
+-#include <strstream.h>
++#include <iostream>
++#include <strstream>
++using namespace std;
+ 
+ #include "coord.h"
+ #include "area.h"
diff -urN /usr/ports/games/xevil/files/patch-x11::viewport.cpp games/xevil/files/patch-x11::viewport.cpp
--- /usr/ports/games/xevil/files/patch-x11::viewport.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-x11::viewport.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,12 @@
+--- x11/viewport.cpp.orig	Wed Jan 19 12:54:14 2000
++++ x11/viewport.cpp	Sat Oct 25 21:49:00 2003
+@@ -44,7 +44,8 @@
+ #include <X11/Xos.h>
+ #include <X11/keysym.h>
+ }
+-#include <strstream.h>
++#include <strstream>
++using namespace std;
+ 
+ 
+ #define TICK_BORDER_WIDTH 5 // border width big enough for a tick mark.
diff -urN /usr/ports/games/xevil/files/patch-x11::xdata.cpp games/xevil/files/patch-x11::xdata.cpp
--- /usr/ports/games/xevil/files/patch-x11::xdata.cpp	Thu Jan  1 09:00:00 1970
+++ games/xevil/files/patch-x11::xdata.cpp	Mon Nov  3 21:51:41 2003
@@ -0,0 +1,12 @@
+--- x11/xdata.cpp.orig	Wed Jan 19 12:54:14 2000
++++ x11/xdata.cpp	Sat Oct 25 21:49:26 2003
+@@ -30,7 +30,8 @@
+ #include "xdata.h"
+ #include "area.h"
+ 
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ #include <X11/Xutil.h>
+ #include <X11/xpm.h>
+ #include <X11/Xatom.h>
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list