diff options
| author | Gary Scavone <gary@music.mcgill.ca> | 2011-02-17 21:26:23 +0000 |
|---|---|---|
| committer | Stephen Sinclair <sinclair@music.mcgill.ca> | 2013-10-11 01:38:27 +0200 |
| commit | 24a98a1971301e582dc56ef2c6ac94c342b674dd (patch) | |
| tree | 8b9aa705b0fd522cd0231f79f25a6cbcde8f06b2 /configure.ac | |
| parent | 3a4fb410cf0be7a7f4fc3777a15b104d8091f3b5 (diff) | |
Various changes in preparation for release 4.0.8
including fix of MinGW ASIO compile problem (iasiothiscallresolver),
OS-X problem handling device names in some languages (CFString
conversion), small change to OS-X MUTEX lock location to avoid
lockups, and correction to documentation regarding 24-bit data (should
be lower 3 bytes, not upper 3 bytes).
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 616ad54..422d257 100644 --- a/configure.ac +++ b/configure.ac @@ -44,9 +44,20 @@ fi CXXFLAGS="$CXXFLAGS $cxxflag" +AC_CANONICAL_HOST + +AC_SUBST( sharedlib, ["librtaudio.so"] ) +AC_SUBST( sharedname, ["librtaudio.so.\$(RELEASE)"] ) +AC_SUBST( libflags, ["-shared -Wl,-soname,\$(SHAREDLIB).\$(MAJOR) -o \$(SHAREDLIB).\$(RELEASE)"] ) +case $host in + *-apple*) + AC_SUBST( sharedlib, ["librtaudio.dylib"] ) + AC_SUBST( sharedname, ["librtaudio.\$(RELEASE).dylib"] ) + AC_SUBST( libflags, ["-dynamiclib -o librtaudio.\$(RELEASE).dylib"] ) +esac + # Checks for package options and external software AC_SUBST( api, [""] ) -AC_CANONICAL_HOST AC_MSG_CHECKING(for audio API) case $host in *-*-netbsd*) |
