We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d24c9bd commit 5dc2b11Copy full SHA for 5dc2b11
autogen.sh
@@ -36,6 +36,11 @@ fi
36
echo "You must have autoconf installed to compile xmlsec."
37
DIE=1
38
}
39
+(autoreconf --version) < /dev/null > /dev/null 2>&1 || {
40
+ echo
41
+ echo "You must have autoreconf installed to compile xmlsec."
42
+ DIE=1
43
+}
44
(automake --version) < /dev/null > /dev/null 2>&1 || {
45
echo
46
echo "You must have automake installed to compile xmlsec."
@@ -76,6 +81,8 @@ echo "Running automake..."
76
81
automake --gnu --add-missing
77
82
echo "Running autoconf..."
78
83
autoconf
84
+echo "Running autoreconf..."
85
+autoreconf -i
79
86
80
87
cd $THEDIR
88
0 commit comments