From user-return-22098-apmail-couchdb-user-archive=couchdb.apache.org@couchdb.apache.org Wed Sep 12 19:41:46 2012 Return-Path: X-Original-To: apmail-couchdb-user-archive@www.apache.org Delivered-To: apmail-couchdb-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 09F63DD8F for ; Wed, 12 Sep 2012 19:41:46 +0000 (UTC) Received: (qmail 45275 invoked by uid 500); 12 Sep 2012 19:41:44 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 45173 invoked by uid 500); 12 Sep 2012 19:41:44 -0000 Mailing-List: contact user-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@couchdb.apache.org Delivered-To: mailing list user@couchdb.apache.org Received: (qmail 45165 invoked by uid 99); 12 Sep 2012 19:41:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Sep 2012 19:41:44 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=FSL_RCVD_USER,RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [209.85.216.180] (HELO mail-qc0-f180.google.com) (209.85.216.180) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Sep 2012 19:41:37 +0000 Received: by qcmv28 with SMTP id v28so1377903qcm.11 for ; Wed, 12 Sep 2012 12:41:15 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-originating-ip:in-reply-to:references:date :message-id:subject:from:to:content-type:x-gm-message-state; bh=uhhcwWNOEbWVLg9UDNPWXRYAV9ttaPhiMx6PtFuT754=; b=KKavrlB5e2aEw7+21szFK8Pxk2+NUlnkhNXBr1UotWkYrc9woNKvfkkXkHoFyhIpAD jgD05hiBv3LuJ1zaCZ7QXHXlX6lkycesu2FcqNTUFt+qjy47IWhwZ9l3iDWhbAsZ+nLh oHzqPsoNHW3MUEyAuhl7QR3riOtBqmBS/cg4YqdMMI0ltPwDxhuWZ/0LQdABVKqAOFfu NBxSH1945TN5eqkWpyXNSUzt/G3EGWU3gAiS04N3DOuK46392gRGmUMA+k7xox+8ghDD ttnRMDEJ7chC9Bpul0wdckGCBjZDMJ8/jwckeCeev84h8H60OsKTmiYjVAWpbcKZi1xB 3vQg== MIME-Version: 1.0 Received: by 10.229.137.20 with SMTP id u20mr7109469qct.84.1347478874961; Wed, 12 Sep 2012 12:41:14 -0700 (PDT) Received: by 10.49.86.74 with HTTP; Wed, 12 Sep 2012 12:41:14 -0700 (PDT) X-Originating-IP: [84.112.19.176] In-Reply-To: References: Date: Wed, 12 Sep 2012 21:41:14 +0200 Message-ID: Subject: Re: Problems installing CouchDB 1.2.0 in Ubuntu 8.04 Server (HardyHeron) From: Dave Cottlehuber To: user@couchdb.apache.org Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQnzGPpQrANq6xz1KZruYmvL6SpmApyz0ZvoAxiLz3xDAdPWDMxjSegzuxNoQceas7Mjm9zK On 12 September 2012 14:40, Daniel Gonzalez wrote: > Thanks Dave, > > That worked fine. I am now performing the following processing before > calling configure: > > if [ "$UBUNTU_VERSION" == "hardy" ] ; then > # Problems in Ubuntu 8.04 Hardy Heron > sed -e 's/^LT_INIT/#LT_INIT/' configure > xxx > mv xxx configure > chmod 755 configure > fi > > And it is installing fine. I get a bunch (1467 times!) of strange errors > while building ("[couchjs] reserved slot index out of range"), I think > while doing "test/etap/072-cleanup", but it does not seem to affect. I bet it does effect something. This was reported on mongodb lists a while back; > I've seen this happen before when the headers used to compile don't > match the library. > You should make sure there isn't a conflict between the version of > spidermonkey you build yourself, and your system version. If you can, build using this specific version of SM[1] and use the various JS-* flags in configure to force detection & usage of that. You're better off if you can remove any XULrunner or js-devel packages lurking around, but that's not always an option. [1]: https://developer.mozilla.org/en-US/docs/SpiderMonkey/1.8.5 A+ Dave