this bug's URL: http://intevation.de/rt/webrt?serial_num=739
-------------------------------------------------------------------------
Your mail to 'grass5' with the subject
[bug #738] (grass) Your message to grass5 awaits moderator
approval
Is being held until the list moderator can review it for approval.
The reason it is being held:
Post by non-member to a members-only list
Either the message will get posted to the list, or you will receive
notification of the moderator's decision.
--- Headers Follow ---
From grass5-admin@geog.uni-hannover.de Wed May 23 09:19:33 2001
Return-Path: <grass5-admin@geog.uni-hannover.de>
Delivered-To: grass-bugs@mailman.intevation.de
Received: from omecihuatl.rz.uni-osnabrueck.de (omecihuatl.rz.Uni-Osnabrueck.DE [131.173.17.35])
by mailman.intevation.de (Postfix) with ESMTP id E64FE1393F
for <grass-bugs@intevation.de>; Wed, 23 May 2001 09:19:32 +0200 (CEST)
Received: from mgate2.uni-hannover.de (mgate2.uni-hannover.de [130.75.2.5])
by omecihuatl.rz.uni-osnabrueck.de (8.11.1/8.11.1) with ESMTP id f4N7Ic121244
for <grass-bugs@intevation.de>; Wed, 23 May 2001 09:18:38 +0200
Received: from hgeo02.geog.uni-hannover.de by mgate2.uni-hannover.de
with LocalSMTP (PP) with SMTP; Wed, 23 May 2001 09:14:53 +0200
Received: from hgeo02.geog.uni-hannover.de
by hgeo02.geog.uni-hannover.de (SMI-8.6/SMI-SVR4) id IAA08559;
Wed, 23 May 2001 08:49:07 +0100
Date: Wed, 23 May 2001 08:49:07 +0100
Message-Id: <200105230749.IAA08559@hgeo02.geog.uni-hannover.de>
Subject: Your message to grass5 awaits moderator approval
From: grass5-admin@geog.uni-hannover.de
To: grass-bugs@intevation.de
X-Ack: no
Sender: grass5-admin@geog.uni-hannover.de
Errors-To: grass5-admin@geog.uni-hannover.de
X-BeenThere: grass5@geog.uni-hannover.de
X-Mailman-Version: 2.0.5
Precedence: bulk
List-Help: <mailto:grass5-request@geog.uni-hannover.de?subject=help>
List-Post: <mailto:grass5@geog.uni-hannover.de>
List-Subscribe: <http://www.geog.uni-hannover.de/mailman/listinfo/grass5>,
<mailto:grass5-request@geog.uni-hannover.de?subject=subscribe>
List-Id: GRASS 5 Developers mailing list <grass5.geog.uni-hannover.de>
List-Unsubscribe: <http://www.geog.uni-hannover.de/mailman/listinfo/grass5>,
<mailto:grass5-request@geog.uni-hannover.de?subject=unsubscribe>
List-Archive: <http://www.geog.uni-hannover.de/pipermail/grass5/>
-------------------------------------------- Managed by Request Tracker
From neteler Wed May 23 09:35:54 2001
Return-Path: <neteler>
Received: by hgeo02.geog.uni-hannover.de (SMI-8.6/SMI-SVR4)
id JAA08950; Wed, 23 May 2001 09:35:54 +0100
Date: Wed, 23 May 2001 09:35:54 +0100
From: Markus Neteler <neteler@geog.uni-hannover.de>
To: grass5@geog.uni-hannover.de
Subject: Re: [GRASS5] creating binaries
Message-ID: <20010523093554.B8863@hgeo02.geog.uni-hannover.de>
Mail-Followup-To: grass5@geog.uni-hannover.de
References: <E152H8R-0001UU-00@paf-linux.ulb.ac.be>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
In-Reply-To: <E152H8R-0001UU-00@paf-linux.ulb.ac.be>; from mlennert@ulb.ac.be on Tue, May 22, 2001 at 08:43:58PM +0200
Sender: grass5-admin@geog.uni-hannover.de
Errors-To: grass5-admin@geog.uni-hannover.de
X-BeenThere: grass5@geog.uni-hannover.de
X-Mailman-Version: 2.0.5
Precedence: bulk
List-Help: <mailto:grass5-request@geog.uni-hannover.de?subject=help>
List-Post: <mailto:grass5@geog.uni-hannover.de>
List-Subscribe: <http://www.geog.uni-hannover.de/mailman/listinfo/grass5>,
<mailto:grass5-request@geog.uni-hannover.de?subject=subscribe>
List-Id: GRASS 5 Developers mailing list <grass5.geog.uni-hannover.de>
List-Unsubscribe: <http://www.geog.uni-hannover.de/mailman/listinfo/grass5>,
<mailto:grass5-request@geog.uni-hannover.de?subject=unsubscribe>
List-Archive: <http://www.geog.uni-hannover.de/pipermail/grass5/>
Status: O
Content-Length: 1354
Lines: 55
Hi Moritz,
hi all binary compiling people,
On Tue, May 22, 2001 at 08:43:58PM +0200, mlennert@ulb.ac.be wrote:
Hello,
I volunteered in trying to create a Linux binary package, but I'll need some
help.
In the release_rules.txt, it says:o remove the debugging flags, set the -O2 flag in
src/CMD/head/head.inCould someone tell me which are the debugging flags, and where to set the
-O2 flag ?If there's someone more competent than me willing to make the binaries, tell
me...
that's a good question - all those compiling GRASS should know that:
From the INSTALL:
"CODE OPTIMIZATION
If you would like to set compiler optimisations, for a possibly faster
binary, type (don't enter a ";" anywhere):
CFLAGS=-O ./configure
or,
setenv CFLAGS -O
./configure
whichever works on your shell. Use -O2 instead of -O if your compiler
supports this (note: O is the letter, not zero). Using "gcc" compiler, you
can also specify processor specific flags (examples):
CFLAGS="-mcpu=k6 -O2" # AMD K6 processor
CFLAGS="-mcpu=pentium" # Intel Pentium processor
CFLAGS="-mcpu=pentiumpro" # Intel PentiumPro processor
To find out optional CFLAGS for your platform, enter:
gcc -dumpspecs
"
So you can use
CFLAGS=-O2 ./configure
make
make install
Hope this helps,
Markus
From neteler Wed May 23 09:52:07 2001
Return-Path: <neteler>
Received: by hgeo02.geog.uni-hannover.de (SMI-8.6/SMI-SVR4)
id JAA09075; Wed, 23 May 2001 09:52:07 +0100
Date: Wed, 23 May 2001 09:52:06 +0100
From: Markus Neteler <neteler@geog.uni-hannover.de>
To: andy agena <andya@mac.com>
Cc: grass5 developers list <grass5@geog.uni-hannover.de>
Subject: Re: [GRASS5] GRASS 5.0.0pre1 tagged and sources released!
Message-ID: <20010523095206.E8863@hgeo02.geog.uni-hannover.de>
Mail-Followup-To: andy agena <andya@mac.com>,
grass5 developers list <grass5@geog.uni-hannover.de>
References: <20010520191715.A4751@hgeo02.geog.uni-hannover.de> <200105221049.DAA02980@smtpout.mac.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
In-Reply-To: <200105221049.DAA02980@smtpout.mac.com>; from andya@mac.com on Tue, May 22, 2001 at 05:50:51AM -0500
Sender: grass5-admin@geog.uni-hannover.de
Errors-To: grass5-admin@geog.uni-hannover.de
X-BeenThere: grass5@geog.uni-hannover.de
X-Mailman-Version: 2.0.5
Precedence: bulk
List-Help: <mailto:grass5-request@geog.uni-hannover.de?subject=help>
List-Post: <mailto:grass5@geog.uni-hannover.de>
List-Subscribe: <http://www.geog.uni-hannover.de/mailman/listinfo/grass5>,
<mailto:grass5-request@geog.uni-hannover.de?subject=subscribe>
List-Id: GRASS 5 Developers mailing list <grass5.geog.uni-hannover.de>
List-Unsubscribe: <http://www.geog.uni-hannover.de/mailman/listinfo/grass5>,
<mailto:grass5-request@geog.uni-hannover.de?subject=unsubscribe>
List-Archive: <http://www.geog.uni-hannover.de/pipermail/grass5/>
Status: O
Content-Length: 860
Lines: 22
Hi Andy
(cc to the list)
On Tue, May 22, 2001 at 05:50:51AM -0500, andy agena wrote:
Hello everyone:
I have the same problems with the 20_may as I did with the CVS a few weeks
ago on OS X / Darwin. I looked through the configure file and I'm not sure
why the "ld -s" check fails, but it does, and I suspect this is the main problem.
Could someone explain what this is looking for? Is there some way I can
specify this during configure (e.g. --with dynlibs=...)? (Specifying tiff
and jpeg worked out, thought
It seems that this error is the key to the large Mac OSX binaries (> 100MB).
If "ld -s" check wouldn't fail, the binaries could get common size.
I have not much ideas about this, but maybe another one here?
On a somewhat related note, is any one building binaries for Solaris 8?
Up to now no volunteer...
Markus