Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 52578 invoked from network); 10 Nov 2009 11:35:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 10 Nov 2009 11:35:07 -0000 Received: (qmail 19542 invoked by uid 500); 10 Nov 2009 11:35:07 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 19461 invoked by uid 500); 10 Nov 2009 11:35:07 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 19451 invoked by uid 99); 10 Nov 2009 11:35:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Nov 2009 11:35:06 +0000 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; Tue, 10 Nov 2009 11:35:04 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EF6522388994; Tue, 10 Nov 2009 11:34:42 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r834435 - /commons/sandbox/runtime/trunk/src/main/native/Makefile.in Date: Tue, 10 Nov 2009 11:34:42 -0000 To: commits@commons.apache.org From: mturk@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091110113442.EF6522388994@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mturk Date: Tue Nov 10 11:34:42 2009 New Revision: 834435 URL: http://svn.apache.org/viewvc?rev=834435&view=rev Log: Add ssl rule Modified: commons/sandbox/runtime/trunk/src/main/native/Makefile.in Modified: commons/sandbox/runtime/trunk/src/main/native/Makefile.in URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/Makefile.in?rev=834435&r1=834434&r2=834435&view=diff ============================================================================== --- commons/sandbox/runtime/trunk/src/main/native/Makefile.in (original) +++ commons/sandbox/runtime/trunk/src/main/native/Makefile.in Tue Nov 10 11:34:42 2009 @@ -343,6 +343,9 @@ $(SRCDIR)/srclib/zlib/%.$(OBJ) : $(SRCDIR)/srclib/zlib/%.c $(CC) $(CFLAGS) $(CPPFLAGS) $(INCLUDES) -c -o $@ $< +$(SRCDIR)/modules/network/ssl/%.$(OBJ) : $(SRCDIR)/modules/network/ssl/%.c + $(CC) $(CFLAGS) $(CPPFLAGS) $(INCLUDES) -c -o $@ $< + $(SRCDIR)/test/%.$(OBJ) : $(SRCDIR)/test/%.c $(CC) $(CFLAGS) $(CPPFLAGS) $(INCLUDES) -c -o $@ $<