Port-alpha archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

AlphaServer 1200



Apologies if this is the wrong place to put this posting. If so, just
ignore it. I'm someone who used to use Alpha hardware and wants to
keep it going, but I'm not a developer or anything.

I'm installing NetBSD 8 on my AlphaServer. 1200 Just thought I'd
provide some feedback.

I installed from the iso. It all worked fine. I got a bootable system
first time. The first time I installed, I installed the X sets too,
and tha did not work, neither with an S3Trio nor a Matrox card.  I'm
not going to talk about that here, yet.

I tried installing all sets except X, then tried to use pkgsrc to
install modular-xorg.

It worked for a while, but ... please find at the end of this posting
the error stream from the make.

In short, bsd_pci.c includes ../../../../hw/xfree86/common/compiler.h
which has some undeclared stuff in it of the form CARD8.

Does the compiler.h need to include another header to define these
things? I've grepped around, but I'm out of my depth, I'm afraid.

Apologies if I am posting to the wrong list.

-------------------------------------------------------------------------------------

here is the error stream of the screen output from the make:

In file included from bsd_pci.c:43:0:
../../../../hw/xfree86/common/compiler.h: In function 'xf86ReadMmio8':
../../../../hw/xfree86/common/compiler.h:993:14: error: 'CARD8'
undeclared (first use in this function)
     return *(CARD8 *) ((unsigned long) Base + (Offset));
              ^
../../../../hw/xfree86/common/compiler.h:993:14: note: each undeclared
identifier is reported only once for each function it appears in
../../../../hw/xfree86/common/compiler.h:993:21: error: expected
expression before ')' token
     return *(CARD8 *) ((unsigned long) Base + (Offset));
                     ^
../../../../hw/xfree86/common/compiler.h: In function 'xf86ReadMmio16':
../../../../hw/xfree86/common/compiler.h:1000:14: error: 'CARD16'
undeclared (first use in this function)
     return *(CARD16 *) ((unsigned long) Base + (Offset));
              ^
../../../../hw/xfree86/common/compiler.h:1000:22: error: expected
expression before ')' token
     return *(CARD16 *) ((unsigned long) Base + (Offset));
                      ^
../../../../hw/xfree86/common/compiler.h: In function 'xf86ReadMmio32':
../../../../hw/xfree86/common/compiler.h:1007:14: error: 'CARD32'
undeclared (first use in this function)
     return *(CARD32 *) ((unsigned long) Base + (Offset));
              ^
../../../../hw/xfree86/common/compiler.h:1007:22: error: expected
expression before ')' token
     return *(CARD32 *) ((unsigned long) Base + (Offset));
                      ^
../../../../hw/xfree86/common/compiler.h: In function 'xf86WriteMmio8':
../../../../hw/xfree86/common/compiler.h:1014:7: error: 'CARD8'
undeclared (first use in this function)
     *(CARD8 *) ((unsigned long) Base + (Offset)) = Value;
       ^
../../../../hw/xfree86/common/compiler.h:1014:14: error: expected
expression before ')' token
     *(CARD8 *) ((unsigned long) Base + (Offset)) = Value;
              ^
../../../../hw/xfree86/common/compiler.h: In function 'xf86WriteMmio16':
../../../../hw/xfree86/common/compiler.h:1021:7: error: 'CARD16'
undeclared (first use in this function)
     *(CARD16 *) ((unsigned long) Base + (Offset)) = Value;
       ^
../../../../hw/xfree86/common/compiler.h:1021:15: error: expected
expression before ')' token
     *(CARD16 *) ((unsigned long) Base + (Offset)) = Value;
               ^
../../../../hw/xfree86/common/compiler.h: In function 'xf86WriteMmio32':
../../../../hw/xfree86/common/compiler.h:1028:7: error: 'CARD32'
undeclared (first use in this function)
     *(CARD32 *) ((unsigned long) Base + (Offset)) = Value;
       ^
../../../../hw/xfree86/common/compiler.h:1028:15: error: expected
expression before ')' token
     *(CARD32 *) ((unsigned long) Base + (Offset)) = Value;
               ^
gmake[5]: *** [Makefile:670: bsd_pci.lo] Error 1
gmake[4]: *** [Makefile:711: all-recursive] Error 1
gmake[3]: *** [Makefile:869: all-recursive] Error 1
gmake[2]: *** [Makefile:678: all] Error 2
gmake[1]: *** [Makefile:615: all-recursive] Error 1
gmake: *** [Makefile:816: all-recursive] Error 1


Home | Main Index | Thread Index | Old Index