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
f742dd83
Commit
f742dd83
authored
Dec 13, 2001
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed potential compilation issues under eg. BSD/OS.
parent
1b7799ab
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
207 additions
and
186 deletions
+207
-186
Makefile.opts.in
Makefile.opts.in
+3
-0
configure
configure
+192
-182
configure.in
configure.in
+9
-1
plugins/imdct/Makefile
plugins/imdct/Makefile
+3
-3
No files found.
Makefile.opts.in
View file @
f742dd83
...
...
@@ -80,6 +80,9 @@ LIB_GGI = @LIB_GGI@
LIB_GLIDE
=
@LIB_GLIDE@
LIB_GNOME
=
@LIB_GNOME@
LIB_GTK
=
@LIB_GTK@
LIB_IMDCT
=
@LIB_IMDCT@
LIB_IMDCT3DN
=
@LIB_IMDCT3DN@
LIB_IMDCTSSE
=
@LIB_IMDCTSSE@
LIB_KDE
=
@LIB_KDE@
LIB_LIBDVDCSS
=
@LIB_LIBDVDCSS@
LIB_MACOSX
=
@LIB_MACOSX@
...
...
configure
View file @
f742dd83
This diff is collapsed.
Click to expand it.
configure.in
View file @
f742dd83
...
...
@@ -135,7 +135,12 @@ AC_CHECK_FUNC(getopt_long,[AC_DEFINE(HAVE_GETOPT_LONG,1,long getopt support)],
AC_FUNC_MMAP
AC_TYPE_SIGNAL
AC_CHECK_LIB(dl,dlopen,LIB="${LIB} -ldl")
AC_CHECK_LIB(m,pow,LIB_YUV="${LIB_YUV} -lm")
AC_CHECK_LIB(m,pow,
LIB_YUV="${LIB_YUV} -lm"
LIB_IMDCT="${LIB_IMDCT} -lm"
LIB_IMDCT3DN="${LIB_IMDCT3DN} -lm"
LIB_IMDCTSSE="${LIB_IMDCTSSE} -lm"
)
dnl Check for pthreads - borrowed from XMMS
THREAD_LIB=error
...
...
@@ -1232,6 +1237,9 @@ AC_SUBST(LIB_GGI)
AC_SUBST(LIB_GLIDE)
AC_SUBST(LIB_GNOME)
AC_SUBST(LIB_GTK)
AC_SUBST(LIB_IMDCT)
AC_SUBST(LIB_IMDCT3DN)
AC_SUBST(LIB_IMDCTSSE)
AC_SUBST(LIB_KDE)
AC_SUBST(LIB_LIBDVDCSS)
AC_SUBST(LIB_MACOSX)
...
...
plugins/imdct/Makefile
View file @
f742dd83
...
...
@@ -45,21 +45,21 @@ $(BUILTIN_IMDCT3DN): BUILTIN_IMDCT3DN_%.o: %.c
#
../imdct.so
:
$(PLUGIN_IMDCT) $(PLUGIN_IMDCTCOMMON)
$(CC)
$(PCFLAGS)
-o
$@
$^
$(PLCFLAGS)
$(CC)
$(PCFLAGS)
-o
$@
$^
$(PLCFLAGS)
$(LIB_IMDCT)
../imdct.a
:
$(BUILTIN_IMDCT)
ar r
$@
$^
$(RANLIB)
$@
../imdctsse.so
:
$(PLUGIN_IMDCTSSE) $(PLUGIN_IMDCTCOMMON)
$(CC)
$(PCFLAGS)
-o
$@
$^
$(PLCFLAGS)
$(CC)
$(PCFLAGS)
-o
$@
$^
$(PLCFLAGS)
$(LIB_IMDCTSSE)
../imdctsse.a
:
$(BUILTIN_IMDCTSSE)
ar r
$@
$^
$(RANLIB)
$@
../imdct3dn.so
:
$(PLUGIN_IMDCT3DN) $(PLUGIN_IMDCTCOMMON)
$(CC)
$(PCFLAGS)
-o
$@
$^
$(PLCFLAGS)
$(CC)
$(PCFLAGS)
-o
$@
$^
$(PLCFLAGS)
$(LIB_IMDCT3DN)
../imdct3dn.a
:
$(BUILTIN_IMDCT3DN)
ar r
$@
$^
...
...
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