From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9426 invoked from network); 20 Sep 2001 16:09:18 -0000 Received: from sunsite.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 20 Sep 2001 16:09:18 -0000 Received: (qmail 7619 invoked by alias); 20 Sep 2001 16:08:50 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 4268 Received: (qmail 7605 invoked from network); 20 Sep 2001 16:08:49 -0000 X-Authentication-Warning: greux.loria.fr: lefevre set sender to vincent@vinc17.org using -f Date: Thu, 20 Sep 2001 18:08:39 +0200 From: Vincent Lefevre To: zsh-users@sunsite.dk Subject: Re: Broken configure? Message-ID: <20010920180839.A13791@greux.loria.fr> Mail-Followup-To: zsh-users@sunsite.dk References: <20010919145317.A8696@greux.loria.fr> <20010919170045.A9983@greux.loria.fr> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="2fHTh5uZTiUOsy+g" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20010919170045.A9983@greux.loria.fr> User-Agent: Mutt/1.3.22.1i X-Mailer-Info: http://www.vinc17.org/mutt_eng.html --2fHTh5uZTiUOsy+g Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit On Wed, Sep 19, 2001 at 17:00:45 +0200, Vincent Lefevre wrote: > I've added some echo's in configure. Under Solaris: > > ***** LDFLAGS 12: -L/users/spaces/lefevre/alpha-osf1/lib > checking for working RTLD_GLOBAL... yes > ***** LDFLAGS 13: > > This is because of the line > > LDFLAGS=$save_ldflags > > Note that "save_ldflags" isn't set before. Something wrong? The attached patch solves this problem, and zsh now correctly works under Solaris. But under OSF, I still get the zsh: can't find termcap info for rxvt error. This seems to mean that zsh hasn't been linked to the version of ncurses I've installed in my $HOME. zsh configuration ----------------- zsh version : 4.0.2 host operating system : alphaev6-dec-osf4.0f source code location : . compiler : gcc preprocessor flags : -I/users/spaces/lefevre/include executable compiler flags : -Wall -Wno-implicit -Wmissing-prototypes -O2 module compiler flags : -Wall -Wno-implicit -Wmissing-prototypes -O2 -fPIC executable linker flags : -L/users/spaces/lefevre/alpha-osf1/lib -L/users/spaces/lefevre/lib module linker flags : -L/users/spaces/lefevre/alpha-osf1/lib -L/users/spaces/lefevre/lib -shared library flags : -lcurses -lm -lc installation basename : zsh binary install path : /users/spaces/lefevre/alpha-osf1/bin man page install path : /users/spaces/lefevre/man info install path : /users/spaces/lefevre/info functions install path : /users/spaces/lefevre/share/zsh/4.0.2/functions See config.modules for installed modules and functions. greux:~> cd /users/spaces/lefevre/alpha-osf1/lib; ll *curses* <18:07:14 lrwxr-xr-x 1 lefevre spaces 12 Sep 19 15:12 libcurses.a -> libncurses.a -rwxr-xr-x 1 lefevre spaces 583844 Sep 19 15:12 libncurses++.a* -rw-r--r-- 1 lefevre spaces 988740 Sep 19 15:12 libncurses.a -rw-r--r-- 1 lefevre spaces 3764158 Sep 19 15:12 libncurses_g.a -- Vincent Lefèvre - Web: - 100% validated HTML - Acorn Risc PC, Yellow Pig 17, Championnat International des Jeux Mathématiques et Logiques, TETRHEX, etc. Work: CR INRIA - computer arithmetic / SPACES project at LORIA --2fHTh5uZTiUOsy+g Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=zsh-configure-patch --- configure.old Tue Jun 26 12:09:04 2001 +++ configure Thu Sep 20 16:48:22 2001 @@ -7459,7 +7459,6 @@ rm -fr conftest* fi - LDFLAGS=$save_ldflags else zsh_cv_sys_dynamic_rtld_global=no fi --2fHTh5uZTiUOsy+g--