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
e48d6195
Commit
e48d6195
authored
Dec 20, 2001
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Added Jeffrey Baker to the AUTHORS file. * Fixed a PPC compilation issue.
parent
48b30bb9
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
98 additions
and
89 deletions
+98
-89
AUTHORS
AUTHORS
+4
-0
Makefile
Makefile
+2
-2
Makefile.opts.in
Makefile.opts.in
+1
-0
configure
configure
+89
-87
configure.in
configure.in
+2
-0
No files found.
AUTHORS
View file @
e48d6195
...
...
@@ -15,6 +15,10 @@ E: oct@zoy.org
C: octplane
D: SDL audio and video output
N: Jeffrey Baker
E: jwbaker@acm.org
D: port of the ALSA plugin to the ALSA 1.0 API
N: Ethan C. Baldridge
E: BaldridgeE@cadmus.com
D: directory browsing code in modules.c
...
...
Makefile
View file @
e48d6195
...
...
@@ -521,12 +521,12 @@ endif
$(C_OBJ)
:
%.o: Makefile.opts Makefile.dep Makefile
$(C_OBJ)
:
%.o: .dep/%.d
$(C_OBJ)
:
%.o: %.c
$(CC)
$(CFLAGS)
-c
-o
$@
$<
$(CC)
$(CFLAGS)
$(CFLAGS_VLC)
-c
-o
$@
$<
$(CPP_OBJ)
:
%.o: Makefile.opts Makefile.dep Makefile
$(CPP_OBJ)
:
%.o: .dep/%.dpp
$(CPP_OBJ)
:
%.o: %.cpp
$(CC)
$(CFLAGS)
-c
-o
$@
$<
$(CC)
$(CFLAGS)
$(CFLAGS_VLC)
-c
-o
$@
$<
$(RESOURCE_OBJ)
:
%.o: Makefile.dep Makefile
ifneq
(,(findstring mingw32,$(SYS)))
...
...
Makefile.opts.in
View file @
e48d6195
...
...
@@ -101,6 +101,7 @@ LIB_XVIDEO = @LIB_XVIDEO@
#
# CFLAGS for special cases
#
CFLAGS_VLC
=
@CFLAGS_VLC@
CFLAGS_ALTIVEC
=
@CFLAGS_ALTIVEC@
CFLAGS_DVD
=
@CFLAGS_DVD@
CFLAGS_DVDREAD
=
@CFLAGS_DVDREAD@
...
...
configure
View file @
e48d6195
This diff is collapsed.
Click to expand it.
configure.in
View file @
e48d6195
...
...
@@ -372,6 +372,7 @@ if test x"$ac_cv_altivec_inline" != x"no"; then
AC_DEFINE(CAN_COMPILE_ALTIVEC, 1, Define if \$CC groks ALTIVEC inline assembly.)
if test x"$ac_cv_altivec_inline" != x"yes"; then
CFLAGS_ALTIVEC="$CFLAGS_ALTIVEC $ac_cv_altivec_inline"
CFLAGS_VLC="$CFLAGS_VLC $ac_cv_altivec_inline"
fi
ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
fi
...
...
@@ -393,6 +394,7 @@ AC_CACHE_CHECK([if \$CC groks Altivec C extensions],
if test x"$ac_cv_c_altivec" != x"no"; then
AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1, Define if your compiler groks C altivec extensions.)
CFLAGS_ALTIVEC="$CFLAGS_ALTIVEC $ac_cv_c_altivec"
CFLAGS_VLC="$CFLAGS_VLC $ac_cv_c_altivec"
ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
fi
...
...
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