Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
0eb0aecc
Commit
0eb0aecc
authored
Nov 23, 2003
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed bugs in the contrib build system. In particular 'make bin' should
work now.
parent
929113ae
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
84 additions
and
9 deletions
+84
-9
Makefile.am
Makefile.am
+4
-2
extras/contrib/Makefile
extras/contrib/Makefile
+20
-4
extras/contrib/change_prefix.sh
extras/contrib/change_prefix.sh
+57
-0
extras/contrib/src/Makefile
extras/contrib/src/Makefile
+3
-3
No files found.
Makefile.am
View file @
0eb0aecc
...
...
@@ -484,8 +484,10 @@ VLC.app: vlc
"
$(top_builddir)
/VLC.app/Contents/MacOS/modules"
;
\
fi
;
done
if
test
-d
$(top_builddir)
/extras/contrib/vlc-lib
;
then
\
cp
-R
$(top_builddir)
/extras/contrib/vlc-lib
\
$(top_builddir)
/VLC.app/Contents/MacOS/lib
;
\
mkdir
-p
$(top_builddir)
/VLC.app/Contents/MacOS/lib
;
\
for
i
in
$(top_builddir)
/extras/contrib/vlc-lib/
*
.dylib
;
do
\
install
-c
$
${i}
$(top_builddir)
/VLC.app/Contents/MacOS/lib/vlc_
`
basename
$
${i}
`
;
\
done
;
\
fi
$(INSTALL)
-d
$(top_builddir)
/VLC.app/Contents/MacOS/share
$(INSTALL)
-d
$(top_builddir)
/VLC.app/Contents/MacOS/share/http
...
...
extras/contrib/Makefile
View file @
0eb0aecc
...
...
@@ -2,7 +2,7 @@
# Makefile : Build vlc-contrib files
# ***************************************************************************
# Copyright (C) 2003 VideoLAN
# $Id: Makefile,v 1.
2 2003/11/15 13:09:02
massiot Exp $
# $Id: Makefile,v 1.
3 2003/11/23 13:06:43
massiot Exp $
#
# Authors: Christophe Massiot <massiot@via.ecp.fr>
#
...
...
@@ -23,7 +23,7 @@
include
./config.mak
BUILDDIRS
=
bin doc etc include info lib man sbin share vlc-lib
BUILDDIRS
=
bin doc etc include info lib man sbin share vlc-lib
tmp
all
:
FORCE
@
echo
"Do you mean to make src or make bin ?"
...
...
@@ -35,7 +35,15 @@ contrib-macosx.tar.bz2: FORCE
$(WGET)
$(CONTRIB_URL)
bin
:
contrib-macosx.tar.bz2
bunzip2
-c
$<
|
tar
xf -
@
if
test
-d
tmp
;
then
\
echo
"Move away ./tmp, it's in the way"
;
\
exit
1
;
\
fi
mkdir
tmp
bunzip2
-c
$<
|
(
cd
tmp
;
tar
xf -
)
./change_prefix.sh tmp @@CONTRIB_PREFIX@@
$(PREFIX)
(
cd
tmp
;
tar
cf -
)
|
tar
xf -
rm
-rf
tmp
clean-src
:
FORCE
$(MAKE)
-C
src clean-src
...
...
@@ -48,8 +56,16 @@ clean: FORCE
@
echo
"Do you mean to clean-src or clean-bin ?"
package
:
FORCE
@
if
test
-d
tmp
;
then
\
echo
"Move away ./tmp, it's in the way"
;
\
exit
1
;
\
fi
mkdir
tmp
tar
cf - bin include lib vlc-lib share/aclocal
*
share/autoconf
*
\
share/automake
*
share/gettext
*
\
| bzip2
-c
>
contrib.tar.bz2
|
(
cd
tmp
;
tar
xf -
)
./change_prefix.sh tmp
$(PREFIX)
@@CONTRIB_PREFIX@@
(
cd
tmp
;
tar
cf - .
)
| bzip2
-c
>
contrib-macosx.tar.bz2
rm
-rf
tmp
FORCE
:
extras/contrib/change_prefix.sh
0 → 100755
View file @
0eb0aecc
#!/bin/sh
# ***************************************************************************
# change_prefix.sh : allow to transfer a contrib dir
# ***************************************************************************
# Copyright (C) 2003 VideoLAN
# $Id: change_prefix.sh,v 1.1 2003/11/23 13:06:43 massiot Exp $
#
# Authors: Christophe Massiot <massiot@via.ecp.fr>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
# ***************************************************************************
usage
=
"Usage:
$0
<directory> <prefix> <new_prefix>"
LANG
=
C
export
LANG
if
test
.
$1
=
.-h
-o
.
$1
=
.--help
-o
$#
!=
3
;
then
echo
$usage
exit
1
fi
top_dir
=
`
cd
$1
;
pwd
`
prefix
=
$2
new_prefix
=
$3
if
test
-z
$prefix
-o
-z
$new_prefix
;
then
echo
$usage
exit
1
fi
cd
$top_dir
files
=
`
find
.
-type
f
`
for
file
in
$files
;
do
libs
=
`
otool
-L
$file
2>/dev/null |
grep
$prefix
|
cut
-d
\
-f
1
`
for
i
in
""
$libs
;
do
if
!
test
-z
$i
;
then
install_name_tool
-change
$i
\
`
echo
$i
|
sed
-e
"s,
$prefix
,
$new_prefix
,"
`
\
$file
fi
done
sed
-e
"s,
$prefix
,
$new_prefix
,g"
<
$file
>
$file
.tmp
mv
-f
$file
.tmp
$file
done
extras/contrib/src/Makefile
View file @
0eb0aecc
...
...
@@ -2,7 +2,7 @@
# src/Makefile : Dearchive and compile all files necessary
# ***************************************************************************
# Copyright (C) 2003 VideoLAN
# $Id: Makefile,v 1.
5 2003/11/17 15:11:05 hartman
Exp $
# $Id: Makefile,v 1.
6 2003/11/23 13:06:43 massiot
Exp $
#
# Authors: Christophe Massiot <massiot@via.ecp.fr>
#
...
...
@@ -76,7 +76,7 @@ endef
define
INSTALL_NAME_LIB
install_name_tool
\
-change
$(PREFIX)/lib/$(shell
cd
$(PREFIX)/lib;
ls
|
grep
"lib$(INSTALL_LIB).[0-9]*.dylib"
)
\
@executable_path/lib/lib$(INSTALL_LIB).dylib
\
@executable_path/lib/
vlc_
lib$(INSTALL_LIB).dylib
\
$(PREFIX)/vlc-lib/lib$(patsubst
.%,%,$@).dylib
;
endef
...
...
@@ -86,7 +86,7 @@ define INSTALL_NAME
cp
$(PREFIX)/lib/lib$(patsubst
.%,%,$@).dylib
\
$(PREFIX)/vlc-lib/lib$(patsubst
.%,%,$@).dylib
;
\
install_name_tool
\
-id
@executable_path/lib/lib$(patsubst
.%,%,$@).dylib
\
-id
@executable_path/lib/
vlc_
lib$(patsubst
.%,%,$@).dylib
\
$(PREFIX)/vlc-lib/lib$(patsubst
.%,%,$@).dylib
;
\
$(foreach
INSTALL_LIB,$(patsubst
.%,%,$(filter
.%,$^)),
\
$(INSTALL_NAME_LIB))
\
...
...
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