* Fix include path for moved header files

This commit is contained in:
micha-bbg
2012-12-13 17:45:43 +01:00
parent d67b1e9c93
commit b1138e16b0
8 changed files with 11 additions and 13 deletions

View File

@@ -118,7 +118,9 @@ AC_ARG_ENABLE(cleanup,
[ --enable-cleanup enable cleanup on exit], [ --enable-cleanup enable cleanup on exit],
[AC_DEFINE(EXIT_CLEANUP,1,[enable cleanup on exit])]) [AC_DEFINE(EXIT_CLEANUP,1,[enable cleanup on exit])])
AC_CHECK_HEADERS(coolstream/nevis_ir.h) if test -e ${srcdir}/lib/libcoolstream/nevis_ir.h; then
AC_DEFINE(HAVE_COOLSTREAM_NEVIS_IR_H,1,[Define to 1 if you have the <nevis_ir.h> header file.])
fi
# #
# Check for libtdservicedb - the new one - for testing only # Check for libtdservicedb - the new one - for testing only

View File

@@ -9,7 +9,7 @@
#ifndef __CS_API_H_ #ifndef __CS_API_H_
#define __CS_API_H_ #define __CS_API_H_
#include <coolstream/control.h> #include <control.h>
#include <sys/types.h> #include <sys/types.h>
typedef void (*cs_messenger) (unsigned int msg, unsigned int data); typedef void (*cs_messenger) (unsigned int msg, unsigned int data);

View File

@@ -9,8 +9,8 @@
#ifndef __VIDEO_CS_H_ #ifndef __VIDEO_CS_H_
#define __VIDEO_CS_H_ #define __VIDEO_CS_H_
#include <coolstream/cs_vfd.h> #include <cs_vfd.h>
#include <coolstream/control.h> #include <control.h>
#include "cs_types.h" #include "cs_types.h"

View File

@@ -39,7 +39,7 @@
#include <string> #include <string>
#include <vector> #include <vector>
#ifdef HAVE_COOLSTREAM_NEVIS_IR_H #ifdef HAVE_COOLSTREAM_NEVIS_IR_H
#include <coolstream/nevis_ir.h> #include <nevis_ir.h>
#endif #endif
#ifndef KEY_OK #ifndef KEY_OK

View File

@@ -42,7 +42,7 @@
#include <pthread.h> #include <pthread.h>
#include <string> #include <string>
#include <coolstream/cs_vfd.h> #include <cs_vfd.h>
class CVFD class CVFD
{ {

View File

@@ -29,10 +29,10 @@
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <coolstream/cs_vfd.h> #include <cs_vfd.h>
#ifdef HAVE_COOLSTREAM_NEVIS_IR_H #ifdef HAVE_COOLSTREAM_NEVIS_IR_H
#include <coolstream/nevis_ir.h> #include <nevis_ir.h>
#endif #endif
#ifndef IOC_IR_SET_PRI_PROTOCOL #ifndef IOC_IR_SET_PRI_PROTOCOL

View File

@@ -1696,7 +1696,7 @@ void CNeutrinoApp::InitSectiondClient()
} }
#if HAVE_COOL_HARDWARE #if HAVE_COOL_HARDWARE
#include <coolstream/cs_vfd.h> #include <cs_vfd.h>
#endif #endif
void wake_up( bool &wakeup) void wake_up( bool &wakeup)

View File

@@ -47,10 +47,6 @@
#include <sys/wait.h> #include <sys/wait.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#if HAVE_COOL_HARDWARE
#include <coolstream/control.h>
#endif
#include <config.h> #include <config.h>
#include <global.h> #include <global.h>