From: Sam Hocevar Date: Thu, 7 Jun 2001 22:14:56 +0000 (+0000) Subject: * SDL compilation fix for FreeBSD. X-Git-Tag: 0.2.81~79 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=c7cafcbbf1d4ffb37d62e2a99931516dbd649a0f;p=vlc * SDL compilation fix for FreeBSD. * Fixed compilation of motion modules as plugins. --- diff --git a/plugins/motion/vdec_motion_inner.c b/plugins/motion/vdec_motion_inner.c index e3e53965e4..ee6dbde39c 100644 --- a/plugins/motion/vdec_motion_inner.c +++ b/plugins/motion/vdec_motion_inner.c @@ -2,7 +2,7 @@ * vdec_motion_inner.c : motion compensation inner routines ***************************************************************************** * Copyright (C) 1999, 2000 VideoLAN - * $Id: vdec_motion_inner.c,v 1.2 2001/06/07 15:27:44 sam Exp $ + * $Id: vdec_motion_inner.c,v 1.3 2001/06/07 22:14:55 sam Exp $ * * Authors: Christophe Massiot * Jean-Marc Dressler @@ -23,6 +23,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. *****************************************************************************/ +#define MODULE_NAME motion #include "modules_inner.h" /***************************************************************************** diff --git a/plugins/motion/vdec_motion_inner_mmx.c b/plugins/motion/vdec_motion_inner_mmx.c index 11db6863be..ac31682aaf 100644 --- a/plugins/motion/vdec_motion_inner_mmx.c +++ b/plugins/motion/vdec_motion_inner_mmx.c @@ -3,7 +3,7 @@ * MMX ***************************************************************************** * Copyright (C) 1999, 2000 VideoLAN - * $Id: vdec_motion_inner_mmx.c,v 1.2 2001/06/07 15:27:44 sam Exp $ + * $Id: vdec_motion_inner_mmx.c,v 1.3 2001/06/07 22:14:55 sam Exp $ * * Authors: Christophe Massiot , largerly inspired by the * work done by the livid project @@ -23,6 +23,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. *****************************************************************************/ +#define MODULE_NAME motionmmx #include "modules_inner.h" /***************************************************************************** diff --git a/plugins/motion/vdec_motion_inner_mmxext.c b/plugins/motion/vdec_motion_inner_mmxext.c index f93720db71..2d6df9ffc3 100644 --- a/plugins/motion/vdec_motion_inner_mmxext.c +++ b/plugins/motion/vdec_motion_inner_mmxext.c @@ -3,7 +3,7 @@ * in MMX EXT ***************************************************************************** * Copyright (C) 1999, 2000 VideoLAN - * $Id: vdec_motion_inner_mmxext.c,v 1.2 2001/06/07 15:27:44 sam Exp $ + * $Id: vdec_motion_inner_mmxext.c,v 1.3 2001/06/07 22:14:55 sam Exp $ * * Authors: Christophe Massiot , largerly inspired by the * work done by the livid project @@ -23,6 +23,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. *****************************************************************************/ +#define MODULE_NAME motionmmxext #include "modules_inner.h" /***************************************************************************** diff --git a/plugins/sdl/vout_sdl.c b/plugins/sdl/vout_sdl.c index 984149d743..4e47cb7fe8 100644 --- a/plugins/sdl/vout_sdl.c +++ b/plugins/sdl/vout_sdl.c @@ -2,7 +2,7 @@ * vout_sdl.c: SDL video output display method ***************************************************************************** * Copyright (C) 1998, 1999, 2000 VideoLAN - * $Id: vout_sdl.c,v 1.54 2001/05/31 03:23:24 sam Exp $ + * $Id: vout_sdl.c,v 1.55 2001/06/07 22:14:56 sam Exp $ * * Authors: Samuel Hocevar * Pierre Baillet @@ -35,8 +35,9 @@ #include /* free() */ #include /* strerror() */ +#include #ifndef WIN32 -#include /* BSD: struct in_addr */ +# include /* BSD: struct in_addr */ #endif #include