aboutsummaryrefslogtreecommitdiff
path: root/games/fgfs-base/files/patch-ag
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2003-01-22 13:58:58 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2003-01-22 13:58:58 +0000
commitc34b11a2c1f902a59005178510ce6099a0d8c935 (patch)
tree3058c91a943c2d0ceb754f5a64d263634d7a54dd /games/fgfs-base/files/patch-ag
parent7a8ec77ba3661bc9f23b1bfc876311a0d893ee3f (diff)
Take over maintainership (Brian says he's too busy flying real planes).
Update to 0.9.1. So much has changed since 0.6.1 that I've practically had to redo the port from scratch. It builds and installs fine now, but due to limited resources I haven't been able to actually run it.
Notes
Notes: svn path=/head/; revision=73781
Diffstat (limited to 'games/fgfs-base/files/patch-ag')
-rw-r--r--games/fgfs-base/files/patch-ag94
1 files changed, 0 insertions, 94 deletions
diff --git a/games/fgfs-base/files/patch-ag b/games/fgfs-base/files/patch-ag
deleted file mode 100644
index b0cb8e6139bd..000000000000
--- a/games/fgfs-base/files/patch-ag
+++ /dev/null
@@ -1,94 +0,0 @@
-From brian@CSUA.Berkeley.EDU Thu Sep 9 20:25:32 1999
-Return-Path: <brian@CSUA.Berkeley.EDU>
-Received: from soda.CSUA.Berkeley.EDU (soda.CSUA.Berkeley.EDU [128.32.43.52])
- by hub.freebsd.org (Postfix) with ESMTP id 4DD7F152D2
- for <FreeBSD-gnats-submit@freebsd.org>; Thu, 9 Sep 1999 20:25:30 -0700 (PDT)
- (envelope-from brian@CSUA.Berkeley.EDU)
-Received: from smarter.than.nu (ida-89-77.Reshall.Berkeley.EDU [169.229.89.77])
- by soda.CSUA.Berkeley.EDU (8.8.8/) via ESMTP id UAA17320
- for <FreeBSD-gnats-submit@freebsd.org>; Thu, 9 Sep 1999 20:24:55 -0700 (PDT)
- env-from (brian@CSUA.Berkeley.EDU)
-Message-Id: <Pine.BSF.4.10.9909092019290.691-100000@smarter.than.nu>
-Date: Thu, 9 Sep 1999 20:24:54 -0700 (PDT)
-From: "Brian W. Buchanan" <brian@CSUA.Berkeley.EDU>
-To: FreeBSD-gnats-submit@freebsd.org
-Subject: [PATCH] Fix games/flightgear build under 3.3RC
-
->Number: 13674
->Category: ports
->Synopsis: Patch for games/flightgear for 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: Thu Sep 9 20:30:00 PDT 1999
->Closed-Date:
->Last-Modified:
->Originator: Brian Buchanan
->Release: FreeBSD 4.0-CURRENT i386
->Organization:
->Environment:
->Description:
-
-Satoshi's build logs show FlightGear failing under 3.3 due to some
-implicit typecasting that the compiler has no problem with under 4.0, but
-barfs at under 3.3. A patch is attached. I don't have any way to test
-this under 3.3, nor do I know if anything later in the build process fails
-under 3.3, so if someone could do a quick check and fix any other trivial
-little things before the ports freeze, it would be appreciated.
-
->How-To-Repeat:
->Fix:
-
-Add patches/patch-ag:
-
---- Simulator/GUI/gui.cxx.old Thu Sep 9 20:11:55 1999
-+++ Simulator/GUI/gui.cxx Thu Sep 9 20:13:07 1999
-@@ -149,7 +149,7 @@
- glutSetCursor(GLUT_CURSOR_INHERIT);
- #endif
- #if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 9)
-- glutWarpPointer( glutGet(GLUT_SCREEN_WIDTH)/2, glutGet(GLUT_SCREEN_HEIGHT)/2);
-+ glutWarpPointer( glutGet((GLenum)GLUT_SCREEN_WIDTH)/2, glutGet((GLenum)GLUT_SCREEN_HEIGHT)/2);
- #endif
- }
-
-@@ -160,7 +160,7 @@
- glutSetCursor(GLUT_CURSOR_NONE);
- #else // I guess this is what we want to do ??
- #if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 9)
-- glutWarpPointer( glutGet(GLUT_SCREEN_WIDTH), glutGet(GLUT_SCREEN_HEIGHT));
-+ glutWarpPointer( glutGet((GLenum)GLUT_SCREEN_WIDTH), glutGet((GLenum)GLUT_SCREEN_HEIGHT));
- #endif
- #endif
- }
-@@ -195,7 +195,7 @@
- if( restore ) {
- glutSetCursor(cursor);
- } else {
-- cursor = glutGet( GLUT_WINDOW_CURSOR );
-+ cursor = glutGet( (GLenum)GLUT_WINDOW_CURSOR );
- #ifdef WIN32
- TurnCursorOn();
- #endif
-@@ -595,7 +595,7 @@
- // Install our fast fonts
- fntpath.append( "typewriter.txf" );
- guiFntHandle = new fntTexFont ;
-- guiFntHandle -> load ( fntpath.c_str() ) ;
-+ guiFntHandle -> load ( (char *)fntpath.c_str() ) ;
- puFont GuiFont ( guiFntHandle, 15 ) ;
- puSetDefaultFonts( GuiFont, GuiFont ) ;
- guiFnt = puGetDefaultLabelFont();
-
-
->Release-Note:
->Audit-Trail:
->Unformatted:
-