Bug 71037 - [patch] build fix for X.org server with 5.3Beta on Alpha
Summary: [patch] build fix for X.org server with 5.3Beta on Alpha
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-x11 (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-08-27 16:50 UTC by Andrew Elmore
Modified: 2004-09-02 23:57 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew Elmore 2004-08-27 16:50:29 UTC
	machine/sysarch.h header changed: alpha_video.c declared an extern sysarch function
	which didn't match the prototype.  The enclosed patch fixes it -- (as XFree86-4 has
	already been fixed).

Fix: here is file x11-servers/xorg-server/patch-alpha-video.c:


#ifdef __FreeBSD__
-extern int sysarch(int, char *);
+extern int sysarch(int, void *);
 #endif

 struct parms {--qlBxS0cAwwaFoVuPypABibVxQukm9ke8m3r8HljwZLiNfvc4
Content-Type: text/plain; name="file.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="file.diff"

--- programs/Xserver/hw/xfree86/os-support/bsd/alpha_video.c.orig       Fri Aug 27 01:29:46 2004
+++ programs/Xserver/hw/xfree86/os-support/bsd/alpha_video.c    Fri Aug 27 01:21:29 2004
@@ -487,7 +487,7 @@
 writeSparse32(int Value, pointer Base, register unsigned long Offset);
How-To-Repeat: 	build x11-servers/xorg-server on Alpha.
Comment 1 Tilman Keskinoz freebsd_committer freebsd_triage 2004-08-27 18:51:04 UTC
Responsible Changed
From-To: freebsd-alpha->freebsd-x11

Over to the x11 mailinglist, they maintain the xorg ports
Comment 2 lesi freebsd_committer freebsd_triage 2004-09-02 23:57:20 UTC
State Changed
From-To: open->closed

Commited. Thanks!