Received: (from majordom@localhost) by hyperreal.com (8.8.5/8.8.5) id EAA05724; Wed, 21 May 1997 04:28:45 -0700 (PDT) Received: from mail1.bellglobal.com (mail1.bellglobal.com [204.101.251.200]) by hyperreal.com (8.8.5/8.8.5) with ESMTP id EAA05717 for ; Wed, 21 May 1997 04:28:41 -0700 (PDT) Received: from krone.lerdorf.on.ca ([207.164.141.2]) by mail1.bellglobal.com (Netscape Mail Server v2.02) with SMTP id AAA28331 for ; Wed, 21 May 1997 07:28:10 -0400 Date: Wed, 21 May 1997 07:27:29 -0400 () From: rasmus@lerdorf.on.ca (Rasmus Lerdorf) To: new-httpd@apache.org Subject: Makefile.tmpl change, please. Message-ID: X-X-Sender: rasmus@mail1.bellglobal.com MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: new-httpd-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org I Makefile.tmpl, does anybody object to switching the order of $(REGLIB) and $(LIBS) in the httpd rule? ie. Change from: httpd: $(REGLIB) $(OBJS) $(CC) $(LFLAGS) -o httpd $(OBJS) $(REGLIB) $(LIBS) to: httpd: $(REGLIB) $(OBJS) $(CC) $(LFLAGS) -o httpd $(OBJS) $(LIBS) $(REGLIB) If not, could someone please commit this change? The reason being that when you link in any extra libraries that happen to want to make use of the regex library, the regex library must come after these libraries on the linker line, and not before. -Rasmus