diff options
| author | Alexander Barton <alex@barton.de> | 2012-09-23 17:55:48 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2012-09-23 18:13:55 +0200 |
| commit | 192e304b94f239de13b0f10ca01f6694fe6eea40 (patch) | |
| tree | 02174f2d76a042c4abcfa63ef65e58b5841661e4 /src/ipaddr | |
| parent | 1413a4886ffa120e82d4963368e82b4d5ec6eb2d (diff) | |
| download | ngircd-192e304b94f239de13b0f10ca01f6694fe6eea40.tar.gz ngircd-192e304b94f239de13b0f10ca01f6694fe6eea40.zip | |
Change build system to support new and old GNU automake
Starting with GNU automake 1.12, the "de-ANSI-fication support" has been
removed, which ngIRCd used to enable building itself on very old systems.
Now the problem is, that using automake >= 1.12 isn't working because of
the now unsupported M4 macros. Therefore the solution that this patch
implements is to dynamically generate the automake input files with our
own ./autogen.sh script:
configure.ng => configure.in
Makefile.ng => Makefile.am
This is quite an ugly approach, but it works and enables us to:
1. use current automake >= 1.12 for development and "private builds",
2. still build distribution archives using automake 1.11.x that have
"de-ANSI-fication support" enabled in the generated Makefile's.
And if you are using Makefile's generated with a automake version newer
than 1.11.x (without "de-ANSI-fication support"), the ./configure script
warns you not to use this generated build system to generate distribution
archives.
Drawback of this patch: you MUST use our autogen.sh script, you can't call
the autoconf/automake commands directly any more; but autoreconf should
still work ...
Diffstat (limited to 'src/ipaddr')
| -rw-r--r-- | src/ipaddr/.gitignore | 1 | ||||
| -rw-r--r-- | src/ipaddr/Makefile.ng (renamed from src/ipaddr/Makefile.am) | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ipaddr/.gitignore b/src/ipaddr/.gitignore new file mode 100644 index 00000000..08a6d725 --- /dev/null +++ b/src/ipaddr/.gitignore @@ -0,0 +1 @@ +Makefile.am diff --git a/src/ipaddr/Makefile.am b/src/ipaddr/Makefile.ng index 6ce299f2..3d5a5db9 100644 --- a/src/ipaddr/Makefile.am +++ b/src/ipaddr/Makefile.ng @@ -3,7 +3,7 @@ # (c) 2008 Florian Westphal <fw@strlen.de>, public domain. # -AUTOMAKE_OPTIONS = ../portab/ansi2knr +__ng_Makefile_am_template__ INCLUDES = -I$(srcdir)/../portab |