Skip to content

Commit 5f67738

Browse files
committed
vglserver_config: Fix compat. issues with SUSE 16
SUSE 16 uses /usr/etc/X11/xdm/Xsetup rather than /etc/X11/xdm/Xsetup as the SDDM display command and LightDM greeter setup script.
1 parent eaa9103 commit 5f67738

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ attempting to run a GLX application using the EGL back end and `vglrun -nodl`.
6666
14. Fixed an issue whereby the VirtualGL Configuration dialog did not pop up if
6767
the Num Lock key was on.
6868

69+
15. `vglserver_config` now works properly with SUSE Linux Enterprise/openSUSE
70+
Leap 16.
71+
6972

7073
3.0.2
7174
=====

server/vglserver_config

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# Copyright (C)2007 Sun Microsystems, Inc.
4-
# Copyright (C)2009-2014, 2016, 2018-2020, 2022-2023 D. R. Commander
4+
# Copyright (C)2009-2014, 2016, 2018-2020, 2022-2023, 2026 D. R. Commander
55
#
66
# This library is free software and may be redistributed and/or modified under
77
# the terms of the wxWindows Library License, Version 3.1 or (at your option)
@@ -678,6 +678,7 @@ EOF
678678
/usr/local/kde4/share/config/kdm/Xsetup \
679679
/etc/sddm/Xsetup \
680680
/usr/share/sddm/scripts/Xsetup \
681+
/usr/etc/X11/xdm/Xsetup \
681682
/etc/mdm/Init/Default; do
682683
if [ -f $file -a ! -h $file ]; then
683684
delvglgenkey $file
@@ -894,6 +895,7 @@ EOF
894895
/usr/local/kde4/share/config/kdm/Xsetup \
895896
/etc/sddm/Xsetup \
896897
/usr/share/sddm/scripts/Xsetup \
898+
/usr/etc/X11/xdm/Xsetup \
897899
/etc/mdm/Init/Default; do
898900
if [ -f $file -a ! -h $file ]; then
899901
addvglgenkey $file

0 commit comments

Comments
 (0)