diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-09-12 19:23:36 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-09-12 19:23:36 +0000 |
commit | 8033da767dbbecc06c2fc19546cf5d1b762768bf (patch) | |
tree | 7a60920172591d710c58f936def76520d6afa61f | |
parent | 119103cdea84269889c852d2451d7aef4fb3be6c (diff) | |
download | xine-lib-8033da767dbbecc06c2fc19546cf5d1b762768bf.tar.gz xine-lib-8033da767dbbecc06c2fc19546cf5d1b762768bf.tar.bz2 |
including <unistd.h>, which has been removed from the global headers
CVS patchset: 6968
CVS date: 2004/09/12 19:23:36
-rw-r--r-- | src/libffmpeg/xine_encoder.c | 3 | ||||
-rw-r--r-- | src/video_out/video_out_vidix.c | 3 | ||||
-rw-r--r-- | src/xine-engine/configfile.c | 3 | ||||
-rw-r--r-- | src/xine-utils/utils.c | 3 | ||||
-rw-r--r-- | src/xine-utils/xine_check.c | 1 |
5 files changed, 9 insertions, 4 deletions
diff --git a/src/libffmpeg/xine_encoder.c b/src/libffmpeg/xine_encoder.c index e6d4da926..7cae08590 100644 --- a/src/libffmpeg/xine_encoder.c +++ b/src/libffmpeg/xine_encoder.c @@ -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_encoder.c,v 1.18 2004/08/16 15:31:23 mroi Exp $ + * $Id: xine_encoder.c,v 1.19 2004/09/12 19:23:37 mroi Exp $ */ /* mpeg encoders for the dxr3 video out plugin. */ @@ -30,6 +30,7 @@ #include <stdlib.h> #include <sys/ioctl.h> #include <fcntl.h> +#include <unistd.h> #include <errno.h> #include <math.h> diff --git a/src/video_out/video_out_vidix.c b/src/video_out/video_out_vidix.c index dbfa876fa..fc9520529 100644 --- a/src/video_out/video_out_vidix.c +++ b/src/video_out/video_out_vidix.c @@ -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: video_out_vidix.c,v 1.63 2004/05/09 21:05:34 miguelfreitas Exp $ + * $Id: video_out_vidix.c,v 1.64 2004/09/12 19:23:37 mroi Exp $ * * video_out_vidix.c * @@ -37,6 +37,7 @@ #include <stdlib.h> #include <string.h> #include <inttypes.h> +#include <unistd.h> #ifdef HAVE_X11 #include <X11/Xlib.h> diff --git a/src/xine-engine/configfile.c b/src/xine-engine/configfile.c index f6460f28f..4f0eeb88d 100644 --- a/src/xine-engine/configfile.c +++ b/src/xine-engine/configfile.c @@ -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: configfile.c,v 1.67 2004/07/22 14:26:24 mroi Exp $ + * $Id: configfile.c,v 1.68 2004/09/12 19:23:36 mroi Exp $ * * config object (was: file) management - implementation * @@ -33,6 +33,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <unistd.h> #include "configfile.h" #define LOG_MODULE "configfile" diff --git a/src/xine-utils/utils.c b/src/xine-utils/utils.c index ad9375093..51ed0beb3 100644 --- a/src/xine-utils/utils.c +++ b/src/xine-utils/utils.c @@ -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: utils.c,v 1.32 2004/09/02 19:56:42 valtri Exp $ + * $Id: utils.c,v 1.33 2004/09/12 19:23:36 mroi Exp $ * */ #define _POSIX_PTHREAD_SEMANTICS 1 /* for 5-arg getpwuid_r on solaris */ @@ -32,6 +32,7 @@ #include <errno.h> #include <pwd.h> #include <netdb.h> +#include <unistd.h> #if HAVE_EXECINFO_H #include <execinfo.h> diff --git a/src/xine-utils/xine_check.c b/src/xine-utils/xine_check.c index 14fb424ac..7c9190d86 100644 --- a/src/xine-utils/xine_check.c +++ b/src/xine-utils/xine_check.c @@ -42,6 +42,7 @@ #include <stdarg.h> #include <errno.h> #include <fcntl.h> +#include <unistd.h> #include "xine_check.h" #include "xineutils.h" |