Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 74368 invoked from network); 2 Feb 2007 15:54:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Feb 2007 15:54:08 -0000 Received: (qmail 25689 invoked by uid 500); 2 Feb 2007 15:54:09 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 25647 invoked by uid 500); 2 Feb 2007 15:54:09 -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 25636 invoked by uid 500); 2 Feb 2007 15:54:09 -0000 Delivered-To: apmail-jakarta-tomcat-dev@jakarta.apache.org Received: (qmail 25633 invoked by uid 99); 2 Feb 2007 15:54:09 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Feb 2007 07:54:09 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Feb 2007 07:54:02 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 912FA1A981A; Fri, 2 Feb 2007 07:53:42 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r502639 - /tomcat/connectors/trunk/jk/native/configure.in Date: Fri, 02 Feb 2007 15:53:42 -0000 To: tomcat-dev@jakarta.apache.org From: jim@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070202155342.912FA1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jim Date: Fri Feb 2 07:53:41 2007 New Revision: 502639 URL: http://svn.apache.org/viewvc?view=rev&rev=502639 Log: Allow for people to build for netscape/iPlanet/SunOne without requiring any Apache at all. Basically, we need to ensure that the ./configure script creates common/jk_types.h and common/portable.h. Add in --enable-netscape ./configure option. Modified: tomcat/connectors/trunk/jk/native/configure.in Modified: tomcat/connectors/trunk/jk/native/configure.in URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/configure.in?view=diff&rev=502639&r1=502638&r2=502639 ============================================================================== --- tomcat/connectors/trunk/jk/native/configure.in (original) +++ tomcat/connectors/trunk/jk/native/configure.in Fri Feb 2 07:53:41 2007 @@ -328,9 +328,25 @@ [ AC_MSG_RESULT(no apache given) ]) + AC_SUBST(apache_include) APACHE_DIR=${apache_dir} AC_SUBST(APACHE_DIR) + +AC_ARG_ENABLE(netscape, +[ --enable-netscape=DIR Build Netscape/iPlanet/SunONE nsapi redirector plugin.], +[ + if ${TEST} ! -z "$WEBSERVER" ; then + AC_MSG_ERROR([Sorry cannot use --with-apxs=${APXS} or --with-apache=${withval} with --with-netscape, please choose one or the other.]) + fi + + WEBSERVER="netscape" + + AC_MSG_RESULT([building connector for \"$WEBSERVER\"]) +], +[ + AC_MSG_RESULT(no netscape given) +]) dnl Check for enable-jni JK_JNI_WORKER="" --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org