Return-Path: Delivered-To: apmail-ws-axis-c-dev-archive@www.apache.org Received: (qmail 51397 invoked from network); 17 Apr 2008 06:54:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Apr 2008 06:54:38 -0000 Received: (qmail 49118 invoked by uid 500); 17 Apr 2008 06:54:36 -0000 Delivered-To: apmail-ws-axis-c-dev-archive@ws.apache.org Received: (qmail 49106 invoked by uid 500); 17 Apr 2008 06:54:36 -0000 Mailing-List: contact axis-c-dev-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: "Apache AXIS C Developers List" Reply-To: "Apache AXIS C Developers List" Delivered-To: mailing list axis-c-dev@ws.apache.org Received: (qmail 49095 invoked by uid 99); 17 Apr 2008 06:54:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Apr 2008 23:54:36 -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.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Apr 2008 06:53:52 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id A8631234C0E3 for ; Wed, 16 Apr 2008 23:51:25 -0700 (PDT) Message-ID: <226391910.1208415085688.JavaMail.jira@brutus> Date: Wed, 16 Apr 2008 23:51:25 -0700 (PDT) From: "Pim Philipse (JIRA)" To: axis-c-dev@ws.apache.org Subject: [jira] Created: (AXIS2C-1110) Support debug and release versions MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Support debug and release versions ---------------------------------- Key: AXIS2C-1110 URL: https://issues.apache.org/jira/browse/AXIS2C-1110 Project: Axis2-C Issue Type: Improvement Components: util Affects Versions: 1.3.0 Environment: windows, VS.2005 Reporter: Pim Philipse Modify axutil_dll_desc_create_platform_specific_dll_name() as follows: temp_name = axutil_stracat(env, AXIS2_LIB_PREFIX, class_name); #ifdef _DEBUG { axis2_char_t *temp_name2 = axutil_stracat(env, temp_name, "D"); dll_desc->dll_name = axutil_stracat(env, temp_name2, AXIS2_LIB_SUFFIX); AXIS2_FREE(env->allocator, temp_name2); } #else dll_desc->dll_name = axutil_stracat(env, temp_name, AXIS2_LIB_SUFFIX); #endif Then modify the build system for the debug build to generate dll's with names that differ from the release version by a trailing D. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org For additional commands, e-mail: axis-c-dev-help@ws.apache.org