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
46062316
Commit
46062316
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
8e19406b
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
97 additions
and
88 deletions
+97
-88
AUTHORS
AUTHORS
+4
-0
Makefile
Makefile
+2
-2
Makefile.opts.in
Makefile.opts.in
+1
-0
configure
configure
+88
-86
configure.in
configure.in
+2
-0
No files found.
AUTHORS
View file @
46062316
...
...
@@ -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 @
46062316
...
...
@@ -500,12 +500,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 @
46062316
...
...
@@ -101,6 +101,7 @@ LIB_YUV = @LIB_YUV@
#
# CFLAGS for special cases
#
CFLAGS_VLC
=
@CFLAGS_VLC@
CFLAGS_ALTIVEC
=
@CFLAGS_ALTIVEC@
CFLAGS_DVD
=
@CFLAGS_DVD@
CFLAGS_DVDREAD
=
@CFLAGS_DVDREAD@
...
...
configure
View file @
46062316
This diff is collapsed.
Click to expand it.
configure.in
View file @
46062316
...
...
@@ -361,6 +361,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
...
...
@@ -382,6 +383,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