aboutsummaryrefslogtreecommitdiffstats
path: root/src/vty
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2013-03-03 10:07:16 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-03-03 10:10:07 +0100
commit45cdaa095a0e2fe9558de682e1c12229dfab9adc (patch)
tree493306deac8b645b8af85fba8d5e099aa9467721 /src/vty
parented8170ac676a0a59df39f9c73ec84996fc222145 (diff)
cygwin: Link many libraries with -no-undefined to create a dll
Only the Gb library relies on having undefined references to a symbol that needs to be provided by the host application. For all other libraries we can link with -no-undefined.
Diffstat (limited to 'src/vty')
-rw-r--r--src/vty/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vty/Makefile.am b/src/vty/Makefile.am
index 76d7f271..a6cfd6f7 100644
--- a/src/vty/Makefile.am
+++ b/src/vty/Makefile.am
@@ -9,6 +9,6 @@ lib_LTLIBRARIES = libosmovty.la
libosmovty_la_SOURCES = buffer.c command.c vty.c vector.c utils.c \
telnet_interface.c logging_vty.c
-libosmovty_la_LDFLAGS = -version-info $(LIBVERSION)
+libosmovty_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined
libosmovty_la_LIBADD = $(top_builddir)/src/libosmocore.la
endif