1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-11-03 04:17:18 -05:00

Finish up the modifications to the Windows build. In case anything remains to be done, it'll be nits.

git-svn-id: https://svn.xiph.org/trunk/ezstream@15798 0101bb08-14d6-0310-b084-bc0e0c8e3800
This commit is contained in:
moritz 2009-03-18 20:24:35 +00:00
parent 9375b750e8
commit 5a0bfa143b
6 changed files with 11 additions and 38 deletions

View File

@ -118,13 +118,6 @@ dnl ###########
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_CHECK_TYPES(struct timeval, , ,
[
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#endif
])
dnl ###############
dnl ## LIBRARIES #######################################################

View File

@ -10,10 +10,6 @@
# include <libgen.h>
#endif /* HAVE_LIBGEN_H && !__linux__ */
#ifndef PATH_MAX
# define PATH_MAX 256
#endif /* !PATH_MAX */
#ifndef PATH_SEPARATORS
# define PATH_SEPARATORS "/"
#endif /* !PATH_SEPARATORS */

View File

@ -57,6 +57,10 @@
# endif /* WIN32 */
#endif /* !_PATH_DEVNULL */
#ifndef PATH_MAX
# define PATH_MAX 256
#endif /* !PATH_MAX */
#if !defined(HAVE_PCLOSE) && defined(HAVE__PCLOSE)
# define pclose _pclose
#endif /* !HAVE_PCLOSE && HAVE__PCLOSE */
@ -92,13 +96,6 @@
# define sleep(a) Sleep((a) * 1000)
#endif /* WIN32 */
#ifndef HAVE_STRUCT_TIMEVAL
struct timeval {
long tv_sec;
long tv_usec;
};
#endif
/*
* For compat.c and getopt.c:
*/

View File

@ -22,11 +22,12 @@
# include "config.h"
#endif
#include "ezstream.h"
#include <errno.h>
#include <limits.h>
#include <stdlib.h>
#include "strfctns.h"
#include "compat.h"
#define INVALID 1
#define TOOSMALL 2

View File

@ -9,25 +9,8 @@
#define inline __inline
#define popen _popen
#define pclose _pclose
#define snprintf _snprintf
#define stat _stat
#define strncasecmp strnicmp
#ifndef __GNUC__
# define strtoll _strtoi64
#endif /* !__GNUC__ */
#define sleep(a) Sleep((a) * 1000)
#define va_copy(dst, src) memcpy(&(dst), &(src), sizeof(va_list))
#define S_IRGRP 0
#define S_IROTH 0
#define S_IWGRP 0
#define S_IWOTH 0
#define S_IXGRP 0
#define S_IXOTH 0
#define PATH_SEPARATORS "\\/"
#ifndef ssize_t

View File

@ -8,9 +8,12 @@
#define HAVE_LOCALE_H 1
#define HAVE_STAT 1
#define HAVE__PCLOSE 1
#define HAVE__POPEN 1
#define HAVE__SNPRINTF 1
#define HAVE__STRTOI64 1
#define HAVE_STRUCT_TIMEVAL 1
#define HAVE_ICONV 1
#define ICONV_CONST
#include <compat.h>