mirror of
https://gitee.com/openharmony/third_party_libsnd
synced 2024-11-23 09:59:54 +00:00
Fix setting of SHLIB_VERSION_ARG for MinGW.
This commit is contained in:
parent
c0622ed1b3
commit
33247cd906
10
ChangeLog
10
ChangeLog
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user