Index: apr-build.xml
===================================================================
RCS file: /home/cvspublic/logging-log4cxx/apr-build.xml,v
retrieving revision 1.15
diff -u -r1.15 apr-build.xml
--- apr-build.xml	4 May 2005 21:32:16 -0000	1.15
+++ apr-build.xml	6 Sep 2005 22:39:02 -0000
@@ -74,7 +74,7 @@
 <target name="win-init" depends="os-detect" if="is-windows">
     <property name="compiler" value="msvc"/>
     <property name="arch" value="win32"/>
-    <property name="project.type" value="msvc6"/>
+    <property name="project.type" value="msvc6"/>        <property name="compiler_args" value="/Fd${apr.lib.dir}/apr-1.pdb"/>
 </target>
 
 <target name="unix-init" depends="os-detect" if="is-unix">
@@ -191,7 +191,7 @@
             <define name="WIN32" value="1"/>
         </defineset>
         <defineset define="_HAVE_CONFIG_H _REENTRANT _GNU_SOURCE" if="is-gcc"/>
-        <compilerarg value="${pic-option}" if="pic-option"/>
+        <compilerarg value="${pic-option}" if="pic-option"/>                <compilerarg value="${compiler_args}" if="compiler_args"/>
         <libset libs="advapi32 ws2_32 mswsock rpcrt4" if="is-windows"/>
         <libset libs="pthread dl" if="is-unix"/>
         <libset libs="cw32mt" if="is-bcc"/>
Index: aprutil-build.xml
===================================================================
RCS file: /home/cvspublic/logging-log4cxx/aprutil-build.xml,v
retrieving revision 1.16
diff -u -r1.16 aprutil-build.xml
--- aprutil-build.xml	4 May 2005 21:32:16 -0000	1.16
+++ aprutil-build.xml	6 Sep 2005 22:39:02 -0000
@@ -76,7 +76,7 @@
 
 <target name="win-init" depends="os-detect" if="is-windows">
     <property name="compiler" value="msvc"/>
-    <property name="arch" value="win32"/>
+    <property name="arch" value="win32"/>        <property name="compiler_args" value="/Fd${aprutil.lib.dir}/aprutil-1.pdb"/>   
 </target>
 
 <target name="unix-init" depends="os-detect" if="is-unix">
@@ -224,7 +224,7 @@
         <defineset define="WIN32" if="is-windows"/>
         <defineset define="_HAVE_CONFIG_H _REENTRANT _GNU_SOURCE" if="is-gcc"/>
         <compilerarg value="${pic-option}" if="pic-option"/>
-
+        <compilerarg value="${compiler_args}" if="compiler_args"/>
         <libset dir="${apr.lib.dir}" libs="apr-1${lib-suffix}"/>
         <libset libs="cw32mt" if="is-bcc"/>
         <libset libs="pthread dl crypt" if="is-unix"/>
Index: build.xml
===================================================================
RCS file: /home/cvspublic/logging-log4cxx/build.xml,v
retrieving revision 1.77
diff -u -r1.77 build.xml
--- build.xml	11 Jul 2005 04:38:09 -0000	1.77
+++ build.xml	6 Sep 2005 22:39:01 -0000
@@ -162,6 +162,8 @@
     <condition property="is-mingw" value="true">
         <isset property="is-gcc"/>
     </condition>
+    
+    
 </target>
 
 <target name="mac-init" depends="os-detect" if="is-mac">
@@ -325,6 +327,7 @@
         <property name="log4cxx.lib.dir" value="${executable.dir}/${lib.type}"/>
         <mkdir dir="${log4cxx.lib.dir}"/>
 
+		<property name="compiler_args" value="/Fd${log4cxx.lib.dir}/log4cxx.pdb"/>    
 
         <property name="projectsOnly" value="false"/>
 </target>
@@ -628,6 +631,7 @@
         <defineset define="APU_DECLARE_STATIC" if="aprutil-static"/>
         <defineset define="WIN32" if="is-windows"/>
         <compilerarg value="${pic-option}" if="pic-option"/>
+        <compilerarg value="${compiler_args}" if="compiler_args"/>        
         &libsets;
         <project type="${project.type}" outfile="${project.dir}/log4cxx" if="project.if"/>
     </cc>
