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
16cf721d
Commit
16cf721d
authored
Dec 25, 2002
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Re-enabled package-* Makefile rules,
* Worked around automake stack overflow bug on Darwin.
parent
c3cd2873
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
93 additions
and
3 deletions
+93
-3
Makefile.am
Makefile.am
+87
-0
bootstrap
bootstrap
+4
-1
ipkg/Makefile.am
ipkg/Makefile.am
+2
-2
No files found.
Makefile.am
View file @
16cf721d
...
@@ -482,6 +482,93 @@ share/vlc_win32_rc.$(OBJEXT): share/vlc_win32_rc.rc
...
@@ -482,6 +482,93 @@ share/vlc_win32_rc.$(OBJEXT): share/vlc_win32_rc.rc
$(WINDRES)
--include-dir
share
-i
$<
-o
$@
$(WINDRES)
--include-dir
share
-i
$<
-o
$@
endif
endif
###############################################################################
# Building architecture-specific binary packages
###############################################################################
# XXX: this rule is probably only useful to you if you have exactly
# the same setup as me. Contact sam@zoy.org if you need to use it.
#
# Check that tmp isn't in the way
package-win32
:
@
if
test
-e
tmp
;
then
\
echo
"Error: please remove ./tmp, it is in the way"
;
false
;
\
else
\
echo
"OK."
;
mkdir
tmp
;
\
fi
# Create installation script
cp
install-win32
tmp/nsi
# Copy relevant files
cp
vlc.exe
tmp/
$(STRIP)
tmp/vlc.exe
cp
INSTALL.win32
tmp/INSTALL.txt
;
unix2dos
tmp/INSTALL.txt
for
file
in
AUTHORS
COPYING
ChangeLog
README
FAQ
TODO
;
\
do
cp
$$file
tmp/$${file}.txt
;
\
unix2dos
tmp/$${file}.txt
;
done
mkdir
tmp/plugins
for
i
in
dummy
$(PLUGIN_FILES)
;
do
if
test
"x$$i"
!=
"xdummy"
;
then
\
$(INSTALL)
$$i
tmp/plugins/
;
\
fi
;
done
# don't include these two
#rm -f tmp/plugins/gtk.so tmp/plugins/sdl.so
for
i
in
dummy
tmp/plugins/*.so
;
do
if
test
$$i
!=
tmp/plugins/intfwin.so
-a
$$
i
!=
dummy
;
then
$(STRIP)
$$
i
;
fi
;
done
mkdir
tmp/share
for
file
in
default8x16.psf
default8x9.psf
;
\
do
cp
share/$$file
tmp/share/
;
done
# Create package
wine
~/.wine/fake_windows/Program\
Files/NSIS/makensis.exe
--
/
DVERSION
=
${VERSION}
/CD tmp/nsi
# Clean up
rm
-Rf
tmp
package-beos
:
# Check that tmp isn't in the way
@if
test
-e
tmp;
then
\
echo "Error
:
please remove ./tmp
,
it is in the way"; false;
\
else
\
echo "OK."; mkdir tmp;
\
fi
# Create dir
mkdir
-p
tmp/vlc/share
# Copy relevant files
cp
vlc
tmp/vlc/
$(STRIP)
tmp/vlc/vlc
xres
-o
tmp/vlc/vlc
./share/vlc_beos.rsrc
cp
AUTHORS
COPYING
ChangeLog
README
FAQ
TODO
tmp/vlc/
for
file
in
default8x16.psf
default8x9.psf
;
\
do
cp
share/$$file
tmp/vlc/share/
;
done
mkdir
tmp/vlc/plugins
for
i
in
dummy
$(PLUGIN_FILES)
;
do
if
test
"x$$i"
!=
"xdummy"
;
then
\
$(INSTALL)
$$i
tmp/vlc/plugins/
;
\
fi
;
done
for
i
in
dummy
tmp/vlc/plugins/*.so
;
do
if
test
$$i
!=
dummy
;
then
$(STRIP)
$$
i
;
fi
;
done
# Create package
mv
tmp/vlc
tmp/vlc-${VERSION}
(cd
tmp
;
find
vlc-${VERSION}
|
\
zip
-9
-@
vlc-${VERSION}-BeOS-x86.zip
)
mv
tmp/vlc-${VERSION}-BeOS-x86.zip
.
# Clean up
rm
-Rf
tmp
package-macosx
:
# Check that tmp isn't in the way
@if
test
-e
tmp;
then
\
echo "Error
:
please remove ./tmp
,
it is in the way"; false;
\
else
\
echo "OK."; mkdir tmp;
\
fi
# Copy relevant files
cp
-R
vlc.app
tmp/
$(STRIP)
tmp/vlc.app/Contents/MacOS/vlc
cp
AUTHORS
COPYING
ChangeLog
README
README.MacOSX.rtf
FAQ
TODO
tmp/
# Create disk image
./macosx-dmg
15
"vlc-${VERSION}"
tmp/*
# Clean up
rm
-Rf
tmp
###############################################################################
###############################################################################
# Building the Mozilla plugin
# Building the Mozilla plugin
###############################################################################
###############################################################################
...
...
bootstrap
View file @
16cf721d
#! /bin/sh
#! /bin/sh
## bootstrap file for vlc, the VideoLAN Client
## bootstrap file for vlc, the VideoLAN Client
## $Id: bootstrap,v 1.3
4 2002/12/17 14:39:05 sam
Exp $
## $Id: bootstrap,v 1.3
5 2002/12/25 21:02:35 massiot
Exp $
##
##
## Authors: Samuel Hocevar <sam@zoy.org>
## Authors: Samuel Hocevar <sam@zoy.org>
...
@@ -294,6 +294,9 @@ PERLSUCKS=no
...
@@ -294,6 +294,9 @@ PERLSUCKS=no
AUTOMAKESUCKS
=
no
AUTOMAKESUCKS
=
no
INSTALLSUCKS
=
no
INSTALLSUCKS
=
no
# Mac OS X stacksize sucks
if
test
x
`
uname
-s
`
=
xDarwin
;
then
ulimit
-s
20000
;
fi
##
##
## Generate the modules makefile, by parsing modules/**/Modules.am
## Generate the modules makefile, by parsing modules/**/Modules.am
##
##
...
...
ipkg/Makefile.am
View file @
16cf721d
...
@@ -14,5 +14,5 @@ EXTRA_DIST = \
...
@@ -14,5 +14,5 @@ EXTRA_DIST = \
postrm.opie
\
postrm.opie
\
vlc.desktop
\
vlc.desktop
\
vlc.gpe
\
vlc.gpe
\
vlc.opie
\
vlc.opie
$(NULL)
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