Return-Path: X-Original-To: apmail-subversion-users-archive@minotaur.apache.org Delivered-To: apmail-subversion-users-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9F71599A7 for ; Sat, 1 Oct 2011 22:36:17 +0000 (UTC) Received: (qmail 10035 invoked by uid 500); 1 Oct 2011 22:36:16 -0000 Delivered-To: apmail-subversion-users-archive@subversion.apache.org Received: (qmail 10009 invoked by uid 500); 1 Oct 2011 22:36:16 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Received: (qmail 10001 invoked by uid 99); 1 Oct 2011 22:36:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Oct 2011 22:36:16 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of jblond@gmail.com designates 209.85.214.43 as permitted sender) Received: from [209.85.214.43] (HELO mail-bw0-f43.google.com) (209.85.214.43) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Oct 2011 22:36:11 +0000 Received: by bkas6 with SMTP id s6so5057675bka.16 for ; Sat, 01 Oct 2011 15:35:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=9reJjiQGEPYr89a+96+0mpWXTg7/jWj31n4woPDaNko=; b=IMnXw6K6ZZBduR928q9zc6AdKBEtUF1EAxkAUaYhArrkJie6qX/uCN6vPVgtP3oH2V B6qLH/0QZRMdowKoI4wjfyZkWRe87UEoZxOb4RKxQu6aApo2nHFX2JGgOnoc9fPQtzYo VKiUkxLBq1y3eVIiqWGXJfoL6oG0wlv9BnGOE= MIME-Version: 1.0 Received: by 10.223.45.202 with SMTP id g10mr11060244faf.126.1317508549864; Sat, 01 Oct 2011 15:35:49 -0700 (PDT) Received: by 10.223.119.131 with HTTP; Sat, 1 Oct 2011 15:35:49 -0700 (PDT) In-Reply-To: References: <37419787B21B1E43AABCE3BA3216DE8301413958764D@mail1-cmgm.cmgm.local> <37419787B21B1E43AABCE3BA3216DE8301413958764E@mail1-cmgm.cmgm.local> Date: Sun, 2 Oct 2011 00:35:49 +0200 Message-ID: Subject: Re: ++ Compilling SVN on WIndows ++ From: Mario Brandt To: Joel Low Cc: Victor Medina , Mark Phippard , "users@subversion.apache.org" Content-Type: text/plain; charset=ISO-8859-1 Hi, there is a bit more than just inffast.obj Without the patch I build it this way (x86): --- snip --- C:\python27\python gen-make.py -t vcproj --vsnet-version=2008 --with-httpd=C:\build\httpd-2.2.19-sni6-x86 --with-openssl=C:\build\httpd-2.2.19-sni6-x86\srclib\openssl --with-zlib=C:\build\subversion-1.7.0-rc3-x86\zlib --with-apr=C:\build\httpd-2.2.19-sni6-x86\apr Open generated build\win32\vcnet-vcproj\build_zlib.bat and insert at line 67 (before "set BUILD_OPTS=..." line): set ASM_OPTS=LOC="-DASMV -DASMINF -I." OBJA="inffas32.obj match686.obj" jump right to the end, the magic solution is to add "/D XML_STATIC" to EXPAT_FLAGS in neon\neon.mak, line 57 OPEN IDE --- /snip --- For a x64 build --- snip --- C:\python27\python gen-make.py -t vcproj --vsnet-version=2008 --with-httpd=C:\build\httpd-2.2.19-sni6-x64 --with-openssl=C:\build\httpd-2.2.19-sni6-x64\srclib\openssl --with-zlib=C:\build\subversion-1.7.0-rc3-x64\zlib --with-apr=C:\build\subversion-1.6.17-x64\apr Open generated build\win32\vcnet-vcproj\build_zlib.bat and insert at line 67 (before "set BUILD_OPTS=..." line): set ASM_OPTS=AS=ml64 LOC="-DASMV -DASMINF -I." OBJA="inffasx64.obj gvmat64.obj inffas8664.obj" jump right to the end, the magic solution is to add "/D XML_STATIC" to EXPAT_FLAGS in neon\neon.mak, line 57 OPEN IDE --- /snip --- Cheers Mario