Reviewed by andersca.
Work-around spaces-in-pathnames issue in gnumake on win32.
http://bugzilla.opendarwin.org/show_bug.cgi?id=8173
* WebCore.vcproj/WebCore/build-generated-files.sh:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@13678
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-04-04 Eric Seidel <eseidel@apple.com>
+
+ Reviewed by andersca.
+
+ Work-around spaces-in-pathnames issue in gnumake on win32.
+ http://bugzilla.opendarwin.org/show_bug.cgi?id=8173
+
+ * WebCore.vcproj/WebCore/build-generated-files.sh:
+
2006-04-03 Darin Adler <darin@apple.com>
- tried to fix build again
WebKitOutputDirUnix=`cygpath -a -u "$2"`
WebKitOutputConfigDirUnix="${WebKitOutputDirUnix}/$1"
-export SRCROOT="`pwd`/../.."
+SRCROOT="`pwd`/../.."
+SRCROOT=`realpath "$SRCROOT"`
+# Do a little dance to get the path into 8.3 form to make it safe for gnu make
+# http://bugzilla.opendarwin.org/show_bug.cgi?id=8173
+SRCROOT=`cygpath -m -s "$SRCROOT"`
+SRCROOT=`cygpath -u "$SRCROOT"`
+export SRCROOT
# FIXME: Eventually win32 might wish to generate to the Debug/Release output directories.
export BUILT_PRODUCTS_DIR="$SRCROOT"
export CREATE_HASH_TABLE="$SRCROOT/../JavaScriptCore/kjs/create_hash_table"
*
*/
-#ifndef DOM_DocumentImpl_h
-#define DOM_DocumentImpl_h
+#ifndef DOM_Document_h
+#define DOM_Document_h
#include "Attr.h"
#include "Color.h"