Merged in autoconf branch. This provides configuration via the autoconf
system.
llvm-svn: 7014
diff --git a/llvm/include/Config/link.h b/llvm/include/Config/link.h
new file mode 100644
index 0000000..a003e24
--- /dev/null
+++ b/llvm/include/Config/link.h
@@ -0,0 +1,18 @@
+/*
+ * Header file: link.h
+ *
+ * Description:
+ * This header file is the autoconf replacement for link.h (if it lives
+ * on the system).
+ */
+
+#ifndef _CONFIG_LINK_H
+#define _CONFIG_LINK_H
+
+#include "Config/config.h"
+
+#ifdef HAVE_LINK_H
+#include <link.h>
+#endif
+
+#endif