Commit ee2bc403 authored by Gildas Bazin's avatar Gildas Bazin

* modules/control/http.c: brand new (and also basic) HTTP interface plugin for vlc (uses port 8080 by default).
parent 1c04b2ad
......@@ -132,6 +132,7 @@ case "x${target_os}" in
LDFLAGS_access_output_udp="${LDFLAGS_access_output_udp} -lws2_32"
LDFLAGS_sap="${LDFLAGS_sap} -lws2_32"
LDFLAGS_slp="${LDFLAGS_slp} -lws2_32"
LDFLAGS_http="${LDFLAGS_http} -lws2_32"
LDFLAGS_httpd="${LDFLAGS_httpd} -lws2_32"
fi
;;
......@@ -291,6 +292,7 @@ AC_CHECK_FUNCS(send,,[
LDFLAGS_access_udp="${LDFLAGS_access_udp} -lsocket"
LDFLAGS_access_ftp="${LDFLAGS_access_ftp} -lsocket"
LDFLAGS_sap="${LDFLAGS_sap} -lsocket"
LDFLAGS_http="${LDFLAGS_http} -lsocket"
LDFLAGS_access_output_udp="${LDFLAGS_access_output_udp} -lsocket"
)])
......@@ -831,7 +833,7 @@ PLUGINS="${PLUGINS} id3 m3u"
PLUGINS="${PLUGINS} rawvideo"
PLUGINS="${PLUGINS} wav araw demuxdump demuxsub adpcm a52sys au"
PLUGINS="${PLUGINS} access_file access_udp access_http ipv4 access_mms"
PLUGINS="${PLUGINS} access_ftp access_directory sap httpd"
PLUGINS="${PLUGINS} access_ftp access_directory sap httpd http"
dnl
dnl Some plugins aren't useful on some platforms
......
SOURCES_gestures = modules/control/gestures.c
SOURCES_http = modules/control/http.c
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment