aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rwxr-xr-xconfigure6
-rw-r--r--configure.ac6
3 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9f5954bb..d393cb9b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-01-16 Arnold D. Robbins <arnold@skeeve.com>
+
+ * configure.ac: For z/OS, restore creation of do-nothing
+ Makefile in extension directory.
+
2014-01-14 Arnold D. Robbins <arnold@skeeve.com>
* field.c (do_split): Make sure split() gets FS value if no
diff --git a/configure b/configure
index c3068aa6..c51e21ab 100755
--- a/configure
+++ b/configure
@@ -10070,6 +10070,12 @@ if test "x$enable_extensions" != "xno"; then
case $host_os in
mirbsd*)
: ;;
+ openedition*) # OS/390 z/OS POSIX layer
+ cat << \EOF > extension/Makefile
+all dist check clean distclean install uninstall distcheck:
+ @exit 0
+EOF
+ ;;
*)
ac_fn_c_check_header_mongrel "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default"
if test "x$ac_cv_header_dlfcn_h" = xyes; then :
diff --git a/configure.ac b/configure.ac
index 12f3ee78..306392d4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -292,6 +292,12 @@ if test "x$enable_extensions" != "xno"; then
case $host_os in
mirbsd*)
: ;;
+ openedition*) # OS/390 z/OS POSIX layer
+ cat << \EOF > extension/Makefile
+all dist check clean distclean install uninstall distcheck:
+ @exit 0
+EOF
+ ;;
*)
AC_CHECK_HEADER(dlfcn.h,
[