Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
6129f1ce
Commit
6129f1ce
authored
Jul 22, 2004
by
Eric Petit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contrib system adapted for BeOS (need to set LIBRARY_PATH and BELIBRARIES)
parent
23d3f63c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
bootstrap
bootstrap
+7
-2
configure.ac
configure.ac
+7
-2
No files found.
bootstrap
View file @
6129f1ce
...
@@ -34,9 +34,14 @@ ACLOCAL_ARGS="-I m4"
...
@@ -34,9 +34,14 @@ ACLOCAL_ARGS="-I m4"
# Check for contrib directory
# Check for contrib directory
if
test
-d
extras/contrib/bin
;
then
if
test
-d
extras/contrib/bin
;
then
export
PATH
=
./extras/contrib/bin:
$PATH
export
PATH
=
./extras/contrib/bin:
$PATH
export
LD_LIBRARY_PATH
=
./extras/contrib/lib:
$LD_LIBRARY_PATH
export
DYLD_LIBRARY_PATH
=
./extras/contrib/lib:
$DYLD_LIBRARY_PATH
ACLOCAL_ARGS
=
"
${
ACLOCAL_ARGS
}
-I extras/contrib/share/aclocal"
ACLOCAL_ARGS
=
"
${
ACLOCAL_ARGS
}
-I extras/contrib/share/aclocal"
if
test
".
`
uname
-s
`
"
=
".Darwin"
;
then
export
LD_LIBRARY_PATH
=
./extras/contrib/lib:
$LD_LIBRARY_PATH
export
DYLD_LIBRARY_PATH
=
./extras/contrib/lib:
$DYLD_LIBRARY_PATH
elif
test
".
`
uname
-s
`
"
=
".BeOS"
;
then
export
LIBRARY_PATH
=
./extras/contrib/lib:
$LIBRARY_PATH
export
BELIBRARIES
=
./extras/contrib/lib:
$BELIBRARIES
fi
fi
fi
# Check for automake
# Check for automake
...
...
configure.ac
View file @
6129f1ce
...
@@ -69,8 +69,6 @@ dnl
...
@@ -69,8 +69,6 @@ dnl
topdir="`pwd`"
topdir="`pwd`"
if test -d ${topdir}/extras/contrib/lib; then
if test -d ${topdir}/extras/contrib/lib; then
export PATH=${topdir}/extras/contrib/bin:$PATH
export PATH=${topdir}/extras/contrib/bin:$PATH
export LD_LIBRARY_PATH=${topdir}/extras/contrib/lib:$LD_LIBRARY_PATH
export DYLD_LIBRARY_PATH=${topdir}/extras/contrib/lib:$DYLD_LIBRARY_PATH
CPPFLAGS="${CPPFLAGS} -I${topdir}/extras/contrib/include"
CPPFLAGS="${CPPFLAGS} -I${topdir}/extras/contrib/include"
CPPFLAGS_save="${CPPFLAGS_save} -I${topdir}/extras/contrib/include"
CPPFLAGS_save="${CPPFLAGS_save} -I${topdir}/extras/contrib/include"
CFLAGS="${CFLAGS} -I${topdir}/extras/contrib/include"
CFLAGS="${CFLAGS} -I${topdir}/extras/contrib/include"
...
@@ -87,6 +85,13 @@ if test -d ${topdir}/extras/contrib/lib; then
...
@@ -87,6 +85,13 @@ if test -d ${topdir}/extras/contrib/lib; then
LDFLAGS_save="${LDFLAGS_save} -L${topdir}/extras/contrib/lib"
LDFLAGS_save="${LDFLAGS_save} -L${topdir}/extras/contrib/lib"
with_livedotcom_tree=${topdir}/extras/contrib/src/live
with_livedotcom_tree=${topdir}/extras/contrib/src/live
with_goom_tree=${topdir}/extras/contrib/src/goom
with_goom_tree=${topdir}/extras/contrib/src/goom
if test ".`uname -s`" = ".Darwin"; then
export LD_LIBRARY_PATH=${topdir}/extras/contrib/lib:$LD_LIBRARY_PATH
export DYLD_LIBRARY_PATH=${topdir}/extras/contrib/lib:$DYLD_LIBRARY_PATH
elif test ".`uname -s`" = ".BeOS"; then
export LIBRARY_PATH=${topdir}/extras/contrib/lib:$LIBRARY_PATH
export BELIBRARIES=${topdir}/extras/contrib/lib:$BELIBRARIES
fi
fi
fi
dnl
dnl
...
...
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