Browse Source

Fix shrext_cmds usage in configure.ac.

tags/v0.99.beta17
Sam Hocevar sam 15 years ago
parent
commit
80f969dd5a
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      configure.ac

+ 2
- 2
configure.ac View File

@@ -48,9 +48,9 @@ fi

AC_MSG_CHECKING(for suffix of libraries)
case "$shrext_cmds" in
.dll) LT_SUFFIX="-$LT_MAJOR$shrext_cmds" ;;
.dll) eval LT_SUFFIX="-$LT_MAJOR$shrext_cmds" ;;
"") LT_SUFFIX=".so.$LT_MAJOR" ;;
*) LT_SUFFIX="$shrext_cmds.$LT_MAJOR" ;;
*) eval LT_SUFFIX="$shrext_cmds.$LT_MAJOR" ;;
esac
AC_MSG_RESULT($LT_SUFFIX)
AC_SUBST(LT_SUFFIX)


Loading…
Cancel
Save