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
a55cd54a
Commit
a55cd54a
authored
Apr 15, 2008
by
VideoLAN
Committed by
Pierre d'Herbemont
Apr 15, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: Fix VLC-release.app library links.
parent
c64426b9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
14 deletions
+4
-14
Makefile.am
Makefile.am
+1
-13
projects/macosx/framework/Pre-Compile.sh
projects/macosx/framework/Pre-Compile.sh
+3
-1
No files found.
Makefile.am
View file @
a55cd54a
...
...
@@ -450,19 +450,7 @@ VLC-release.app: vlc
$(top_builddir)
/VLC-release.app
;
\
rm
-Rf
$(top_builddir)
/tmp
$(INSTALL)
-d
$(top_builddir)
/VLC-release.app/Contents/MacOS
$(INSTALL)
$(top_builddir)
/src/.libs/vlc
\
$(top_builddir)
/VLC-release.app/Contents/MacOS/VLC
ln
-sf
./VLC
$(top_builddir)
/VLC-release.app/Contents/MacOS/clivlc
$(INSTALL)
-d
$(top_builddir)
/VLC-release.app/Contents/MacOS/modules
for
i
in
""
`
$(VLC_CONFIG)
--target
plugin
`
;
do
\
if
test
-n
"
$$
i"
;
\
then
$(INSTALL)
"
`
pwd
`
/
`
dirname
$$
i
`
/.libs/
`
basename
$$
i
`
$(LIBEXT)
"
\
"
$(top_builddir)
/VLC-release.app/Contents/MacOS/modules"
;
\
fi
;
done
$(INSTALL)
-d
$(top_builddir)
/VLC-release.app/Contents/MacOS/lib
;
\
for
i
in
$(srcdir)
/src/.libs/
*
.dylib
;
do
\
$(INSTALL)
-m
644
$
${i}
$(top_builddir)
/VLC-release.app/Contents/MacOS/lib/
`
basename
$
${i}
`
;
\
done
;
ACTION
=
"VLC-release.app"
src_dir
=
$(srcdir)
build_dir
=
$(top_builddir)
sh
$(srcdir)
/projects/macosx/framework/Pre-Compile.sh
$(INSTALL)
-d
$(top_builddir)
/VLC-release.app/Contents/MacOS/share/lua/playlist
for
i
in
$(srcdir)
/share/lua/playlist/
*
.
*
;
do
\
$(INSTALL)
-m
644
$
${i}
$(top_builddir)
/VLC-release.app/Contents/MacOS/share/lua/playlist/
`
basename
$
${i}
`
;
\
...
...
projects/macosx/framework/Pre-Compile.sh
View file @
a55cd54a
...
...
@@ -90,8 +90,10 @@ if test "${ACTION}" = "build"; then
##########################
# Hack for VLC-release.app
if
[
"
$FULL_PRODUCT_NAME
"
=
"VLC-release.app"
]
;
then
install_library
"
${
VLC_BUILD_DIR
}
/
${
prefix
}
vlc"
"
${
target
}
"
"bin"
"@loader_path/lib"
prefix
=
".libs/"
install_library
"
${
VLC_BUILD_DIR
}
/src/
${
prefix
}
vlc"
"
${
target
}
"
"bin"
"@loader_path/lib"
mv
${
target
}
/vlc
${
target
}
/VLC
chmod
+x
${
target
}
/VLC
else
prefix
=
""
fi
...
...
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