浏览代码

Fix shrext_cmds usage in configure.ac.

tags/v0.99.beta17
Sam Hocevar sam 15 年前
父节点
当前提交
80f969dd5a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      configure.ac

+ 2
- 2
configure.ac 查看文件

@@ -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)


正在加载...
取消
保存