diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2006-04-08 16:42:23 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2006-04-08 16:42:23 +0000 |
commit | 8dc253dad613fa9408f0a0ccb674e9e77ddef767 (patch) | |
tree | 2d41848d2fd1c52032337315867352bce60f19eb /src/xine-engine/xine.c | |
parent | 6af6af590d98a8111bfc8dd498b11aecdbb3ecdd (diff) | |
download | xine-lib-8dc253dad613fa9408f0a0ccb674e9e77ddef767.tar.gz xine-lib-8dc253dad613fa9408f0a0ccb674e9e77ddef767.tar.bz2 |
Ancient platforms support:
- rint, lrint, M_PI (ffmpeg and goom)
- avoid mkdir warnings
- check for older _GUID_DEFINED too
- ressurected generating inttypes, cleaned public os_types.h
- moved function redefiniton used only in the old MSVC to central place
Windows port update:
- build internal ffmpeg:
- workaround 'near' keyword problem
- proper using __declspec(dllimport)
Other changes:
- LIBFFMPEG_CFLAGS --> LIBFFMPEG_CPPFLAGS
CVS patchset: 7964
CVS date: 2006/04/08 16:42:23
Diffstat (limited to 'src/xine-engine/xine.c')
-rw-r--r-- | src/xine-engine/xine.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index 8dac5c264..99c46d1e3 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000-2005 the xine project + * Copyright (C) 2000-2006 the xine project * * This file is part of xine, a free video player. * @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.c,v 1.322 2006/03/17 18:52:04 hadess Exp $ + * $Id: xine.c,v 1.323 2006/04/08 16:42:37 valtri Exp $ */ /* @@ -36,6 +36,7 @@ #include <stdlib.h> #include <pthread.h> #include <stdarg.h> +#include <stdio.h> #if defined (__linux__) #include <endian.h> #elif defined (__FreeBSD__) |