Fix setting of SHLIB_VERSION_ARG for MinGW.

This commit is contained in:
Erik de Castro Lopo 2006-03-08 08:05:56 +00:00
parent c0622ed1b3
commit 33247cd906
3 changed files with 13 additions and 2 deletions

View File

@ -1,3 +1,11 @@
2006-03-08 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* Makefile.am
Add Mingw-make-dist.sh to the extra dist files.
* configure.ac
Fix setting SHLIB_VERSION_ARG for MinGW.
2006-03-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h
@ -9,7 +17,7 @@
some places and a size_t in other places.
* src/sd2.c
Add a workaround for situations where OSX seems to add an extra 0x53 bytes
Add a workaround for situations where OSX seems to add an extra 0x52 bytes
to the start of the resource fork.
2006-02-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>

View File

@ -3,7 +3,7 @@
SUBDIRS = man doc Win32 Octave src examples regtest tests
DIST_SUBDIRS = $(SUBDIRS)
EXTRA_DIST = reconfigure.mk acinclude.m4 libsndfile.spec.in \
sndfile.pc.in
sndfile.pc.in Mingw-make-dist.sh
pkgconfigdir = $(libdir)/pkgconfig

View File

@ -441,6 +441,9 @@ if test x$ac_cv_c_compiler_gnu = xyes ; then
linux*)
SHLIB_VERSION_ARG="-Wl,--version-script=\$(srcdir)/Symbols.linux"
;;
mingw*)
SHLIB_VERSION_ARG="-Wl,\$(srcdir)/libsndfile.def"
;;
*)
;;
esac