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:15:44 +0200 |
commit | 9f7c0362e26f62dc81769ab55a89e32c3c9a268d (patch) | |
tree | f02b303eedd1bf03d65de9f5d014c2c75d8af557 /k9vamps | |
parent | 553df4a4357da7e17f21211201354c2006e76250 (diff) | |
download | k9copy-9f7c0362e26f62dc81769ab55a89e32c3c9a268d.tar.gz k9copy-9f7c0362e26f62dc81769ab55a89e32c3c9a268d.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]>
Diffstat (limited to 'k9vamps')
-rw-r--r-- | k9vamps/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/k9vamps/Makefile.am b/k9vamps/Makefile.am index 42c45fa..00a91ce 100644 --- a/k9vamps/Makefile.am +++ b/k9vamps/Makefile.am @@ -7,6 +7,6 @@ libk9vamps_la_LDFLAGS = $(all_libraries) noinst_LTLIBRARIES = libk9vamps.la libk9vamps_la_SOURCES = cputest.cpp getvlc.h k9fifo.cpp k9requant.cpp \ k9vamps.cpp k9vamps.h putvlc.h qTable.h tcmemcpy.cpp -INCLUDES = -I/usr/include/dvdread -I$(top_srcdir)/k9vamps \ +INCLUDES = -I$(top_srcdir)/k9vamps \ -I$(top_srcdir)/libk9copy noinst_HEADERS = k9requant.h ac.h k9fifo.h |