From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4498 invoked from network); 4 Sep 2000 13:57:29 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 4 Sep 2000 13:57:29 -0000 Received: (qmail 4896 invoked by alias); 4 Sep 2000 13:57:22 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 12736 Received: (qmail 4889 invoked from network); 4 Sep 2000 13:57:22 -0000 X-Envelope-Sender-Is: Andrej.Borsenkow@mow.siemens.ru (at relayer david.siemens.de) From: "Andrej Borsenkow" To: "Peter Stephenson" , "Zsh hackers list" Subject: PATCH: RE: cygwin installation problems. Date: Mon, 4 Sep 2000 17:57:18 +0400 Message-ID: <000001c01678$0a307b90$21c9ca95@mow.siemens.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: <0G0D00DQS6MV1F@la-la.cambridgesiliconradio.com> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 > > I have dynamic loading disabled on cygwin, which builds fine. However, > running install insists on making the .dll (for which I probably need a new > dllwrap anyway). So there may be a dependency wrong. Unfortunately, I > don't have time to clear everything away and start again from scratch to > check (which isn't ropey but is very slow). Seems to come from `make > install.bin'. > Sorry. But somehow it is becoming too ugly. -andrej Index: configure.in =================================================================== RCS file: /cvsroot/zsh/zsh/configure.in,v retrieving revision 1.27 diff -u -r1.27 configure.in --- configure.in 2000/09/04 10:52:02 1.27 +++ configure.in 2000/09/04 13:55:24 @@ -1463,6 +1463,8 @@ dnl dynamic loading dnl --------------- L=N +INSTLIB="install.bin-\$(L)" +UNINSTLIB="uninstall.bin-\$(L)" LINKMODS=NOLINKMODS MOD_EXPORT= MOD_IMPORT_VARIABLE= @@ -1687,6 +1689,10 @@ if $strip_libldflags && test "$zsh_cv_sys_dynamic_strip_lib" = yes; then LIBLDFLAGS="$LIBLDFLAGS -s" fi + if test "x$ac_cv_cygwin" = xyes; then + INSTLIB="install.cygwin-lib" + UNINSTLIB="uninstall.cygwin-lib" + fi else $strip_exeldflags && EXELDFLAGS="$EXELDFLAGS -s" $strip_libldflags && LIBLDFLAGS="$LIBLDFLAGS -s" @@ -1714,13 +1720,6 @@ fi 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(UNINSTLIB)dnl