summaryrefslogtreecommitdiff
path: root/libphobos/ChangeLog
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gdcproject.org>2020-04-08 22:52:05 +0200
committerIain Buclaw <ibuclaw@gdcproject.org>2020-04-08 22:52:05 +0200
commit72c136c9007e37b76426b847e8b239c0708b8da7 (patch)
treeae6a8fff04ae15047b9b0b221ba0256b97829b59 /libphobos/ChangeLog
parentd0cc1b79b39994c917abb23f71064bb39eedcc70 (diff)
libphobos: Remove --enable-unix configure option.
This option is not useful on its own as all posix modules require the compiler to predefine version(Posix) anyway. So the option has been removed, and logic moved into DRUNTIME_OS_SOURCES, where the conditional DRUNTIME_OS_POSIX is set instead. libphobos/ChangeLog: * configure: Regenerate. * configure.ac: Remove DRUNTIME_OS_UNIX. * libdruntime/Makefile.am: Add DRUNTIME_DSOURCES_POSIX if DRUNTIME_OS_POSIX is true. * libdruntime/Makefile.in: Regenerate. * m4/druntime/os.m4 (DRUNTIME_OS_UNIX): Remove, move AM_CONDITIONAL logic to... (DRUNTIME_OS_SOURCES): ...here. Rename conditional to DRUNTIME_OS_POSIX.
Diffstat (limited to 'libphobos/ChangeLog')
-rw-r--r--libphobos/ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog
index a67f2283533..216cd61baf1 100644
--- a/libphobos/ChangeLog
+++ b/libphobos/ChangeLog
@@ -1,5 +1,17 @@
2020-04-08 Iain Buclaw <ibuclaw@gdcproject.org>
+ * configure: Regenerate.
+ * configure.ac: Remove DRUNTIME_OS_UNIX.
+ * libdruntime/Makefile.am: Add DRUNTIME_DSOURCES_POSIX if
+ DRUNTIME_OS_POSIX is true.
+ * libdruntime/Makefile.in: Regenerate.
+ * m4/druntime/os.m4 (DRUNTIME_OS_UNIX): Remove, move AM_CONDITIONAL
+ logic to...
+ (DRUNTIME_OS_SOURCES): ...here. Rename conditional to
+ DRUNTIME_OS_POSIX.
+
+2020-04-08 Iain Buclaw <ibuclaw@gdcproject.org>
+
* Makefile.in: Regenerate.
* configure: Regenerate.
* configure.ac: Substite WARN_DFLAGS independently of GDCFLAGS.