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 12352DD29 for ; Wed, 12 Sep 2012 11:27:09 +0000 (UTC) Received: (qmail 75090 invoked by uid 500); 12 Sep 2012 11:27:07 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 75055 invoked by uid 500); 12 Sep 2012 11:27:06 -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 75040 invoked by uid 99); 12 Sep 2012 11:27:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Sep 2012 11:27:06 +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 (athena.apache.org: local policy) Received: from [209.85.216.45] (HELO mail-qa0-f45.google.com) (209.85.216.45) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Sep 2012 11:27:01 +0000 Received: by qadc10 with SMTP id c10so2441202qad.11 for ; Wed, 12 Sep 2012 04:26:39 -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:content-transfer-encoding :x-gm-message-state; bh=m/36OB3h/vuLVo3K9cmSk0xp/gkvDr3UUcgpDtz9H/U=; b=jTK7uz7GynDmczUCu3TpeDiYcuR9w4LDJgYx5axLuv1bjt5jzPxVcxHFl3u1A4O2/j oa40GfqUJPwMdzeAydEOeIIZi6Vl0wJJ+C17GlW3ar4g7HKTH0N4ENl6EXDJkrrtjJ/G M9fP9ydUDnmNhxNB0tD4lWQEXbwWefDwE90uUp11qSP7GsQ2H7842Lvca5cmwyUXO5Sh Onb4Cp/aqiVNES5MkoX2INxPNe7NEHVlkIWmi1/nVC/mLDl1jgmLI+NRlSbxoHhZ+QEE yzaZI/fWzgOCzhmmng14jky8xpy/eDE8nZtTkLwNnz0EFNkA1MMGcNeunUIkFUeQQPSy Sldw== MIME-Version: 1.0 Received: by 10.224.214.67 with SMTP id gz3mr23933165qab.70.1347449199112; Wed, 12 Sep 2012 04:26:39 -0700 (PDT) Received: by 10.49.86.74 with HTTP; Wed, 12 Sep 2012 04:26:39 -0700 (PDT) X-Originating-IP: [84.112.19.176] In-Reply-To: References: Date: Wed, 12 Sep 2012 13:26:39 +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=windows-1252 Content-Transfer-Encoding: quoted-printable X-Gm-Message-State: ALoCoQlpEZC3hvMVgPdLcEya1UtqHmGysjVzTPdgfCgSAu84y+09S9LVM1Vl09vQ/UG5x+lFvl2c X-Virus-Checked: Checked by ClamAV on apache.org On 12 September 2012 13:15, Daniel Gonzalez wrote: > Hi, > > I am using the git repo (git://github.com/apache/couchdb.git) for this > install. > I have selected tag 1.2.0. I do: > > ./bootstrap > > And then: > > $ ./configure > checking for a BSD-compatible install... /usr/bin/install -c > checking whether build environment is sane... yes > checking for a thread-safe mkdir -p... /bin/mkdir -p > checking for gawk... no > checking for mawk... mawk > checking whether make sets $(MAKE)... yes > checking for gcc... gcc > checking for C compiler default output file name... a.out > checking whether the C compiler works... yes > checking whether we are cross compiling... no > checking for suffix of executables... > checking for suffix of object files... o > checking whether we are using the GNU C compiler... yes > checking whether gcc accepts -g... yes > checking for gcc option to accept ISO C89... none needed > checking for style of include used by make... GNU > checking dependency style of gcc... gcc3 > ./configure: line 3698: syntax error near unexpected token `win32-dll' > ./configure: line 3698: `LT_INIT(win32-dll)' > > What does this error mean? Has somebody been able to install CouchDB 1.2.= 0 > in Ubuntu 8.04 Server? > > Thanks, > Daniel Hi Daniel, Most likely that your version of autotools is older than when LT_INIT was supported. You can safely remove that LT_INIT line & retry, or alternatively the release .tgz may work better for you than the git tag checkout. FWIW I think we released 1.2.0 using autoconf 2.69 or thereabouts, and likely a close relative of libtool as well. autoconf -V yields 2.69 on my mac. Given ubuntu 8.04 LTS ended last year, I don't see a need for fixing this unless we could ensure LT_INIT(=85) ran only for windows configure/builds. A+ Dave