Skip to content

Commit

Permalink
Use the real SONAMEs of GObject and GLib
Browse files Browse the repository at this point in the history
The symlinks with bare '.so' rather than '.so.0' are part of development packages, and are not intended to be installed on end-user systems.

This appears to have caused (or at least contributed to) <https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=801350>.
  • Loading branch information
smcv committed Oct 9, 2015
1 parent a887235 commit 2a46d81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gtk3-nocsd.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ enum {
#endif

#ifndef GOBJECT_LIBRARY_SONAME
#define GOBJECT_LIBRARY_SONAME "libgobject-2.0.so"
#define GOBJECT_LIBRARY_SONAME "libgobject-2.0.so.0"
#endif

#ifndef GLIB_LIBRARY_SONAME
#define GLIB_LIBRARY_SONAME "libglib-2.0.so"
#define GLIB_LIBRARY_SONAME "libglib-2.0.so.0"
#endif

#ifndef GIREPOSITORY_LIBRARY_SONAME
Expand Down

0 comments on commit 2a46d81

Please sign in to comment.