Update of /cvsroot/pywin32/pywin32/AutoDuck
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2202
Modified Files:
README pywin32.mak
Log Message:
remove win32ui from the .chm file as a work-around for the htmlhelp
compiler crashing
Index: README
===================================================================
RCS file: /cvsroot/pywin32/pywin32/AutoDuck/README,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** README 17 Apr 2002 14:06:19 -0000 1.2
--- README 9 Feb 2008 05:31:04 -0000 1.3
***************
*** 3,4 ****
--- 3,24 ----
Main focus these days is on the .chm file - a single .chm
provides the best documentation solution.
+
+
+ Note: Jan-2008: We seem to have hit a hhc wall. Trial and error shows
+ that once at the point shown below, adding a single new '@pymeth' anywhere
+ will cause death (a single @pymeth seems to create 4 new 'local links')
+
+ The max successful build I got was:
+
+ 9,609 Topics
+ 30,629 Local links
+ 836 Internet links
+
+ I've removed the win32ui module from the autoduck build and we
+ are now at the figures below - so the problem still appears to
+ loom...
+
+ Compile time: 1 minute, 21 seconds
+ 7,860 Topics
+ 23,712 Local links
+ 830 Internet links
Index: pywin32.mak
===================================================================
RCS file: /cvsroot/pywin32/pywin32/AutoDuck/pywin32.mak,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** pywin32.mak 16 Mar 2006 23:01:32 -0000 1.16
--- pywin32.mak 9 Feb 2008 05:31:04 -0000 1.17
***************
*** 89,94 ****
$(GENDIR)\PyIDsObjectPicker.d \
PYTHONWIN_SOURCE = \
! $(PYTHONWIN_DIR)\contents.d $(PYTHONWIN_DIR)\*.cpp $(PYTHONWIN_DIR)\*.h
ISAPI_SOURCE = \
--- 89,97 ----
$(GENDIR)\PyIDsObjectPicker.d \
+ # ack - have hit some kind of htmlhelp wall, so we drop win32ui docs - see README for more.
+ #PYTHONWIN_SOURCE = \
+ # $(PYTHONWIN_DIR)\contents.d $(PYTHONWIN_DIR)\*.cpp $(PYTHONWIN_DIR)\*.h
PYTHONWIN_SOURCE = \
! $(PYTHONWIN_DIR)\contents.d
ISAPI_SOURCE = \
|