diff options
| author | 2008-02-20 19:53:44 +0000 | |
|---|---|---|
| committer | 2008-02-20 19:53:44 +0000 | |
| commit | 4dd789740526f169c5acf821d220a38e35d42389 (patch) | |
| tree | b71cda083d1ed8ceb2db2fb815eadf042295c348 /m4/outoforder.m4 | |
| parent | b4d4a1e816332777d3196b50b0be33fc31aef47b (diff) | |
added new m4 directory
Diffstat (limited to 'm4/outoforder.m4')
| -rw-r--r-- | m4/outoforder.m4 | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/m4/outoforder.m4 b/m4/outoforder.m4 new file mode 100644 index 0000000..7add221 --- /dev/null +++ b/m4/outoforder.m4 | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | dnl m4 for utility macros used by all out of order projects | ||
| 2 | |||
| 3 | dnl this writes a "config.nice" file which reinvokes ./configure with all | ||
| 4 | dnl of the arguments. this is different from config.status which simply | ||
| 5 | dnl regenerates the output files. config.nice is useful after you rebuild | ||
| 6 | dnl ./configure (via autoconf or autogen.sh) | ||
| 7 | AC_DEFUN([OOO_CONFIG_NICE],[ | ||
| 8 | echo configure: creating $1 | ||
| 9 | rm -f $1 | ||
| 10 | cat >$1<<EOF | ||
| 11 | #! /bin/sh | ||
| 12 | # | ||
| 13 | # Created by configure | ||
| 14 | |||
| 15 | EOF | ||
| 16 | |||
| 17 | for arg in [$]0 "[$]@"; do | ||
| 18 | if test "[$]arg" != "--no-create" -a "[$]arg" != "--no-recursion"; then | ||
| 19 | echo "\"[$]arg\" \\" >> $1 | ||
| 20 | fi | ||
| 21 | done | ||
| 22 | echo '"[$]@"' >> $1 | ||
| 23 | chmod +x $1 | ||
| 24 | ]) | ||
| 25 | |||
| 26 | dnl this macro adds a maintainer mode option to enable programmer specific | ||
| 27 | dnl code in makefiles | ||
| 28 | AC_DEFUN([OOO_MAINTAIN_MODE],[ | ||
| 29 | AC_ARG_ENABLE( | ||
| 30 | maintainer, | ||
| 31 | [AC_HELP_STRING([--enable-maintainer],[Enable maintainer mode for this project])], | ||
| 32 | AC_MSG_RESULT([Enabling Maintainer Mode!!]) | ||
| 33 | OOO_MAINTAIN=1, | ||
| 34 | OOO_MAINTAIN=0) | ||
| 35 | AC_SUBST(OOO_MAINTAIN) | ||
| 36 | ]) | ||
