Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
3f1a7824
Commit
3f1a7824
authored
Aug 23, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set a bunch of flags for libvlccore from Makefile
parent
a2679b31
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8 deletions
+9
-8
configure.ac
configure.ac
+3
-5
src/Makefile.am
src/Makefile.am
+6
-3
No files found.
configure.ac
View file @
3f1a7824
...
...
@@ -475,8 +475,6 @@ dnl
dnl Iconv stuff
dnl
AM_ICONV
VLC_ADD_CFLAGS([libvlccore],[${INCICONV}])
VLC_ADD_LIBS([libvlccore],[${LTLIBICONV}])
dnl Check for broken versions of mingw-runtime compatability library
AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
...
...
@@ -614,7 +612,7 @@ AC_SEARCH_LIBS(connect, [socket], [
])
LIBS="$LIBS_save"
AS_IF([test -n "$SOCKET_LIBS"], [
VLC_ADD_LIBS([
libvlccore
access_http access_mms access_udp access_tcp access_ftp access_rtmp access_output_udp access_output_shout sap stream_out_select stream_out_standard stream_out_rtp stream_out_raop vod_rtsp access_realrtsp rtp oldrc netsync gnutls growl_udp flac ts audioscrobbler lua remoteosd zvbi audiobargraph_a netsync],[${SOCKET_LIBS}])
VLC_ADD_LIBS([access_http access_mms access_udp access_tcp access_ftp access_rtmp access_output_udp access_output_shout sap stream_out_select stream_out_standard stream_out_rtp stream_out_raop vod_rtsp access_realrtsp rtp oldrc netsync gnutls growl_udp flac ts audioscrobbler lua remoteosd zvbi audiobargraph_a netsync],[${SOCKET_LIBS}])
])
AC_SUBST(SOCKET_LIBS)
...
...
@@ -678,7 +676,7 @@ AC_CHECK_FUNC(getopt_long,, [
AC_SUBST(GNUGETOPT_LIBS)
AC_CHECK_LIB(m,cos,[
VLC_ADD_LIBS([adjust wave ripple psychedelic gradient a52tofloat32 dtstofloat32 x264 goom visual panoramix rotate noise grain scene kate flac lua chorus_flanger freetype avcodec avformat access_avio swscale postproc i420_rgb faad twolame equalizer spatializer param_eq samplerate
libvlccore
freetype mod mpc dmo quicktime realvideo qt4 compressor headphone_channel_mixer normvol audiobargraph_a speex mono colorthres extract ball access_imem hotkeys mosaic gaussianblur dbus x264],[-lm])
VLC_ADD_LIBS([adjust wave ripple psychedelic gradient a52tofloat32 dtstofloat32 x264 goom visual panoramix rotate noise grain scene kate flac lua chorus_flanger freetype avcodec avformat access_avio swscale postproc i420_rgb faad twolame equalizer spatializer param_eq samplerate freetype mod mpc dmo quicktime realvideo qt4 compressor headphone_channel_mixer normvol audiobargraph_a speex mono colorthres extract ball access_imem hotkeys mosaic gaussianblur dbus x264],[-lm])
LIBM="-lm"
], [
LIBM=""
...
...
@@ -713,7 +711,7 @@ AS_IF([test "$LIBDL" != "no"], [
LIBDL=""
])
AC_SUBST(LIBDL)
VLC_ADD_LIBS([
libvlccore
realvideo lua],[$LIBDL])
VLC_ADD_LIBS([realvideo lua],[$LIBDL])
dnl Check for thread library
if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
...
...
src/Makefile.am
View file @
3f1a7824
...
...
@@ -199,18 +199,21 @@ AM_LDFLAGS += -avoid-version
endif
libvlccore_la_SOURCES
=
$(SOURCES_libvlc)
libvlccore_la_C
FLAGS
=
$(CFLAGS_libvlccore
)
\
libvlccore_la_C
PPFLAGS
=
$(INCICONV
)
\
-DMODULE_STRING
=
\"
main
\"
\
-DLOCALEDIR
=
\"
$(localedir)
\"
\
-DSYSCONFDIR
=
\"
$(sysconfdir)
\"
\
-DDATA_PATH
=
\"
$(vlcdatadir)
\"
\
-DPKGLIBDIR
=
\"
$(vlclibdir)
\"
libvlccore_la_CFLAGS
=
$(CFLAGS_libvlccore)
libvlccore_la_LDFLAGS
=
$(LDFLAGS_libvlccore)
$(AM_LDFLAGS)
\
-no-undefined
\
-export-symbols
$(srcdir)
/libvlccore.sym
\
-version-info
5:0:0
libvlccore_la_LIBADD
=
$(LIBS_libvlccore)
$(AM_LIBADD)
\
$(LTLIBINTL)
../compat/libcompat.la
libvlccore_la_LIBADD
=
$(LIBS_libvlccore)
\
$(LTLIBINTL)
$(LTLIBICONV)
\
$(SOCKET_LIBS)
$(LIBDL)
$(LIBM)
\
../compat/libcompat.la
libvlccore_la_DEPENDENCIES
=
libvlccore.sym
if
HAVE_WIN32
libvlccore_la_DEPENDENCIES
+=
libvlc_win32_rc.
$(OBJEXT)
...
...
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