You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2011/04/28 17:33:56 UTC

svn commit: r1097507 - /subversion/trunk/build/generator/extractor.py

Author: hwright
Date: Thu Apr 28 15:33:56 2011
New Revision: 1097507

URL: http://svn.apache.org/viewvc?rev=1097507&view=rev
Log:
Attempt to fix the windows build in light of r1098488.
svn_wc__internal_walk_children() is now internal to libsvn_wc.  But
entries-dump.c still wants to call that function, so we need to export it
on Windows.  Here's hopin' this works...

* build/generator/extractor.py:
  As above.

Modified:
    subversion/trunk/build/generator/extractor.py

Modified: subversion/trunk/build/generator/extractor.py
URL: http://svn.apache.org/viewvc/subversion/trunk/build/generator/extractor.py?rev=1097507&r1=1097506&r2=1097507&view=diff
==============================================================================
--- subversion/trunk/build/generator/extractor.py (original)
+++ subversion/trunk/build/generator/extractor.py Thu Apr 28 15:33:56 2011
@@ -66,3 +66,5 @@ if __name__ == '__main__':
       print(func)
     if os.path.basename(fname) == 'svn_ctype.h':
       print('svn_ctype_table = svn_ctype_table_internal CONSTANT')
+    elif os.path.basename(fname) == 'svn_wc_private.h':
+      print('svn_wc__internal_walk_children')