Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libdvbpsi
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
libdvbpsi
Commits
fc4f4237
Commit
fc4f4237
authored
Dec 02, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./bootstrap: automake 1.7 is accepted as well.
* ./bootstrap: we look for glibtoolize if libtoolize isn't present.
parent
340d0e22
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
14 deletions
+24
-14
bootstrap
bootstrap
+24
-14
No files found.
bootstrap
View file @
fc4f4237
...
...
@@ -5,10 +5,14 @@ rm -f aclocal.m4 configure config.guess config.log config.sub ltmain.sh libtool
# Check for automake
amvers
=
"none"
if
automake-1.
6
--version
>
/dev/null 2>&1
if
automake-1.
7
--version
>
/dev/null 2>&1
then
amvers
=
"-1.
6
"
amvers
=
"-1.
7
"
else
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"
...
...
@@ -23,6 +27,7 @@ else
fi
fi
fi
fi
fi
if
test
x
$amvers
=
xnone
...
...
@@ -33,7 +38,12 @@ then
fi
aclocal
${
amvers
}
||
exit
1
libtoolize
--force
--copy
||
exit
1
if
libtoolize
--version
>
/dev/null 2>&1
then
libtoolize
--force
--copy
||
exit
1
else
glibtoolize
--force
--copy
||
exit
1
fi
autoheader
||
exit
1
#add --include-deps if you want to bootstrap with any other compiler than gcc
#automake${amvers} --add-missing --copy --include-deps || exit 1
...
...
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