Source-Changes-HG archive

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

[xsrc/trunk]: xsrc/external/mit/libX11/dist/src Dynamically load an unversion...



details:   https://anonhg.NetBSD.org/xsrc/rev/e22f526dbcc8
branches:  trunk
changeset: 10554:e22f526dbcc8
user:      nia <nia%NetBSD.org@localhost>
date:      Tue Sep 15 14:29:04 2020 +0000

description:
Dynamically load an unversioned libXcursor.

The version number is wrong for NetBSD (we have libXcursor.so.2 instead of
libXcursor.so.1) and this makes things fail.

diffstat:

 external/mit/libX11/dist/src/CrGlCur.c |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 258c376515d2 -r e22f526dbcc8 external/mit/libX11/dist/src/CrGlCur.c
--- a/external/mit/libX11/dist/src/CrGlCur.c    Mon Sep 07 15:20:53 2020 +0000
+++ b/external/mit/libX11/dist/src/CrGlCur.c    Tue Sep 15 14:29:04 2020 +0000
@@ -55,7 +55,7 @@
 #endif
 
 #ifndef LIBXCURSOR
-#define LIBXCURSOR "libXcursor.so.1"
+#define LIBXCURSOR "libXcursor.so"
 #endif
 
 static char libraryName[] = LIBXCURSOR;



Home | Main Index | Thread Index | Old Index