summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2013-02-10 22:47:33 +0100
committerGravatar Martin Szulecki2013-02-10 22:47:33 +0100
commit507f3f8939f23f5616f303782a455659eee28355 (patch)
tree5b2b9276da5ef7ab11bede643c1fe8c7e0967125
parent7d20b8b632da36d2dfcfc6ca75f3f4766b933829 (diff)
downloadlibvformat-507f3f8939f23f5616f303782a455659eee28355.tar.gz
libvformat-507f3f8939f23f5616f303782a455659eee28355.tar.bz2
Avoid library versioning for win32
-rw-r--r--src/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 33170f2..fe52994 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -7,8 +7,8 @@ libvformat_la_SOURCES = vf_access.c vf_malloc.c vf_strings.c vf_access_wrapper
EXTRA_DIST = *.h
-libvformat_la_LDFLAGS = -version-info $(LIBVFORMAT_SO_VERSION)
+libvformat_la_LDFLAGS = -version-info $(LIBVFORMAT_SO_VERSION) -no-undefined
if WIN32
- libvformat_la_LDFLAGS += -no-undefined
+ libvformat_la_LDFLAGS += -avoid-version
endif