[llvm-commits] CVS: llvm/lib/System/Cygwin/DynamicLibrary.cpp MappedFile.cpp Memory.cpp Path.cpp Process.cpp Program.cpp Signals.cpp SysConfig.cpp TimeValue.cpp

Reid Spencer reid at x10sys.com
Mon Dec 20 14:21:52 PST 2004



Changes in directory llvm/lib/System/Cygwin:

DynamicLibrary.cpp updated: 1.1 -> 1.2
MappedFile.cpp updated: 1.1 -> 1.2
Memory.cpp updated: 1.4 -> 1.5
Path.cpp updated: 1.6 -> 1.7
Process.cpp updated: 1.1 -> 1.2
Program.cpp updated: 1.1 -> 1.2
Signals.cpp updated: 1.1 -> 1.2
SysConfig.cpp updated: 1.1 -> 1.2
TimeValue.cpp updated: 1.3 -> 1.4
---
Log message:

Cygwin doesn't like .. through a link, so drop the ..


---
Diffs of the changes:  (+9 -9)

Index: llvm/lib/System/Cygwin/DynamicLibrary.cpp
diff -u llvm/lib/System/Cygwin/DynamicLibrary.cpp:1.1 llvm/lib/System/Cygwin/DynamicLibrary.cpp:1.2
--- llvm/lib/System/Cygwin/DynamicLibrary.cpp:1.1	Wed Nov 17 22:33:40 2004
+++ llvm/lib/System/Cygwin/DynamicLibrary.cpp	Mon Dec 20 16:21:41 2004
@@ -12,7 +12,7 @@
 //===----------------------------------------------------------------------===//
 
 // Include the generic unix implementation
-#include "../Unix/DynamicLibrary.cpp"
+#include "Unix/DynamicLibrary.cpp"
 
 namespace llvm {
 using namespace sys;


Index: llvm/lib/System/Cygwin/MappedFile.cpp
diff -u llvm/lib/System/Cygwin/MappedFile.cpp:1.1 llvm/lib/System/Cygwin/MappedFile.cpp:1.2
--- llvm/lib/System/Cygwin/MappedFile.cpp:1.1	Mon Oct  4 06:08:32 2004
+++ llvm/lib/System/Cygwin/MappedFile.cpp	Mon Dec 20 16:21:41 2004
@@ -13,6 +13,6 @@
 //===----------------------------------------------------------------------===//
 
 // Include the generic unix implementation
-#include "../Unix/MappedFile.cpp"
+#include "Unix/MappedFile.cpp"
 
 // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab


Index: llvm/lib/System/Cygwin/Memory.cpp
diff -u llvm/lib/System/Cygwin/Memory.cpp:1.4 llvm/lib/System/Cygwin/Memory.cpp:1.5
--- llvm/lib/System/Cygwin/Memory.cpp:1.4	Tue Sep 14 22:55:45 2004
+++ llvm/lib/System/Cygwin/Memory.cpp	Mon Dec 20 16:21:41 2004
@@ -13,7 +13,7 @@
 //===----------------------------------------------------------------------===//
 
 // Include the generic unix implementation
-#include "../Unix/Memory.cpp"
+#include "Unix/Memory.cpp"
 #include "llvm/System/Process.h"
 #include <sys/types.h>
 #include <sys/mman.h>


Index: llvm/lib/System/Cygwin/Path.cpp
diff -u llvm/lib/System/Cygwin/Path.cpp:1.6 llvm/lib/System/Cygwin/Path.cpp:1.7
--- llvm/lib/System/Cygwin/Path.cpp:1.6	Mon Dec 13 12:41:28 2004
+++ llvm/lib/System/Cygwin/Path.cpp	Mon Dec 20 16:21:41 2004
@@ -17,7 +17,7 @@
 //===----------------------------------------------------------------------===//
 
 // Include the generic Unix implementation
-#include "../Unix/Path.cpp"
+#include "Unix/Path.cpp"
 
 namespace llvm {
 using namespace sys;


Index: llvm/lib/System/Cygwin/Process.cpp
diff -u llvm/lib/System/Cygwin/Process.cpp:1.1 llvm/lib/System/Cygwin/Process.cpp:1.2
--- llvm/lib/System/Cygwin/Process.cpp:1.1	Fri Sep 10 23:59:30 2004
+++ llvm/lib/System/Cygwin/Process.cpp	Mon Dec 20 16:21:41 2004
@@ -12,7 +12,7 @@
 //===----------------------------------------------------------------------===//
 
 // Include the generic Unix implementation
-#include "../Unix/Process.cpp"
+#include "Unix/Process.cpp"
 
 //===----------------------------------------------------------------------===//
 //=== WARNING: Implementation here must contain only Cygwin specific code 


Index: llvm/lib/System/Cygwin/Program.cpp
diff -u llvm/lib/System/Cygwin/Program.cpp:1.1 llvm/lib/System/Cygwin/Program.cpp:1.2
--- llvm/lib/System/Cygwin/Program.cpp:1.1	Sun Aug 29 14:20:41 2004
+++ llvm/lib/System/Cygwin/Program.cpp	Mon Dec 20 16:21:41 2004
@@ -12,7 +12,7 @@
 //===----------------------------------------------------------------------===//
 
 // Include the generic Unix implementation
-#include "../Unix/Program.cpp"
+#include "Unix/Program.cpp"
 
 //===----------------------------------------------------------------------===//
 //=== WARNING: Implementation here must contain only Cygwin specific code 


Index: llvm/lib/System/Cygwin/Signals.cpp
diff -u llvm/lib/System/Cygwin/Signals.cpp:1.1 llvm/lib/System/Cygwin/Signals.cpp:1.2
--- llvm/lib/System/Cygwin/Signals.cpp:1.1	Sun Aug 29 14:22:48 2004
+++ llvm/lib/System/Cygwin/Signals.cpp	Mon Dec 20 16:21:41 2004
@@ -12,7 +12,7 @@
 //===----------------------------------------------------------------------===//
 
 // Include the generic unix implementation
-#include "../Unix/Signals.cpp"
+#include "Unix/Signals.cpp"
 
 namespace llvm {
 using namespace sys;


Index: llvm/lib/System/Cygwin/SysConfig.cpp
diff -u llvm/lib/System/Cygwin/SysConfig.cpp:1.1 llvm/lib/System/Cygwin/SysConfig.cpp:1.2
--- llvm/lib/System/Cygwin/SysConfig.cpp:1.1	Tue Aug 31 12:43:29 2004
+++ llvm/lib/System/Cygwin/SysConfig.cpp	Mon Dec 20 16:21:41 2004
@@ -12,7 +12,7 @@
 //===----------------------------------------------------------------------===//
 
 // Include the generic unix implementation
-#include "../Unix/SysConfig.cpp"
+#include "Unix/SysConfig.cpp"
 
 namespace llvm {
 using namespace sys;


Index: llvm/lib/System/Cygwin/TimeValue.cpp
diff -u llvm/lib/System/Cygwin/TimeValue.cpp:1.3 llvm/lib/System/Cygwin/TimeValue.cpp:1.4
--- llvm/lib/System/Cygwin/TimeValue.cpp:1.3	Sun Nov 14 22:47:22 2004
+++ llvm/lib/System/Cygwin/TimeValue.cpp	Mon Dec 20 16:21:41 2004
@@ -12,7 +12,7 @@
 //===----------------------------------------------------------------------===//
 
 // Include the generic Unix implementation
-#include "../Unix/TimeValue.cpp"
+#include "Unix/TimeValue.cpp"
 
 namespace llvm {
 using namespace sys;






More information about the llvm-commits mailing list