[libdvdnav-devel] [Git][videolan/libdvdread][master] Fix public header include paths
Jean-Baptiste Kempf (@jbk)
gitlab at videolan.org
Wed Aug 27 12:18:30 UTC 2025
Jean-Baptiste Kempf pushed to branch master at VideoLAN / libdvdread
Commits:
b8174a2d by robxnano at 2025-08-27T07:52:59+01:00
Fix public header include paths
Use the full path to the header file so that applications can find it.
This also allows dvdread to be used as a subproject of dvdnav.
- - - - -
2 changed files:
- src/dvdread/dvd_reader.h
- src/dvdread/ifo_print.h
Changes:
=====================================
src/dvdread/dvd_reader.h
=====================================
@@ -50,7 +50,7 @@ typedef ptrdiff_t ssize_t;
/**
* The current version.
*/
-#include "version.h"
+#include <dvdread/version.h>
/**
* The length of one Logical Block of a DVD.
=====================================
src/dvdread/ifo_print.h
=====================================
@@ -19,10 +19,10 @@
#ifndef LIBDVDREAD_IFO_PRINT_H
#define LIBDVDREAD_IFO_PRINT_H
-#include "ifo_types.h"
#include <inttypes.h>
#include <dvdread/attributes.h>
+#include <dvdread/ifo_types.h>
DVDREAD_API void ifo_print(dvd_reader_t *dvd, int title);
DVDREAD_API void dvdread_print_time(dvd_time_t *dtime);
View it on GitLab: https://code.videolan.org/videolan/libdvdread/-/commit/b8174a2d59405dc2e2b21f8e852ea394bd0dd71e
--
View it on GitLab: https://code.videolan.org/videolan/libdvdread/-/commit/b8174a2d59405dc2e2b21f8e852ea394bd0dd71e
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the libdvdnav-devel
mailing list