This looks like a simple typo. Agree?

-- 
Angus
Index: src/support/ChangeLog
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/support/ChangeLog,v
retrieving revision 1.149.2.11
diff -u -p -r1.149.2.11 ChangeLog
--- src/support/ChangeLog	14 Dec 2004 10:40:09 -0000	1.149.2.11
+++ src/support/ChangeLog	14 Dec 2004 11:15:00 -0000
@@ -1,5 +1,9 @@
 2004-12-14  Angus Leeming  <[EMAIL PROTECTED]>
 
+	* os.C: Correct typo in #define (should be _WIN32).
+
+2004-12-14  Angus Leeming  <[EMAIL PROTECTED]>
+
 	* Makefile.am (INCLUDES): Remove trailing slash from -Ifoo/
 	to overcome bug in the MinGW port of g++ 3.4.2.
 
Index: src/support/os.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/support/os.C,v
retrieving revision 1.3.2.1
diff -u -p -r1.3.2.1 os.C
--- src/support/os.C	7 Dec 2004 10:50:09 -0000	1.3.2.1
+++ src/support/os.C	14 Dec 2004 11:15:00 -0000
@@ -2,7 +2,7 @@
 
 #ifdef __EMX__
 #include "os_os2.C"
-#elif defined(__CYGWIN__) || defined(__CYGWIN32__)
+#elif defined(__CYGWIN__) || defined(_WIN32)
 #include "os_win32.C"
 #else
 #include "os_unix.C"
Index: src/support/ChangeLog
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/support/ChangeLog,v
retrieving revision 1.280
diff -u -p -r1.280 ChangeLog
--- src/support/ChangeLog	14 Dec 2004 10:41:08 -0000	1.280
+++ src/support/ChangeLog	14 Dec 2004 11:15:10 -0000
@@ -1,5 +1,9 @@
 2004-12-14  Angus Leeming  <[EMAIL PROTECTED]>
 
+	* os.C: Correct typo in #define (should be _WIN32).
+
+2004-12-14  Angus Leeming  <[EMAIL PROTECTED]>
+
 	* Makefile.am (AM_CPPFLAGS): Remove trailing slash from -Ifoo/
 	to overcome bug in the MinGW port of g++ 3.4.2.
 
Index: src/support/os.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/support/os.C,v
retrieving revision 1.6
diff -u -p -r1.6 os.C
--- src/support/os.C	23 Aug 2003 00:16:57 -0000	1.6
+++ src/support/os.C	14 Dec 2004 11:15:10 -0000
@@ -12,7 +12,7 @@
 
 #ifdef __EMX__
 #include "os_os2.C"
-#elif defined(__CYGWIN__) || defined(__CYGWIN32__)
+#elif defined(__CYGWIN__) || defined(_WIN32)
 #include "os_win32.C"
 #else
 #include "os_unix.C"

Reply via email to