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
b4b78fb6
Commit
b4b78fb6
authored
Mar 09, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.ac: the telnet module needs -lws2_32 on win32.
* modules/control/telnet/vlm.c: include <time.h>.
parent
e04ea111
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
configure.ac
configure.ac
+1
-1
modules/control/telnet/vlm.c
modules/control/telnet/vlm.c
+8
-1
No files found.
configure.ac
View file @
b4b78fb6
...
...
@@ -146,7 +146,7 @@ case "${target_os}" in
# add ws2_32 for closesocket, select, recv
CPPFLAGS_save="${CPPFLAGS_save} -D_OFF_T_ -D_off_t=long"; CPPFLAGS="${CPPFLAGS_save}"
AX_ADD_LDFLAGS([vlc],[-lws2_32 -lnetapi32 -lwinmm -mwindows])
AX_ADD_LDFLAGS([ipv4 ipv6 access_http access_mms access_udp access_tcp access_ftp access_output_udp sap slp http stream_out_standard],[-lws2_32])
AX_ADD_LDFLAGS([ipv4 ipv6 access_http access_mms access_udp access_tcp access_ftp access_output_udp sap slp http stream_out_standard
telnet
],[-lws2_32])
fi
;;
*nto*)
...
...
modules/control/telnet/vlm.c
View file @
b4b78fb6
/*****************************************************************************
* .c: VLM interface plugin
*
vlm
.c: VLM interface plugin
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id$
...
...
@@ -32,8 +32,15 @@
#include <vlc/input.h>
#ifdef HAVE_TIME_H
# include <time.h>
/* ctime() */
#endif
#include "vlm.h"
/*****************************************************************************
* Local prototypes.
*****************************************************************************/
static
char
*
vlm_Save
(
vlm_t
*
);
static
int
vlm_Load
(
vlm_t
*
,
char
*
);
static
vlm_media_t
*
vlm_MediaNew
(
vlm_t
*
,
char
*
,
int
);
...
...
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