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
f3d741a2
Commit
f3d741a2
authored
Dec 18, 2009
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
automake: Use CONTRIB_DIR instead of manually assuming contrib location.
parent
4c553411
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
Makefile.am
Makefile.am
+5
-5
configure.ac
configure.ac
+1
-0
No files found.
Makefile.am
View file @
f3d741a2
...
...
@@ -357,9 +357,9 @@ vlc-bundle: vlc
cp
"
$$
i
$(LIBEXT)
"
$(top_builddir)
/vlc-bundle/plugins/
;
\
fi
;
\
done
if
test
-d
$(
top_builddir)
/extras/contrib
/vlc-lib
;
then
\
if
test
-d
$(
CONTRIB_DIR)
/vlc-lib
;
then
\
mkdir
-p
$(top_builddir)
/vlc-bundle/lib
;
\
for
i
in
$(
top_builddir)
/extras/contrib
/vlc-lib/
*
.so
;
do
\
for
i
in
$(
CONTRIB_DIR)
/vlc-lib/
*
.so
;
do
\
cp
$$
i
$(top_builddir)
/vlc-bundle/lib/
;
\
done
;
\
fi
...
...
@@ -440,7 +440,7 @@ VLC-release.app: vlc
cp
"
$(srcdir)
/
$$
i"
$(top_builddir)
/tmp
;
\
done
mkdir
-p
$(top_builddir)
/tmp/extras/contrib/Sparkle
cp
-R
$(
top_srcdir)
/extras/contrib
/Sparkle/Sparkle.framework
$(top_builddir)
/tmp/extras/contrib/Sparkle
cp
-R
$(
CONTRIB_DIR)
/Sparkle/Sparkle.framework
$(top_builddir)
/tmp/extras/contrib/Sparkle
mkdir
-p
$(top_builddir)
/tmp/modules/audio_output
mkdir
-p
$(top_builddir)
/tmp/modules/gui/macosx
for
i
in
\
...
...
@@ -593,7 +593,7 @@ VLC.app: vlc $(top_builddir)/src/.libs/libvlccore.dylib $(top_builddir)/src/.lib
cp
"
$(srcdir)
/
$$
i"
$(top_builddir)
/tmp
;
\
done
mkdir
-p
$(top_builddir)
/tmp/extras/contrib/Sparkle
cp
-R
$(
top_srcdir)
/extras/contrib
/Sparkle/Sparkle.framework
$(top_builddir)
/tmp/extras/contrib/Sparkle
cp
-R
$(
CONTRIB_DIR)
/Sparkle/Sparkle.framework
$(top_builddir)
/tmp/extras/contrib/Sparkle
mkdir
-p
$(top_builddir)
/tmp/modules/audio_output
mkdir
-p
$(top_builddir)
/tmp/modules/gui/macosx
for
i
in
\
...
...
@@ -765,7 +765,7 @@ package-win32-base-debug: package-win-common
fi
;
done
# Contrib *.dll's
# cp $(
srcdir)/extras/contrib
/lib/*.dll "vlc-$(VERSION)/" || true
# cp $(
CONTRIB_DIR)
/lib/*.dll "vlc-$(VERSION)/" || true
#Enable DEP and ASLR for all the binaries
if
USE_PEFLAGS
...
...
configure.ac
View file @
f3d741a2
...
...
@@ -135,6 +135,7 @@ AC_ARG_WITH(contrib,
AC_MSG_CHECKING([for libs in ${CONTRIB_DIR}])
AS_IF([test -d ${CONTRIB_DIR}/lib],[
AC_MSG_RESULT([yes])
AC_SUBST(CONTRIB_DIR)
export PATH=${CONTRIB_DIR}/bin:$PATH
CPPFLAGS="${CPPFLAGS} -I${CONTRIB_DIR}/include"
CPPFLAGS_save="${CPPFLAGS_save} -I${CONTRIB_DIR}/include"
...
...
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