Revert "Fix include paths for LZO headers"

LZO headers require LZO's ${includedir} to be in the compiler include
path, since they all #include <lzo/lzoconf.h>.  However, its pkg-config
file only specifies -I${includedir}/lzo, so our previous change (to
trust the LZO pkg-config file) just caused an include failure later on.
Revert it, preparatory to a new fix.

This reverts commit 9735309da6.
This commit is contained in:
Benjamin Gilbert 2025-03-13 20:05:57 -06:00
parent 58578a2f48
commit c8d89d6e5c
3 changed files with 3 additions and 3 deletions

View file

@ -42,7 +42,7 @@
#include <zlib.h>
#if HAVE_LZO
#include <lzo2a.h>
#include <lzo/lzo2a.h>
#endif
#define CHUNK_SIZE 32768

View file

@ -60,7 +60,7 @@
#endif
#if HAVE_LZO
#include <lzo2a.h>
#include <lzo/lzo2a.h>
#endif
#ifdef HAVE_MMAP

View file

@ -46,7 +46,7 @@
#include <zlib.h>
#if HAVE_LZO
#include <lzo2a.h>
#include <lzo/lzo2a.h>
#endif
#define DEBUG_SCAN 0