This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository legacy-imlib2_loaders.
View the commit online.
commit ba319f6e17469e89513d3cde62578e4ef20ee0a9
Author: Kim Woelders <k...@woelders.dk>
AuthorDate: Sun Apr 6 19:03:24 2025 +0200
autofoo: Track some changes from imlib2
---
src/modules/loaders/Makefile.am | 21 +++++++++++----------
1 file changed, 11 insertions(+), 10 deletions(-)
diff --git a/src/modules/loaders/Makefile.am b/src/modules/loaders/Makefile.am
index 7f229e1..6377153 100644
--- a/src/modules/loaders/Makefile.am
+++ b/src/modules/loaders/Makefile.am
@@ -4,24 +4,25 @@ AM_CFLAGS = $(CFLAGS_WARNINGS) $(CFLAGS_VISIBILITY)
pkgdir = $(libdir)/imlib2/loaders
+pkg_LTLIBRARIES =
if BUILD_EET_LOADER
-EET_L = eet.la
+pkg_LTLIBRARIES += eet.la
endif
if BUILD_XCF_LOADER
-XCF_L = xcf.la
+pkg_LTLIBRARIES += xcf.la
endif
-pkg_LTLIBRARIES = \
-$(EET_L) \
-$(XCF_L)
+#if ENABLE_RTLD_LOCAL_SUPPORT
+#IMLIB2_LIBS = $(top_builddir)/src/lib/libImlib2.la
+#endif
+
+LIBTOOLFLAGS = --tag=disable-static
eet_la_SOURCES = loader_eet.c
-eet_la_CPPFLAGS = @EET_CFLAGS@
+eet_la_CPPFLAGS = $(EET_CFLAGS)
eet_la_LDFLAGS = -module -avoid-version
-eet_la_LIBADD = @EET_LIBS@
-eet_la_LIBTOOLFLAGS = --tag=disable-static
+eet_la_LIBADD = $(IMLIB2_LIBS) $(EET_LIBS)
xcf_la_SOURCES = loader_xcf.c loader_xcf_pixelfuncs.c loader_xcf.h
xcf_la_LDFLAGS = -module -avoid-version
-xcf_la_LIBADD =
-xcf_la_LIBTOOLFLAGS = --tag=disable-static
+xcf_la_LIBADD = $(IMLIB2_LIBS)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.