diff options
| author | orbea <[email protected]> | 2022-05-12 18:34:52 -0700 | 
|---|---|---|
| committer | Robert Antoni Buj Gelonch <[email protected]> | 2022-08-04 11:42:17 +0200 | 
| commit | cb9e62b6d101cb42cdcf3ec7617616e6c4a4bb35 (patch) | |
| tree | 4eedcb0776c740cec4f557ef161de956fc038438 /backends/null | |
| parent | fc47f17a919e0320c1fa9aa24ab008540d9b2991 (diff) | |
| download | libmatemixer-cb9e62b6d101cb42cdcf3ec7617616e6c4a4bb35.tar.bz2 libmatemixer-cb9e62b6d101cb42cdcf3ec7617616e6c4a4bb35.tar.xz  | |
backends: Add missing dependencies
When building the backends with slibtool they will fail with undefined
references to libmatemixer.la. This is because they use -no-undefined
which slibtool explicitly supports while GNU libtool will silently
ignore it.
Gentoo Bug: https://bugs.gentoo.org/785232
Diffstat (limited to 'backends/null')
| -rw-r--r-- | backends/null/Makefile.am | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/backends/null/Makefile.am b/backends/null/Makefile.am index f0371a7..11d4b7f 100644 --- a/backends/null/Makefile.am +++ b/backends/null/Makefile.am @@ -18,7 +18,9 @@ libmatemixer_null_la_SOURCES =                                  \  	null-backend.c                                          \  	null-backend.h -libmatemixer_null_la_LIBADD = $(GLIB_LIBS) +libmatemixer_null_la_LIBADD =                                   \ +	$(top_builddir)/libmatemixer/libmatemixer.la            \ +	$(GLIB_LIBS)  libmatemixer_null_la_LDFLAGS =                                  \  	-avoid-version                                          \  | 
