summaryrefslogtreecommitdiffstats
path: root/patches/xmlrpc-c-1.06.42/autogen.sh
blob: f2a7963b60e449976fea70c380500bb2b2fb7cd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash

set -e

aclocal $ACLOCAL_FLAGS

#
# use automake to install the file "missing"
#
# automake fill fail, because the package doesn't use automake.
# but this is the easiest way :)
#
automake \
	-f \
	--copy \
	--add-missing || true

libtoolize \
	--force \
	--copy

autoheader \
	--force \
	-Wall

autoconf \
	--force \
	-Wall