Update of /cvsroot/pywin32/pywin32/AutoDuck
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14871
Modified Files:
README pywin32.mak
Log Message:
* Revert change that removed pywin docs as Roger pointed out he doesn't
see the crash, and I also don't on another box.
* Don't bother building the .hlp file to save build complications on
boxes with only recent dev tools where hcw isn't available.
Index: README
===================================================================
RCS file: /cvsroot/pywin32/pywin32/AutoDuck/README,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** README 9 Feb 2008 05:31:04 -0000 1.3
--- README 11 Feb 2008 00:35:55 -0000 1.4
***************
*** 2,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
--- 2,5 ----
Main focus these days is on the .chm file - a single .chm
! provides the best documentation solution. We don't even
! build a .hlp file anymore.
Index: pywin32.mak
===================================================================
RCS file: /cvsroot/pywin32/pywin32/AutoDuck/pywin32.mak,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** pywin32.mak 9 Feb 2008 05:31:04 -0000 1.17
--- pywin32.mak 11 Feb 2008 00:35:55 -0000 1.18
***************
*** 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 = \
--- 89,94 ----
$(GENDIR)\PyIDsObjectPicker.d \
PYTHONWIN_SOURCE = \
! $(PYTHONWIN_DIR)\contents.d $(PYTHONWIN_DIR)\*.cpp $(PYTHONWIN_DIR)\*.h
ISAPI_SOURCE = \
***************
*** 105,109 ****
# Help and Doc targets
! all: help htmlhlp
help : $(GENDIR) "..\$(TARGET).hlp"
--- 102,106 ----
# Help and Doc targets
! all: htmlhlp
help : $(GENDIR) "..\$(TARGET).hlp"
|