Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 97860 invoked from network); 5 Jan 2009 01:45:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Jan 2009 01:45:36 -0000 Received: (qmail 9291 invoked by uid 500); 5 Jan 2009 01:45:35 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 9235 invoked by uid 500); 5 Jan 2009 01:45:35 -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 9226 invoked by uid 99); 5 Jan 2009 01:45:35 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Jan 2009 17:45:35 -0800 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; Mon, 05 Jan 2009 01:45:33 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C8CFF238889F; Sun, 4 Jan 2009 17:45:12 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r731405 - /commons/proper/daemon/trunk/src/native/unix/native/dso.h Date: Mon, 05 Jan 2009 01:45:12 -0000 To: commits@commons.apache.org From: billbarker@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090105014512.C8CFF238889F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: billbarker Date: Sun Jan 4 17:45:12 2009 New Revision: 731405 URL: http://svn.apache.org/viewvc?rev=731405&view=rev Log: Only include Mac-specific files if compiling for Mac. Still don't know what I'm doing, but trusting that I have enough testers to tell me. At least this should fix the Gump build. Modified: commons/proper/daemon/trunk/src/native/unix/native/dso.h Modified: commons/proper/daemon/trunk/src/native/unix/native/dso.h URL: http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/dso.h?rev=731405&r1=731404&r2=731405&view=diff ============================================================================== --- commons/proper/daemon/trunk/src/native/unix/native/dso.h (original) +++ commons/proper/daemon/trunk/src/native/unix/native/dso.h Sun Jan 4 17:45:12 2009 @@ -20,7 +20,7 @@ /** * A library handle represents a unique pointer to its location in memory. */ -#ifdef DSO_DLFCN +#ifdef OS_DARWIN #include #endif typedef void *dso_handle;