bsd: drop PCCONS support

The old PCCONS driver only seems to be used on minimal install disks and
cannot coexist with newer ones, so there's probably no practical use case for
supporting it in Xorg anymore.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2024-06-18 08:50:44 +02:00
parent 0d45b0745c
commit 3dee0b77ff
6 changed files with 0 additions and 138 deletions

View File

@@ -276,21 +276,18 @@ defines_svr4 = '''#if !defined(SVR4) && !defined(__svr4__) && !defined(__SVR4)
'''
# BSD specifics
supports_pccons = false
supports_pcvt = false
supports_syscons = false
supports_wscons = false
csrg_based = false
if host_machine.system() == 'freebsd' or host_machine.system() == 'dragonfly'
supports_pccons = true
supports_pcvt = true
supports_syscons = true
csrg_based = true
endif
if host_machine.system() == 'kfreebsd'
supports_pccons = true
supports_pcvt = true
supports_syscons = true
endif
@@ -318,7 +315,6 @@ conf_data.set_quoted('XCONFIGFILE', 'xorg.conf')
conf_data.set_quoted('__XSERVERNAME__', 'Xorg')
conf_data.set('WITH_VGAHW', build_vgahw ? '1' : false)
conf_data.set('CSRG_BASED', csrg_based ? '1' : false)
conf_data.set('PCCONS_SUPPORT', supports_pccons ? '1' : false)
conf_data.set('PCVT_SUPPORT', supports_pcvt ? '1' : false)
conf_data.set('SYSCONS_SUPPORT', supports_syscons ? '1' : false)
conf_data.set('WSCONS_SUPPORT', supports_wscons ? '1' : false)

View File

@@ -94,9 +94,6 @@
/* System is BSD-like */
#mesondefine CSRG_BASED
/* System has PC console */
#mesondefine PCCONS_SUPPORT
/* System has PCVT console */
#mesondefine PCVT_SUPPORT

View File

@@ -173,9 +173,6 @@
/* System is BSD-like */
#mesondefine CSRG_BASED
/* System has PC console */
#mesondefine PCCONS_SUPPORT
/* System has PCVT console */
#mesondefine PCVT_SUPPORT