main
mod_gnutls/0.12.0
Last change
on this file since b6ce8ad was
cb1d852,
checked in by Fiona Klute <fiona.klute@…>, 3 years ago
|
Add --enable-gnutls-debug-log to ./configure
This replaces the OOO_MAINTAIN_MODE macro, which previously enabled
the debug log and nothing else. The new code and documentation should
be much clearer.
|
-
Property mode set to
100644
|
File size:
646 bytes
|
Line | |
---|
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 | ]) |
---|
Note: See
TracBrowser
for help on using the repository browser.