Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
a9b22482
Commit
a9b22482
authored
Aug 28, 2002
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
It now works when there is no automake-1.5 nor automake-1.6.
parent
3eb8eefd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
8 deletions
+24
-8
bootstrap
bootstrap
+24
-8
No files found.
bootstrap
View file @
a9b22482
#! /bin/sh
## bootstrap.sh file for vlc, the VideoLAN Client
## $Id: bootstrap,v 1.1
1 2002/08/28 15:30:57 sam
Exp $
## $Id: bootstrap,v 1.1
2 2002/08/28 19:48:16 massiot
Exp $
##
## Authors: Samuel Hocevar <sam@zoy.org>
...
...
@@ -60,22 +60,38 @@ fi;else
fi
# Check for automake
amvers
=
"none"
if
automake-1.6
--version
>
/dev/null 2>&1
then
amvers
=
1.6
else if
automake-1.5
--version
>
/dev/null 2>&1
then
amvers
=
1.5
amvers
=
"-1.6"
else
if
automake-1.5
--version
>
/dev/null 2>&1
then
amvers
=
"-1.5"
else
if
automake
--version
>
/dev/null 2>&1
then
amvers
=
`
automake
--version
|
head
-1
|
cut
-d
\
-f
4
`
if
expr
"
$amvers
"
"<"
"1.5"
>
/dev/null 2>&1
then
amvers
=
"none"
else
amvers
=
""
fi
fi
fi
fi
if
test
x
$amvers
=
xnone
then
set
+x
echo
"you need automake version 1.5 or later"
exit
1
fi
;
fi
fi
# Do the rest
aclocal
-
${
amvers
}
-I
m4
aclocal
${
amvers
}
-I
m4
autoheader
automake
-
${
amvers
}
--foreign
--add-missing
--copy
automake
${
amvers
}
--foreign
--add-missing
--copy
autoconf
# nuahahahahaha !! overwriting Makefile.in with what *I* want!
...
...
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