mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-07 16:48:12 +02:00
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:
parent
58578a2f48
commit
c8d89d6e5c
3 changed files with 3 additions and 3 deletions
|
|
@ -42,7 +42,7 @@
|
|||
#include <zlib.h>
|
||||
|
||||
#if HAVE_LZO
|
||||
#include <lzo2a.h>
|
||||
#include <lzo/lzo2a.h>
|
||||
#endif
|
||||
|
||||
#define CHUNK_SIZE 32768
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@
|
|||
#endif
|
||||
|
||||
#if HAVE_LZO
|
||||
#include <lzo2a.h>
|
||||
#include <lzo/lzo2a.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_MMAP
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@
|
|||
#include <zlib.h>
|
||||
|
||||
#if HAVE_LZO
|
||||
#include <lzo2a.h>
|
||||
#include <lzo/lzo2a.h>
|
||||
#endif
|
||||
|
||||
#define DEBUG_SCAN 0
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue