Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
Icecast-Server
Commits
536b0b58
Commit
536b0b58
authored
Jul 23, 2014
by
Thomas B. Rücker
😊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Applying
svn path=/icecast/trunk/icecast/; revision=19177
parent
a82d5fa3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
12 deletions
+23
-12
autogen.sh
autogen.sh
+23
-12
No files found.
autogen.sh
View file @
536b0b58
...
...
@@ -22,7 +22,7 @@ VERSIONGREP="sed -e s/.*[^0-9\.]\([0-9]\.[0-9]\).*/\1/"
# do we need automake?
if
test
-r
Makefile.am
;
then
echo
Checking
for
automake version
echo
"
Checking for automake version
"
options
=
`
fgrep AUTOMAKE_OPTIONS Makefile.am
`
AM_NEEDED
=
`
echo
"
$options
"
|
$VERSIONGREP
`
AM_PROGS
=
automake
...
...
@@ -70,17 +70,23 @@ if test -r Makefile.am; then
}
fi
(
libtoolize
--version
)
>
/dev/null 2>&1
||
{
echo
echo
"You must have libtool installed to compile
$package
."
echo
"Download the appropriate package for your system,"
echo
"or get the source from one of the GNU ftp sites"
echo
"listed in http://www.gnu.org/order/ftp.html"
DIE
=
1
}
if
command
libtoolize
--version
2>/dev/null
;
then
USE_GLIBTOOLIZE
=
0
else
if
command
glibtoolize
--version
2>/dev/null
;
then
USE_GLIBTOOLIZE
=
1
else
echo
echo
"You must have libtool installed to compile
$package
."
echo
"Download the appropriate package for your system,"
echo
"or get the source from one of the GNU ftp sites"
echo
"listed in http://www.gnu.org/order/ftp.html"
DIE
=
1
fi
fi
if
test
"
$DIE
"
-eq
1
;
then
exit
1
exit
1
fi
echo
"Generating configuration files for
$package
, please wait...."
...
...
@@ -94,8 +100,13 @@ fi
echo
" autoheader"
autoheader
echo
" libtoolize --automake"
libtoolize
--automake
if
test
"
$USE_GLIBTOOLIZE
"
-eq
0
;
then
echo
" libtoolize --automake"
libtoolize
--automake
else
echo
" glibtoolize --automake"
glibtoolize
--automake
fi
if
test
-n
"
$AUTOMAKE
"
;
then
echo
"
$AUTOMAKE
--add-missing"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment