unbreak installation on Darwin, SO_LINK was missing

This commit is contained in:
Alexandre Ratchov 2017-06-04 11:59:06 +02:00
parent f8436a7075
commit 0fe173a94b
2 changed files with 4 additions and 2 deletions

1
configure vendored
View File

@ -89,6 +89,7 @@ case `uname` in
Darwin)
rmidi=no
so="libsndio.\${MAJ}.\${MIN}.dylib"
so_link="libsndio.dylib"
defs='-DHAVE_ARC4RANDOM -DHAVE_ISSETUGID \\\
-DHAVE_STRLCAT -DHAVE_STRLCPY'
esac

View File

@ -47,7 +47,8 @@ MIN = 1
SO = @so@
SO_LINK = @so_link@
all: ${SO}
all: ${SO} ${SO_LINK}
install:
mkdir -p ${DESTDIR}${INCLUDE_DIR}
@ -90,7 +91,7 @@ uninstall:
cd ${DESTDIR}${MAN7_DIR} && rm -f ${MAN7}
clean:
rm -f -- *.so *.so.* *.o
rm -f -- ${SO} ${SO_LINK} *.o
# ---------------------------------------------------------- dependencies ---