94b262d3639149df0b02642a9daa6db8bff58577 495126 |
|
11-Jan-2007 |
wrowe |
Embed the .manifest files of all httpd binaries as a post-build
operation. This ensures the exported (Studio 97 generated) .mak
files create a usable Apache directly from the VC 8 (Studio 2005)
command line environment. |
37ad54b8fd2611b7a4f2b269eec3d27ed784a25d 419644 |
|
06-Jul-2006 |
wrowe |
Revert Revision 397647
While it solves the studio 2005 (we desire this), it breaks
the studio 6 packaging (we require this). Discussion on list
of practical solutions. |
e237b51d2e7a72b7f636f67ed4a9f5fe30f56375 397647 |
|
27-Apr-2006 |
wrowe |
This resource /D syntax was pretty horridly imported into VS 2005,
change the quotation to ensure a peaceful transition to sln/vcproj files. |
5ac28f3fe2417368757f29cf381338357605fd52 397407 |
|
27-Apr-2006 |
wrowe |
Remove all /machine:I386 references, these are getting in the way
of switching linkers from the x86 (default linker) to x64 or other
possible target platforms. (Also, this commit cleans up lingering
/GX switches from the 'BASE' options that are supposed to be unused). |
e1ad80c048e29e968221817698529d73098f07a4 395419 |
|
20-Apr-2006 |
wrowe |
s|/GX |/EHsc | because they were always synonyms, and Visual Studio
2005 edition complains bitterly and loudly that /GX is deprecated. |
8c8173f49dd7122e10636b3d20ae841551bd0b43 395418 |
|
20-Apr-2006 |
wrowe |
Remove a host of dependencies upon awk, using the same template for
nearly every .rc compilation (giving the output .res file a different
name for each component). Adds AP_SERVER_BASEPROJECT to ap_revision.h
so we can display the proper name of "Apache HTTP Server" as opposed
to AP_SERVER_BASEPRODUCT (which is, and should remain, simply "Apache"
for the server string tokens.) |
56e85d89d42a6980f31b800266649efbed338da3 170253 |
|
15-May-2005 |
wrowe |
Reintroduce stack frame construction with /Oy- (removal was implied by /O2).
This makes binaries far easier to debug, during operation and for post-crash
.dmp analysis. Do not alter /Gs optimizations per brane.
Reviewed by: stoddard, brane |
3082ab8b90e027fa27680f140987ea7e20df5088 98970 |
|
11-Mar-2003 |
wrowe |
After discussions at length on dev@apr/httpd, it is determined that
the older .dbg format symbols are not worth the interference with
generating complete .pdb symbolic debugging databases.
This patch further eliminates pdbtype:sept flags that interfere with
deciphering local symbols and type information. |
dcf1a2f80f16265f00fe147de1dbd91af9c32a42 98743 |
|
20-Feb-2003 |
wrowe |
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. |
f1a6b66f00bc686cd247d727dfcc35eeaa58b535 98712 |
|
18-Feb-2003 |
wrowe |
foo.dbgmark turned out to be the same 8.3 name as foo.dbg itself, which
was badness. Twist this puppy to .dbr, the only name I could invent that
doesn't look like any database file extension I recall.
It stands for .dbg rebased. |
0bcc003d275c6b0a9060d43be89762b218cbc2c7 98596 |
|
07-Feb-2003 |
wrowe |
*) Introduce debugging symbols for Win32 release builds, both .pdb
and .dbg files (older debuggers and Dr. Watson-type utilities
on WinNT or Win9x don't support the newer .pdb flavor.)
[Allen Edwards, William Rowe] |
4e37bfe24d9ab0f4dc6e3a76c9ec2bc4231a61b8 98380 |
|
20-Jan-2003 |
wrowe |
Catch up with the changes to apr/build/win32ver.awk and name all loadable
httpd modules as .so, internally. Credit to Mladen Turk for identifing
the issue. |
5a51653135041ee35b24fa67453bff4e9f8e3591 97376 |
|
01-Nov-2002 |
wrowe |
Inject logio into the win32 build |