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
d1aefb4d
Commit
d1aefb4d
authored
Aug 10, 2002
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Preparation for Qt embedded support.
parent
4c2c599e
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
536 additions
and
473 deletions
+536
-473
Makefile.opts.in
Makefile.opts.in
+2
-0
STATUS
STATUS
+5
-1
configure
configure
+509
-472
configure.in
configure.in
+20
-0
No files found.
Makefile.opts.in
View file @
d1aefb4d
...
@@ -78,6 +78,7 @@ memcpyaltivec_CFLAGS = @memcpyaltivec_CFLAGS@
...
@@ -78,6 +78,7 @@ memcpyaltivec_CFLAGS = @memcpyaltivec_CFLAGS@
motionaltivec_CFLAGS
=
@motionaltivec_CFLAGS@
motionaltivec_CFLAGS
=
@motionaltivec_CFLAGS@
ts_dvbpsi_CFLAGS
=
@ts_dvbpsi_CFLAGS@
ts_dvbpsi_CFLAGS
=
@ts_dvbpsi_CFLAGS@
qt_CFLAGS
=
@qt_CFLAGS@
qt_CFLAGS
=
@qt_CFLAGS@
qte_CFLAGS
=
@qte_CFLAGS@
sdl_CFLAGS
=
@sdl_CFLAGS@
sdl_CFLAGS
=
@sdl_CFLAGS@
x11_CFLAGS
=
@x11_CFLAGS@
x11_CFLAGS
=
@x11_CFLAGS@
xvideo_CFLAGS
=
@xvideo_CFLAGS@
xvideo_CFLAGS
=
@xvideo_CFLAGS@
...
@@ -127,6 +128,7 @@ ncurses_LDFLAGS = @ncurses_LDFLAGS@
...
@@ -127,6 +128,7 @@ ncurses_LDFLAGS = @ncurses_LDFLAGS@
oss_LDFLAGS
=
@oss_LDFLAGS@
oss_LDFLAGS
=
@oss_LDFLAGS@
qnx_LDFLAGS
=
@qnx_LDFLAGS@
qnx_LDFLAGS
=
@qnx_LDFLAGS@
qt_LDFLAGS
=
@qt_LDFLAGS@
qt_LDFLAGS
=
@qt_LDFLAGS@
qte_LDFLAGS
=
@qte_LDFLAGS@
rc_LDFLAGS
=
@rc_LDFLAGS@
rc_LDFLAGS
=
@rc_LDFLAGS@
sdl_LDFLAGS
=
@sdl_LDFLAGS@
sdl_LDFLAGS
=
@sdl_LDFLAGS@
ts_dvbpsi_LDFLAGS
=
@ts_dvbpsi_LDFLAGS@
ts_dvbpsi_LDFLAGS
=
@ts_dvbpsi_LDFLAGS@
...
...
STATUS
View file @
d1aefb4d
# $Id: STATUS,v 1.
2 2002/07/22 13:48:13
jpsaman Exp $
# $Id: STATUS,v 1.
3 2002/08/10 11:35:30
jpsaman Exp $
#
#
# VLC STATUS
# VLC STATUS
#
#
...
@@ -59,3 +59,7 @@ Christophe Massiot <massiot@via.ecp.fr> :
...
@@ -59,3 +59,7 @@ Christophe Massiot <massiot@via.ecp.fr> :
Jean-Paul Saman <jpsaman@wxs.nl> :
Jean-Paul Saman <jpsaman@wxs.nl> :
- Familiar Linux interface for iPaq
- Familiar Linux interface for iPaq
ETA : late summer
ETA : late summer
Gerald Hansink <gerald.hansink@ordina.nl> :
- Video Out module for QT Embedded
ETA : end of 2002
configure
View file @
d1aefb4d
This source diff could not be displayed because it is too large. You can
view the blob
instead.
configure.in
View file @
d1aefb4d
...
@@ -1640,6 +1640,24 @@ AC_ARG_ENABLE(kde,
...
@@ -1640,6 +1640,24 @@ AC_ARG_ENABLE(kde,
fi
fi
fi])
fi])
dnl
dnl Qt embedded module
dnl
AC_ARG_ENABLE(qte,
[ --enable-qte Qt embedded interface support (default disabled)],
[if test "x${enable_qte}" = "xyes"; then
PLUGINS="${PLUGINS} gui/qte/qte"
qte_LDFLAGS="${qte_LDFLAGS} -lqte -L${QTEDIR}/lib"
qte_CFLAGS="${qte_CFLAGS} -I/usr/include/qte -I${QTEDIR}/include"
if test -x ${QTEDIR}/bin/moc
then
MOC=${QTEDIR}/bin/moc
else
MOC=moc
fi
fi])
dnl
dnl
dnl MacOS X module
dnl MacOS X module
dnl
dnl
...
@@ -1971,6 +1989,7 @@ AC_SUBST(mad_CFLAGS)
...
@@ -1971,6 +1989,7 @@ AC_SUBST(mad_CFLAGS)
AC_SUBST(memcpyaltivec_CFLAGS)
AC_SUBST(memcpyaltivec_CFLAGS)
AC_SUBST(motionaltivec_CFLAGS)
AC_SUBST(motionaltivec_CFLAGS)
AC_SUBST(qt_CFLAGS)
AC_SUBST(qt_CFLAGS)
AC_SUBST(qte_CFLAGS)
AC_SUBST(sdl_CFLAGS)
AC_SUBST(sdl_CFLAGS)
AC_SUBST(x11_CFLAGS)
AC_SUBST(x11_CFLAGS)
AC_SUBST(xvideo_CFLAGS)
AC_SUBST(xvideo_CFLAGS)
...
@@ -2018,6 +2037,7 @@ AC_SUBST(ncurses_LDFLAGS)
...
@@ -2018,6 +2037,7 @@ AC_SUBST(ncurses_LDFLAGS)
AC_SUBST(oss_LDFLAGS)
AC_SUBST(oss_LDFLAGS)
AC_SUBST(qnx_LDFLAGS)
AC_SUBST(qnx_LDFLAGS)
AC_SUBST(qt_LDFLAGS)
AC_SUBST(qt_LDFLAGS)
AC_SUBST(qte_LDFLAGS)
AC_SUBST(rc_LDFLAGS)
AC_SUBST(rc_LDFLAGS)
AC_SUBST(sdl_LDFLAGS)
AC_SUBST(sdl_LDFLAGS)
AC_SUBST(vcd_LDFLAGS)
AC_SUBST(vcd_LDFLAGS)
...
...
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