X -configure fails on NetBSD: Number of created screens does not ...


 
Thread Tools Search this Thread
Operating Systems BSD X -configure fails on NetBSD: Number of created screens does not ...
# 8  
Old 04-23-2015
It's not hardware-accelerated, no.

Wasn't the RS740 from 2008? I wonder if support has been dropped. It's based on the R400 chipset.

There are no proprietary ATI drivers for BSD.

this page might be some help.

Last edited by Corona688; 04-23-2015 at 12:45 PM..
This User Gave Thanks to Corona688 For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Separate X screens on x86 Solaris 11.3

Good morning, I` am trying to make a separate X screens on x86 machine Dell XE2 Intel i5 2.5Ghz . Video : Xeon E3-1200 v3/4 Gen Core Processor Integrated Graphics processor Using Solaris 11.3 Release: kernel SunOS 5.11 Gnome 2.30.2 So right now I have tried to change... (4 Replies)
Discussion started by: defs
4 Replies

2. SCO

Cannot Switch from GUI to Text Screens

A client's SCO UNIX OpenServer 5.0.7 MP 4 system: The X-Windows GUI comes up fine (on multi-screen 2) but I cannot switch to tty01 or tty03 or any other tty. The display just shows a blinking cursor. I went into scoadmin video and checked that the function keys were all assigned--they are. I've... (6 Replies)
Discussion started by: Transpower
6 Replies

3. UNIX for Dummies Questions & Answers

Check number of files that were created before a date?

Hi all, In a directory I have a lot of files created in history. However do I check the number of files that were created before a designated date? Thanks (1 Reply)
Discussion started by: isaacniu
1 Replies

4. Red Hat

How can I see all screens of a user?

Hi folks, I was running many commands using root and closed the session. I would like to see if there is a way to go back to the server and see those screens so I can remember what I did the next time I need to do that. Thanks a bunch! (3 Replies)
Discussion started by: 300zxmuro
3 Replies

5. What is on Your Mind?

3D screens in surgical industry

I just had this odd idea that may even have some future. The advent of 3D screens for the mass market might prove useful for the healthcare industry, while in surgical practices they rely on medical imagery more and more often. Perhaps the introduction of 3D screens will give the illusion of depth... (4 Replies)
Discussion started by: figaro
4 Replies

6. HP-UX

HP UX welcome screens

How I can I remove the welcome screen for HPUX ie * * * * * Welcome to AIX Version 5.3! * * * but only for some users ? Thanks (4 Replies)
Discussion started by: belfastbelle
4 Replies

7. Shell Programming and Scripting

Count number of Nodes created and write it to a Log file

Dear Experts, I have to count the number of AddressRecords formed in bbc.xml file using unix script file. For example: for below pasted file, I need to write an output to a log file as "No. of Address Records Created=4". Snippet of bbc.xml:- <?xml version="1.0" encoding="UTF-8" ?> -... (1 Reply)
Discussion started by: phani333
1 Replies

8. Debian

./configure is broken - /lib/cpp fails sanity check

Hi, I first wanted to install my NIC drivers but it said: Makefile:62: *** Linux kernel source not found. Stop. So I installed the kernel source: linux-source-2.6.18_2.6.18.dfsg.1-13etch5_all.deb 1) cd /usr/src 2) -xjvf linux-source.2.6.18.extension (forget what it was) 3) ln -s... (12 Replies)
Discussion started by: Virtuality
12 Replies

9. Solaris

Created cron.allow file and now email fails

Getting ready for Sarbanes Oxley and I was told that I need to create a cron.allow file for the box so that only specified users can create cron jobs. That was easy enough, and I put in all the accounts that had scheduled cron jobs such as: root lp My oracle account A couple of programmer... (1 Reply)
Discussion started by: citrowske
1 Replies

10. UNIX for Dummies Questions & Answers

AIX Console screens

How do you switch screens in AIX? I know you can use ALT-F1, ALT-F3, etc. in SCO Unix. Help!!! (2 Replies)
Discussion started by: falstaff100
2 Replies
Login or Register to Ask a Question
DMXChangeScreensAttributes(3X)											    DMXChangeScreensAttributes(3X)

NAME
DMXChangeScreensAttributes - change back-end screen attributes SYNOPSIS
#include <X11/extensions/dmxext.h> int DMXChangeScreensAttributes(Display *dpy, int screen_count, int *screens, int mask_count, unsigned int *masks, DMXScreenAttributes *attr, int *error_screen); DESCRIPTION
DMXChangeScreensAttributes() changes the geometries and positions of the DMX screen and DMX root windows on the back-end X servers. screen_count specifies the number of screens to be changed. For each screen, the screen number is placed in screens, an attribute mask is placed in masks, and a DMXScreenAttributes structure is included in attr. An explanation of the DMXScreenAttributes structure is given in DMXGetScreenAttributes(3X). The values that are used to compute each value in masks are as follows DMXScreenWindowWidth DMXScreenWindowHeight DMXScreenWindowXoffset DMXScreenWindowYoffset DMXRootWindowWidth DMXRootWindowHeight DMXRootWindowXoffset DMXRootWindowYoffset DMXRootWindowXorigin DMXRootWindowYorigin In general, mask_count should be equal to screen_count. However, as a convenience, mask_count may be less than screen_count, and the last entry in masks will then be used for all of the remaining screens. For example, this allows identical changes to be made to several screens using only one mask. RETURN VALUE
On success, 0 is returned. Otherwise, error_screen is set to the value of the first screen in the list that caused the error and a non- zero value is returned. If screen_count or mask_count is less than 1, or if any of the attribute values are not within the appropriate bounding boxes, DmxBadValue is returned. If a protocol error occurs, DmxBadReply is returned. DMXChangeScreensAttributes() can generate BadLength (if the data provided does not match the data implicitly required by the screen_count and mask_count values), BadValue (if the values in screens are not valid), and BadAlloc errors. SEE ALSO
DMXGetScreenCount(3X), DMXGetScreenAttributes(3X), DMX(3X), Xdmx(1) X Version 11 libdmx 1.0.2 DMXChangeScreensAttributes(3X)