Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 56865 invoked from network); 9 Jul 2008 14:44:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Jul 2008 14:44:57 -0000 Received: (qmail 94674 invoked by uid 500); 9 Jul 2008 14:44:57 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 93815 invoked by uid 500); 9 Jul 2008 14:44:54 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 93804 invoked by uid 500); 9 Jul 2008 14:44:54 -0000 Delivered-To: apmail-jakarta-tomcat-dev@jakarta.apache.org Received: (qmail 93801 invoked by uid 99); 9 Jul 2008 14:44:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Jul 2008 07:44:54 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Jul 2008 14:44:11 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9223D23889FE; Wed, 9 Jul 2008 07:44:33 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r675193 - /tomcat/connectors/trunk/jk/native/netscape/Makefile.solaris Date: Wed, 09 Jul 2008 14:44:33 -0000 To: tomcat-dev@jakarta.apache.org From: jfclere@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080709144433.9223D23889FE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jfclere Date: Wed Jul 9 07:44:32 2008 New Revision: 675193 URL: http://svn.apache.org/viewvc?rev=675193&view=rev Log: Let gcc as default. Add some comments with SUITSPOT_HOME=/opt/SUNWwbsvr/plugins Modified: tomcat/connectors/trunk/jk/native/netscape/Makefile.solaris Modified: tomcat/connectors/trunk/jk/native/netscape/Makefile.solaris URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/netscape/Makefile.solaris?rev=675193&r1=675192&r2=675193&view=diff ============================================================================== --- tomcat/connectors/trunk/jk/native/netscape/Makefile.solaris (original) +++ tomcat/connectors/trunk/jk/native/netscape/Makefile.solaris Wed Jul 9 07:44:32 2008 @@ -16,23 +16,27 @@ # Defines for example NSAPI programs running under SOLARIS # Choose between the settings for gcc or Sun Studio compiler -SUITSPOT_HOME=/opt/SUNWwbsvr/plugins # gcc # If you get relocation errors, try: # 1. compiling with Sun's cc # 2. statically linking with libgcc # 3. Adjusting LD_LIBRARY_PATH to grab libgcc_s -#CC=gcc +CC=gcc # For 64 Bit builds, add "-m64" to EXTRA_CFLAGS -#EXTRA_CFLAGS=-fPIC -pthread -#LDFLAGS=-shared +EXTRA_CFLAGS=-fPIC -pthread +LDFLAGS=-shared # Sun Studio cc compiler -CC=cc +#CC=cc # For 64 Bit builds, add "-xtarget=generic64" to EXTRA_CFLAGS -EXTRA_CFLAGS=-xcode=pic32 -mt -LDFLAGS=-G +#EXTRA_CFLAGS=-xcode=pic32 -mt +#LDFLAGS=-G + +# Change this according to location where on installed the server. +# Don't forget to do the ./configure --enable-netscape=/opt/SUNWwbsvr/plugins +# before doing gmake -f Makefile.solaris +SUITSPOT_HOME=/opt/SUNWwbsvr/plugins CC_CMD=$(CC) $(CFLAGS) $(EXTRA_CFLAGS) \ -DNET_SSL -DSOLARIS -D_REENTRANT -DXP_UNIX -DMCC_HTTPD -DSPAPI20 -DJK_NSAPI --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org