diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-11-07 12:47:02 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-11-07 12:47:02 +0000 |
commit | cb90622b41d826e7e316ce1e3c16e5a5c9d028ef (patch) | |
tree | 332fb8ea7be82946452c5628daf4ee0f6686f4b2 /sys/qcam | |
parent | ac872637ab3e94f9ef7d553a40994d1ba43eb80f (diff) | |
download | gst-plugins-bad-cb90622b41d826e7e316ce1e3c16e5a5c9d028ef.tar.gz gst-plugins-bad-cb90622b41d826e7e316ce1e3c16e5a5c9d028ef.tar.bz2 gst-plugins-bad-cb90622b41d826e7e316ce1e3c16e5a5c9d028ef.zip |
Remove all config.h includes from header files, add it to each source file and remove duplicate config.h includes fro...
Original commit message from CVS:
Remove all config.h includes from header files, add it to each source file and remove duplicate config.h includes from several source files
Diffstat (limited to 'sys/qcam')
-rw-r--r-- | sys/qcam/dark.c | 4 | ||||
-rw-r--r-- | sys/qcam/exposure.c | 4 | ||||
-rw-r--r-- | sys/qcam/gstqcamsrc.h | 1 | ||||
-rw-r--r-- | sys/qcam/qcam-Linux.c | 3 | ||||
-rw-r--r-- | sys/qcam/qcam-lib.c | 4 | ||||
-rw-r--r-- | sys/qcam/qcam-os.c | 3 |
6 files changed, 18 insertions, 1 deletions
diff --git a/sys/qcam/dark.c b/sys/qcam/dark.c index 15dbbb4e..70acf979 100644 --- a/sys/qcam/dark.c +++ b/sys/qcam/dark.c @@ -38,6 +38,10 @@ OTHER DEALINGS IN THE SOFTWARE. establishing shots need only be done once per camera. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <stdio.h> #include <string.h> #include <assert.h> diff --git a/sys/qcam/exposure.c b/sys/qcam/exposure.c index 66574f32..b393bdb7 100644 --- a/sys/qcam/exposure.c +++ b/sys/qcam/exposure.c @@ -36,6 +36,10 @@ SOFTWARE. ******************************************************************/ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <stdio.h> #include "qcam.h" #include "qcamip.h" diff --git a/sys/qcam/gstqcamsrc.h b/sys/qcam/gstqcamsrc.h index de884d4d..0bd201c8 100644 --- a/sys/qcam/gstqcamsrc.h +++ b/sys/qcam/gstqcamsrc.h @@ -22,7 +22,6 @@ #define __GST_QCAMSRC_H__ -#include <config.h> #include <gst/gst.h> #ifdef __cplusplus diff --git a/sys/qcam/qcam-Linux.c b/sys/qcam/qcam-Linux.c index f6383e01..e73933d9 100644 --- a/sys/qcam/qcam-Linux.c +++ b/sys/qcam/qcam-Linux.c @@ -29,6 +29,9 @@ OTHER DEALINGS IN THE SOFTWARE. ******************************************************************/ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include <stdio.h> #include <unistd.h> diff --git a/sys/qcam/qcam-lib.c b/sys/qcam/qcam-lib.c index f3b49fb0..cacd5d08 100644 --- a/sys/qcam/qcam-lib.c +++ b/sys/qcam/qcam-lib.c @@ -33,6 +33,10 @@ OTHER DEALINGS IN THE SOFTWARE. ******************************************************************/ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/sys/qcam/qcam-os.c b/sys/qcam/qcam-os.c index f6383e01..e73933d9 100644 --- a/sys/qcam/qcam-os.c +++ b/sys/qcam/qcam-os.c @@ -29,6 +29,9 @@ OTHER DEALINGS IN THE SOFTWARE. ******************************************************************/ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include <stdio.h> #include <unistd.h> |