From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17662 invoked by alias); 9 Sep 2011 09:47:50 -0000 Received: (qmail 17655 invoked by uid 22791); 9 Sep 2011 09:47:49 -0000 X-SWARE-Spam-Status: No, hits=-6.7 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 09 Sep 2011 09:47:32 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p899lUk5000698 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 9 Sep 2011 05:47:30 -0400 Received: from springer.wildebeest.org (ovpn-113-69.phx2.redhat.com [10.3.113.69]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p899lS6C009908 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 9 Sep 2011 05:47:29 -0400 Received: by springer.wildebeest.org (Postfix, from userid 500) id 6138C409C3; Fri, 9 Sep 2011 11:47:27 +0200 (CEST) Subject: Re: problem during "make install" at Ubuntu64. From: Mark Wielaard To: =?UTF-8?Q?=EC=B5=9C=EC=9E=AC=ED=98=81B?= Cc: "'Turgis, Frederic'" , "'Josh Stone'" , systemtap@sourceware.org In-Reply-To: <000001cc6e91$6687a260$3396e720$@choi@lge.com> References: <4E5D3AC7.8050106@redhat.com> <4E5D449B.70109@redhat.com> <4E5D6127.2070602@redhat.com> <13872098A06B02418CF379A158C0F146016301D041@dnce02.ent.ti.com> <003001cc686f$27aeafc0$770c0f40$@choi@lge.com> <13872098A06B02418CF379A158C0F146016301D586@dnce02.ent.ti.com> <000001cc6e91$6687a260$3396e720$@choi@lge.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Date: Fri, 09 Sep 2011 09:47:00 -0000 Message-ID: <1315561646.3394.12.camel@springer.wildebeest.org> Mime-Version: 1.0 Mailing-List: contact systemtap-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-owner@sourceware.org X-SW-Source: 2011-q3/txt/msg00306.txt.bz2 On Fri, 2011-09-09 at 10:40 +0900, =EC=B5=9C=EC=9E=AC=ED=98=81B wrote: > make[2]: Entering directory `/data/stapbuild/runtime/staprun' > CC staprun-staprun.o > CC staprun-staprun_funcs.o > CC staprun-ctl.o > CC staprun-common.o > CC staprun-modverify.o > modverify.c:26:18: fatal error: nspr.h: no such file or directory > compilation terminated. > make[2]: *** [staprun-modverify.o] error 1 > make[2]: Leaving directory `/data/stapbuild/runtime/staprun' > make[1]: *** [install-recursive] error 1 > make[1]: Leaving directory `/data/stapbuild' > make: *** [install] error 2 There must be a bug in our config setup. I see you don't have nspr installed in your config.log: > configure:9481: WARNING: will not build systemtap compile server, cannot = find nss/nspr headers > configure:9499: WARNING: some compile server client functionality will be= restricted, cannot find nss/nspr headers So I would assume that modverify.c wouldn't even be build because we have the following in runtime/staprun/Makefile.am: if HAVE_NSS staprun_SOURCES +=3D modverify.c ../../nsscommon.cxx ../../util.cxx staprun_CFLAGS +=3D $(nss_CFLAGS) staprun_CXXFLAGS +=3D $(nss_CFLAGS) staprun_LDADD +=3D $(nss_LIBS) endif O..., I see we have two NSS checks, one in the top-level configure.ac and one in the runtime/staprun/configure.ac, and they are slightly different. hmmmm. Could you also send your runtime/staprun/config.log file? Thanks, Mark