Return-Path: X-Original-To: apmail-incubator-celix-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-celix-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 381A3D96A for ; Tue, 18 Dec 2012 10:16:07 +0000 (UTC) Received: (qmail 34044 invoked by uid 500); 18 Dec 2012 10:16:07 -0000 Delivered-To: apmail-incubator-celix-commits-archive@incubator.apache.org Received: (qmail 33971 invoked by uid 500); 18 Dec 2012 10:16:04 -0000 Mailing-List: contact celix-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: celix-dev@incubator.apache.org Delivered-To: mailing list celix-commits@incubator.apache.org Received: (qmail 33867 invoked by uid 99); 18 Dec 2012 10:16:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Dec 2012 10:16:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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, 18 Dec 2012 10:16:00 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 6EB2523888CD; Tue, 18 Dec 2012 10:15:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1423392 - in /incubator/celix/trunk: framework/public/include/framework_exports.h remote_shell/private/src/activator.c Date: Tue, 18 Dec 2012 10:15:38 -0000 To: celix-commits@incubator.apache.org From: abroekhuis@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121218101539.6EB2523888CD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: abroekhuis Date: Tue Dec 18 10:15:37 2012 New Revision: 1423392 URL: http://svn.apache.org/viewvc?rev=1423392&view=rev Log: CELIX-42: Fixed missing macro Modified: incubator/celix/trunk/framework/public/include/framework_exports.h incubator/celix/trunk/remote_shell/private/src/activator.c Modified: incubator/celix/trunk/framework/public/include/framework_exports.h URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/framework_exports.h?rev=1423392&r1=1423391&r2=1423392&view=diff ============================================================================== --- incubator/celix/trunk/framework/public/include/framework_exports.h (original) +++ incubator/celix/trunk/framework/public/include/framework_exports.h Tue Dec 18 10:15:37 2012 @@ -40,6 +40,7 @@ building a DLL on windows. #endif /* framework_EXPORTS */ #else /* defined (_WIN32) */ #define FRAMEWORK_EXPORT __attribute__((visibility("default"))) +#define ACTIVATOR_EXPORT __attribute__((visibility("default"))) #endif #endif /* FRAMEWORK_EXPORTS_H_ */ Modified: incubator/celix/trunk/remote_shell/private/src/activator.c URL: http://svn.apache.org/viewvc/incubator/celix/trunk/remote_shell/private/src/activator.c?rev=1423392&r1=1423391&r2=1423392&view=diff ============================================================================== --- incubator/celix/trunk/remote_shell/private/src/activator.c (original) +++ incubator/celix/trunk/remote_shell/private/src/activator.c Tue Dec 18 10:15:37 2012 @@ -59,6 +59,7 @@ celix_status_t bundleActivator_create(bu celix_status_t status = CELIX_SUCCESS; apr_pool_t *ctxpool; apr_pool_t *pool; + status = bundleContext_getMemoryPool(context, &ctxpool); apr_pool_create(&pool, ctxpool); if (status == CELIX_SUCCESS) {