mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-08 12:01:21 +02:00
12736: fix `make install' dependency for Cygwin static build
This commit is contained in:
parent
372e84dc5b
commit
f9b7929289
2 changed files with 11 additions and 7 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2000-09-04 Andrej Borsenkow <Andrej.Borsenkow@mow.siemens.ru>
|
||||||
|
|
||||||
|
* 12736: configure.in: Fix `make install' dependency
|
||||||
|
for Cygwin static build
|
||||||
|
|
||||||
2000-09-04 Peter Stephenson <pws@csr.com>
|
2000-09-04 Peter Stephenson <pws@csr.com>
|
||||||
|
|
||||||
* Config/version.mk: 3.1.9-dev-6
|
* Config/version.mk: 3.1.9-dev-6
|
||||||
|
|
13
configure.in
13
configure.in
|
@ -1463,6 +1463,8 @@ dnl ---------------
|
||||||
dnl dynamic loading
|
dnl dynamic loading
|
||||||
dnl ---------------
|
dnl ---------------
|
||||||
L=N
|
L=N
|
||||||
|
INSTLIB="install.bin-\$(L)"
|
||||||
|
UNINSTLIB="uninstall.bin-\$(L)"
|
||||||
LINKMODS=NOLINKMODS
|
LINKMODS=NOLINKMODS
|
||||||
MOD_EXPORT=
|
MOD_EXPORT=
|
||||||
MOD_IMPORT_VARIABLE=
|
MOD_IMPORT_VARIABLE=
|
||||||
|
@ -1687,6 +1689,10 @@ if test "x$dynamic" = xyes; then
|
||||||
if $strip_libldflags && test "$zsh_cv_sys_dynamic_strip_lib" = yes; then
|
if $strip_libldflags && test "$zsh_cv_sys_dynamic_strip_lib" = yes; then
|
||||||
LIBLDFLAGS="$LIBLDFLAGS -s"
|
LIBLDFLAGS="$LIBLDFLAGS -s"
|
||||||
fi
|
fi
|
||||||
|
if test "x$ac_cv_cygwin" = xyes; then
|
||||||
|
INSTLIB="install.cygwin-lib"
|
||||||
|
UNINSTLIB="uninstall.cygwin-lib"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
$strip_exeldflags && EXELDFLAGS="$EXELDFLAGS -s"
|
$strip_exeldflags && EXELDFLAGS="$EXELDFLAGS -s"
|
||||||
$strip_libldflags && LIBLDFLAGS="$LIBLDFLAGS -s"
|
$strip_libldflags && LIBLDFLAGS="$LIBLDFLAGS -s"
|
||||||
|
@ -1714,13 +1720,6 @@ else
|
||||||
fi
|
fi
|
||||||
AC_SUBST(SHORTBOOTNAMES)
|
AC_SUBST(SHORTBOOTNAMES)
|
||||||
|
|
||||||
if test "x$ac_cv_cygwin" = xyes; then
|
|
||||||
INSTLIB="install.cygwin-lib"
|
|
||||||
UNINSTLIB="uninstall.cygwin-lib"
|
|
||||||
else
|
|
||||||
INSTLIB="install.bin-\$(L)"
|
|
||||||
UNINSTLIB="uninstall.bin-\$(L)"
|
|
||||||
fi
|
|
||||||
AC_SUBST(INSTLIB)dnl
|
AC_SUBST(INSTLIB)dnl
|
||||||
AC_SUBST(UNINSTLIB)dnl
|
AC_SUBST(UNINSTLIB)dnl
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue