Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
4ee6aa92
Commit
4ee6aa92
authored
May 28, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bootstrap: Warn if contrib hasn't been built (on Mac OS X). (good for new comers).
parent
ce39456c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
bootstrap
bootstrap
+14
-0
No files found.
bootstrap
View file @
4ee6aa92
...
@@ -40,6 +40,20 @@ if test -d extras/contrib/bin; then
...
@@ -40,6 +40,20 @@ if test -d extras/contrib/bin; then
ACLOCAL_ARGS="${ACLOCAL_ARGS} -I extras/contrib/share/aclocal"
ACLOCAL_ARGS="${ACLOCAL_ARGS} -I extras/contrib/share/aclocal"
fi
fi
if test ".`uname -s`" = ".Darwin"; then
if test ".`uname -s`" = ".Darwin"; then
# Make sure contrib has been built
if test ! -e ./extras/contrib/config.mak; then
set +x
echo ""
echo "ERR: Contribs haven't been built"
echo "ERR: Please run:"
echo ""
echo "ERR: 'cd extras/contrib && ./bootstrap && make && cd ../..'"
echo ""
echo "ERR: Make sure fink has been disabled too"
echo ""
set -x
exit 1
fi
export LD_LIBRARY_PATH=./extras/contrib/lib:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH=./extras/contrib/lib:$LD_LIBRARY_PATH
export DYLD_LIBRARY_PATH=./extras/contrib/lib:$DYLD_LIBRARY_PATH
export DYLD_LIBRARY_PATH=./extras/contrib/lib:$DYLD_LIBRARY_PATH
elif test ".`uname -s`" = ".BeOS"; then
elif test ".`uname -s`" = ".BeOS"; then
...
...
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