mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
Fix missing config.h and unistd.h includes which were apparently removed from gst/gst.h recently
Original commit message from CVS: Fix missing config.h and unistd.h includes which were apparently removed from gst/gst.h recently
This commit is contained in:
parent
909a77f92a
commit
e6995d884c
2 changed files with 5 additions and 0 deletions
|
@ -17,6 +17,10 @@
|
|||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <string.h>
|
||||
#include <sys/time.h>
|
||||
#include "v4l2src_calls.h"
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
#include <sys/mman.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include "v4l2_calls.h"
|
||||
|
||||
#define DEBUG(format, args...) \
|
||||
|
|
Loading…
Reference in a new issue