Explorar el Código

Fix shrext_cmds usage in configure.ac.

tags/v0.99.beta17
Sam Hocevar sam hace 15 años
padre
commit
80f969dd5a
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      configure.ac

+ 2
- 2
configure.ac Ver fichero

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


Cargando…
Cancelar
Guardar