You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2003/02/20 16:56:04 UTC

cvs commit: httpd-2.0/server/mpm/winnt Win9xConHook.dsp

wrowe       2003/02/20 07:56:04

  Modified:    server/mpm/winnt Win9xConHook.dsp
  Log:
    After consultations on the APR list, it was decided that /map files are
    fairly redundant when you retain rich .pdb debugging symbol files.  We
    have rarely used them, and generally .dbg and .pdb files prove much more
    useful for the cases we have.
  
    While eliminating /map files, we are also shrinking the size of the .dbg
    files by stripping 'private' symbol information.  Really this means less
    rich diagnostics from Dr. Watson on NT or Win9x when they query the .dbg
    symbols in creating a DrWatson log file.  But it's more than compensated
    for on newer OS'es where Dr. Watson will query the .pdb symbols, on all
    Win32 flavors when WinDbg is used with the .pdb symbols, and the fact that
    the distribution of binary symbols will use less bandwidth when less
    information is duplicated from the .pdb format into the .dbg files.
  
  Revision  Changes    Path
  1.7       +4 -4      httpd-2.0/server/mpm/winnt/Win9xConHook.dsp
  
  Index: Win9xConHook.dsp
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/mpm/winnt/Win9xConHook.dsp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Win9xConHook.dsp	26 Aug 2001 05:21:49 -0000	1.6
  +++ Win9xConHook.dsp	20 Feb 2003 15:56:04 -0000	1.7
  @@ -52,8 +52,8 @@
   # ADD BASE BSC32 /nologo
   # ADD BSC32 /nologo
   LINK32=link.exe
  -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib /nologo /subsystem:windows /dll /incremental:no /map /machine:I386 /base:"0x1c0f0000"
  -# ADD LINK32 kernel32.lib user32.lib gdi32.lib /nologo /subsystem:windows /dll /incremental:no /map /machine:I386 /base:"0x1c0f0000"
  +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib /nologo /subsystem:windows /dll /incremental:no /machine:I386 /base:"0x1c0f0000"
  +# ADD LINK32 kernel32.lib user32.lib gdi32.lib /nologo /subsystem:windows /dll /incremental:no /machine:I386 /base:"0x1c0f0000"
   
   !ELSEIF  "$(CFG)" == "Win9xConHook - Win32 Debug"
   
  @@ -78,8 +78,8 @@
   # ADD BASE BSC32 /nologo
   # ADD BSC32 /nologo
   LINK32=link.exe
  -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib /nologo /subsystem:windows /dll /incremental:no /map /debug /machine:I386 /base:"0x1c0f0000"
  -# ADD LINK32 kernel32.lib user32.lib gdi32.lib /nologo /subsystem:windows /dll /incremental:no /map /debug /machine:I386 /base:"0x1c0f0000"
  +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib /nologo /subsystem:windows /dll /incremental:no /debug /machine:I386 /base:"0x1c0f0000"
  +# ADD LINK32 kernel32.lib user32.lib gdi32.lib /nologo /subsystem:windows /dll /incremental:no /debug /machine:I386 /base:"0x1c0f0000"
   
   !ENDIF