Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
67226ea2
Commit
67226ea2
authored
Aug 03, 2003
by
Eric Petit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure.ac : added needed linking flags for BeOS/Zeta
Makefile.am : cleaned make packages-beos
parent
eb8fdde6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
9 deletions
+14
-9
Makefile.am
Makefile.am
+8
-7
configure.ac
configure.ac
+6
-2
No files found.
Makefile.am
View file @
67226ea2
...
...
@@ -524,7 +524,7 @@ package-beos:
mkdir
-p
$(srcdir)/tmp/vlc
cd
$(srcdir)
&&
\
cp
vlc
AUTHORS
COPYING
ChangeLog
README
THANKS
NEWS
tmp/vlc/
# We cannot use ${PLUGIN_FILES}
, it looks like it is too long
for the BeOS shell...
# We cannot use ${PLUGIN_FILES}
as it looks like it is too "long"
for the BeOS shell...
if
[
`find
$(srcdir)/modules
-name
"lib*_plugin.so"
|
wc
-l`
-gt
0
];
then
\
mkdir
-p
$(srcdir)/tmp/vlc/plugins;
\
find
$(srcdir)/modules
-name
"lib*_plugin.so"
|
xargs
-i{}
cp
{}
$(srcdir)/tmp/vlc/plugins/;
\
...
...
@@ -533,7 +533,6 @@ package-beos:
mkdir
-p
$(srcdir)/tmp/vlc/locale/$${i}/LC_MESSAGES
;
\
cp
$(srcdir)/po/$${i}.gmo
$(srcdir)/tmp/vlc/locale/$${i}/LC_MESSAGES/vlc.mo
||
true
;
\
done
mkdir
-p
$(srcdir)/tmp/vlc/share
# Create package with debug symbols
mimeset
-f
$(srcdir)/tmp/vlc/*
$(srcdir)/tmp/vlc/*/*
...
...
@@ -542,12 +541,14 @@ package-beos:
mv
$(srcdir)/tmp/vlc-${VERSION}-BeOS-debug.zip
$(srcdir)/
# Create package without debug symbols
strip
$(srcdir)/tmp/vlc-${VERSION}/vlc
if
[
-d
$(srcdir)/tmp/vlc-${VERSION}/plugins
];
then
\
strip
$(srcdir)/tmp/vlc-${VERSION}/plugins/lib*_plugin.so;
\
mv
$(srcdir)/tmp/vlc-${VERSION}
$(srcdir)/tmp/vlc
strip
$(srcdir)/tmp/vlc/vlc
if
[
-d
$(srcdir)/tmp/vlc/plugins
];
then
\
strip
$(srcdir)/tmp/vlc/plugins/lib*_plugin.so;
\
fi
xres
-o
$(srcdir)/tmp/vlc-${VERSION}/vlc
$(srcdir)/share/vlc_beos.rsrc
mimeset
-f
$(srcdir)/tmp/vlc-${VERSION}/*
$(srcdir)/tmp/vlc-${VERSION}/*/*
xres
-o
$(srcdir)/tmp/vlc/vlc
$(srcdir)/share/vlc_beos.rsrc
mimeset
-f
$(srcdir)/tmp/vlc/*
$(srcdir)/tmp/vlc/*/*
mv
$(srcdir)/tmp/vlc
$(srcdir)/tmp/vlc-${VERSION}
(cd
$(srcdir)/tmp
;
zip
-9
-r
vlc-${VERSION}-BeOS.zip
vlc-${VERSION}
)
mv
$(srcdir)/tmp/vlc-${VERSION}-BeOS.zip
$(srcdir)/
...
...
configure.ac
View file @
67226ea2
dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.5
2 2003/08/02 14:06:22 gbazin
Exp $
dnl $Id: configure.ac,v 1.5
3 2003/08/03 13:49:37 titer
Exp $
AC_INIT(vlc,0.6.2-cvs)
...
...
@@ -138,9 +138,13 @@ case "${target_os}" in
AX_ADD_LDFLAGS([vlc beos],[-lbe])
AX_ADD_CXXFLAGS([beos],[])
AX_ADD_LDFLAGS([beos],[-lmedia -ltranslation -ltracker -lgame])
dnl Check if we have BONE (old net_server doesn't have libsocket.so)
dnl Check for BONE presence
AC_CHECK_LIB(socket, connect,
AX_ADD_LDFLAGS([vlc access_mms ipv4 httpd],[-lsocket -lbind]))
dnl Check for Zeta
AC_CHECK_LIB(zeta, find_directory_r, AX_ADD_LDFLAGS([vlc beos],[-lzeta]))
;;
*)
SYS="${target_os}"
...
...
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