summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-06 14:20:31 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-06 14:20:31 +0000
commitb0bd50936d645ae12f1c33dd4f23bfe287ef198c (patch)
tree1f46a8f24f2c15b5311d995736e6a2d3111e7eeb
parent6daa88242886915eea04461f3ee212dce0bb3ecd (diff)
Adding macro for MKDIR
git-svn-id: http://svn.cactuscode.org/flesh/trunk@875 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--lib/make/config.h.in3
-rwxr-xr-xlib/make/configure7
-rw-r--r--lib/make/configure.in4
3 files changed, 14 insertions, 0 deletions
diff --git a/lib/make/config.h.in b/lib/make/config.h.in
index 6b8c4ccc..245c8da1 100644
--- a/lib/make/config.h.in
+++ b/lib/make/config.h.in
@@ -57,6 +57,9 @@
#undef FMODIFIER
+/* How to create a directory */
+
+#undef MKDIR
/******************************************************************************/
diff --git a/lib/make/configure b/lib/make/configure
index db97e6aa..905db31f 100755
--- a/lib/make/configure
+++ b/lib/make/configure
@@ -2328,6 +2328,13 @@ cat >> confdefs.h <<EOF
EOF
+# Define how to make a directory in the config.h file
+
+cat >> confdefs.h <<EOF
+#define MKDIR $MKDIR
+EOF
+
+
# The perl scripts run by the make system need to have their names
# changed if under cygwin - e.g. //d/foo needs to be d:/foo
diff --git a/lib/make/configure.in b/lib/make/configure.in
index acc576b5..03f52d66 100644
--- a/lib/make/configure.in
+++ b/lib/make/configure.in
@@ -327,6 +327,10 @@ esac
AC_DEFINE_UNQUOTED(FMODIFIER, $FMODIFIER)
+# Define how to make a directory in the config.h file
+
+AC_DEFINE_UNQUOTED(MKDIR, $MKDIR)
+
# The perl scripts run by the make system need to have their names
# changed if under cygwin - e.g. //d/foo needs to be d:/foo