diff options
author | Slávek Banko <[email protected]> | 2023-08-06 01:07:46 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2023-08-06 09:23:43 +0200 |
commit | 0984c8a873d7ed24259cf1ba600a3c989cdb3b08 (patch) | |
tree | 35c942467312c2e4ffd3d654917e9579503f3702 /libk9copy/k9common.h | |
parent | ba09a974bad106c61008615fb86deffe26f32bd3 (diff) | |
download | k9copy-0984c8a873d7ed24259cf1ba600a3c989cdb3b08.tar.gz k9copy-0984c8a873d7ed24259cf1ba600a3c989cdb3b08.zip |
Fix incorrect use of dvdread includes.
It seems that the library has been designed for use includes in the form
"#include <dvdread/...>" while we used includes without the "dvdread/" prefix.
This caused that instead of using the standard path detected from pkg-config,
the expected path had to be added to to -I flag.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 9f7c0362e26f62dc81769ab55a89e32c3c9a268d)
Diffstat (limited to 'libk9copy/k9common.h')
-rw-r--r-- | libk9copy/k9common.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libk9copy/k9common.h b/libk9copy/k9common.h index 249cf8d..c7e396a 100644 --- a/libk9copy/k9common.h +++ b/libk9copy/k9common.h @@ -28,11 +28,11 @@ #ifdef __FreeBSD__ #include <osreldate.h> #endif -#include "ifo_types.h" -#include "dvd_reader.h" -#include "ifo_read.h" -#include "nav_read.h" -#include "nav_types.h" +#include <dvdread/ifo_types.h> +#include <dvdread/dvd_reader.h> +#include <dvdread/ifo_read.h> +#include <dvdread/nav_read.h> +#include <dvdread/nav_types.h> #include <tqobject.h> #include <tqobjectlist.h> |