mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 15:36:17 +01:00
Fix gio tests makefile for W32
While compiling, libtool will say that undefined symbols are not allowed, and will refuse to make you a dll. This is only one line, easy to miss. And it doesn't prevent `make' from completing successfully. The code this patch adds is from other Makefile.am files that use $(no_undefined). It's absence in gio is, most likely, an oversight. Fixes #692058
This commit is contained in:
parent
59372663f2
commit
b1e02c7e32
@ -154,6 +154,10 @@ if OS_WIN32
|
|||||||
TEST_PROGS += win32-streams
|
TEST_PROGS += win32-streams
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if PLATFORM_WIN32
|
||||||
|
no_undefined = -no-undefined
|
||||||
|
endif
|
||||||
|
|
||||||
actions_SOURCES = actions.c gdbus-sessionbus.c gdbus-sessionbus.h
|
actions_SOURCES = actions.c gdbus-sessionbus.c gdbus-sessionbus.h
|
||||||
|
|
||||||
unix_streams_LDADD = $(LDADD) \
|
unix_streams_LDADD = $(LDADD) \
|
||||||
|
Loading…
Reference in New Issue
Block a user