[llvm-commits] CVS: llvm/lib/System/Unix/Path.cpp Program.cpp Unix.h
Reid Spencer
reid at x10sys.com
Wed Sep 1 15:55:56 PDT 2004
Changes in directory llvm/lib/System/Unix:
Path.cpp updated: 1.3 -> 1.4
Program.cpp updated: 1.2 -> 1.3
Unix.h updated: 1.4 -> 1.5
---
Log message:
Changes For Bug 352: http://llvm.cs.uiuc.edu/PR352
Move include/Config and include/Support into include/llvm/Config,
include/llvm/ADT and include/llvm/Support. From here on out, all LLVM
public header files must be under include/llvm/.
---
Diffs of the changes: (+3 -3)
Index: llvm/lib/System/Unix/Path.cpp
diff -u llvm/lib/System/Unix/Path.cpp:1.3 llvm/lib/System/Unix/Path.cpp:1.4
--- llvm/lib/System/Unix/Path.cpp:1.3 Mon Aug 30 16:46:55 2004
+++ llvm/lib/System/Unix/Path.cpp Wed Sep 1 17:55:35 2004
@@ -16,10 +16,10 @@
//=== is guaranteed to work on *all* UNIX variants.
//===----------------------------------------------------------------------===//
+#include <llvm/Config/config.h>
#include "Unix.h"
#include <sys/stat.h>
#include <fcntl.h>
-#include <Config/config.h>
namespace llvm {
using namespace sys;
Index: llvm/lib/System/Unix/Program.cpp
diff -u llvm/lib/System/Unix/Program.cpp:1.2 llvm/lib/System/Unix/Program.cpp:1.3
--- llvm/lib/System/Unix/Program.cpp:1.2 Sun Aug 29 15:10:07 2004
+++ llvm/lib/System/Unix/Program.cpp Wed Sep 1 17:55:35 2004
@@ -16,10 +16,10 @@
//=== is guaranteed to work on *all* UNIX variants.
//===----------------------------------------------------------------------===//
+#include <llvm/Config/config.h>
#include "Unix.h"
#include <sys/stat.h>
#include <fcntl.h>
-#include <Config/config.h>
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
Index: llvm/lib/System/Unix/Unix.h
diff -u llvm/lib/System/Unix/Unix.h:1.4 llvm/lib/System/Unix/Unix.h:1.5
--- llvm/lib/System/Unix/Unix.h:1.4 Tue Aug 31 12:43:29 2004
+++ llvm/lib/System/Unix/Unix.h Wed Sep 1 17:55:35 2004
@@ -16,7 +16,7 @@
//=== is guaranteed to work on all UNIX variants.
//===----------------------------------------------------------------------===//
-#include "Config/config.h" // Get autoconf configuration settings
+#include "llvm/Config/config.h" // Get autoconf configuration settings
#include <unistd.h>
#include <cstdlib>
#include <cstdio>
More information about the llvm-commits
mailing list