mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
configure: Fail when the user attempts to compile shared and static libs
There are some issues with libtool breaking the possibility to build both types of libraries in one shot. Compile libraries separately. Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
e419f63960
commit
cd20fe3f4d
1 changed files with 10 additions and 0 deletions
10
configure.in
10
configure.in
|
|
@ -71,6 +71,16 @@ AC_SUBST(LIBTOOL_VERSION_INFO)
|
|||
|
||||
test "x$prefix" = xNONE && prefix=$ac_default_prefix
|
||||
|
||||
dnl Do not build static and shared libraries together
|
||||
if test "$enable_static" = "$enable_shared" -a "$enable_static" = "yes"; then
|
||||
cat <<EOF
|
||||
Please, do not try to compile static and shared libraries together.
|
||||
See INSTALL file for more details (do not use --enable-shared=yes with
|
||||
--enable-static=yes).
|
||||
EOF
|
||||
exit 1
|
||||
fi
|
||||
|
||||
dnl ALSA configuration directory
|
||||
AC_ARG_WITH(configdir,
|
||||
AS_HELP_STRING([--with-configdir=dir],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue