diff options
| author | Clint Adams <clint@users.sourceforge.net> | 2007-10-12 12:45:50 +0000 |
|---|---|---|
| committer | Clint Adams <clint@users.sourceforge.net> | 2007-10-12 12:45:50 +0000 |
| commit | 0db480e32bbc32cd9cea63f193fd9379d6c3d7e2 (patch) | |
| tree | abc87bae5f93d3749ceb6d870c21c6bff5f2b6ad | |
| parent | 23943 (tweaked): search ncursesw and document this (diff) | |
| download | zsh-0db480e32bbc32cd9cea63f193fd9379d6c3d7e2.tar zsh-0db480e32bbc32cd9cea63f193fd9379d6c3d7e2.tar.gz zsh-0db480e32bbc32cd9cea63f193fd9379d6c3d7e2.tar.bz2 zsh-0db480e32bbc32cd9cea63f193fd9379d6c3d7e2.tar.lz zsh-0db480e32bbc32cd9cea63f193fd9379d6c3d7e2.tar.xz zsh-0db480e32bbc32cd9cea63f193fd9379d6c3d7e2.tar.zst zsh-0db480e32bbc32cd9cea63f193fd9379d6c3d7e2.zip | |
23945: autoconf include file for budding out-of-tree module support.
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | Config/aczshoot.m4 | 8 |
2 files changed, 14 insertions, 1 deletions
@@ -1,9 +1,14 @@ +2007-10-12 Clint Adams <clint@zsh.org> + + * 23945: Config/aczshoot.m4: autoconf include file for + budding out-of-tree module support. + 2007-10-12 Peter Stephenson <pws@csr.com> * 23943 (slightly modified): INSTALL, configure.ac: search ncursesw and document this. -2007-10-08 Clint Adams <clint@zsh.org> +2007-10-11 Clint Adams <clint@zsh.org> * 23927: Src/system.h: don't define struct timezone if ZSH_OOT_MODULE is defined. diff --git a/Config/aczshoot.m4 b/Config/aczshoot.m4 new file mode 100644 index 000000000..d062e20fb --- /dev/null +++ b/Config/aczshoot.m4 @@ -0,0 +1,8 @@ +AC_DEFUN(zsh_OOT, +[ +AC_CHECK_HEADERS(stdarg.h varargs.h termios.h termio.h) + +AC_TYPE_SIGNAL + +AC_DEFINE([ZSH_OOT_MODULE], [], [Out-of-tree module]) +]) |
