From dev-return-2606-apmail-apr-dev-archive=apr.apache.org@apr.apache.org Mon Jun 11 20:49:57 2001 Return-Path: Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 88318 invoked by uid 500); 11 Jun 2001 20:49:23 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 88292 invoked from network); 11 Jun 2001 20:49:10 -0000 Date: Mon, 11 Jun 2001 13:47:39 -0700 From: "Roy T. Fielding" To: Brian Havard Cc: "dev@apr.apache.org" Subject: Re: cvs commit: apr-util/uri Makefile.in Message-ID: <20010611134739.E6833@waka.ebuilt.net> Mail-Followup-To: "Roy T. Fielding" , Brian Havard , "dev@apr.apache.org" References: <20010605203741.O21860@ebuilt.com> <200106060403.f5643fC21530@silk.apana.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.13-current-20010115i In-Reply-To: <200106060403.f5643fC21530@silk.apana.org.au>; from brianh@kheldar.apana.org.au on Wed, Jun 06, 2001 at 02:03:38PM +1000 X-AntiVirus: scanned for viruses by AMaViS 0.2.1-pre3 (http://amavis.org/) X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N > >> -gen_uri_delims_OBJECTS = gen_uri_delims.o > >> +gen_uri_delims_OBJECTS = gen_uri_delims.lo > >> gen_uri_delims: $(gen_uri_delims_OBJECTS) > >> $(LINK) $(EXTRA_LDFLAGS) $(gen_uri_delims_OBJECTS) $(EXTRA_LIBS) > > > >Roy initially pointed out that we shouldn't need libtool to compile > >gen_uri_delims - which is why it was gen_uri_delims.o. Is this not > >the case on OS/2? > > No, it's not. If linking with libtool, objects must be compiled with > libtool too. This is the case everywhere else in the build. That just means the symbols are defined wrong -- we need separate ones for regular linking and libtool linking. ....Roy