Support and autodetect LZO version 2.0 and later.

This commit is contained in:
Guus Sliepen 2006-11-11 20:10:46 +00:00
parent bdb3c24cea
commit 8d393b30a9
2 changed files with 10 additions and 0 deletions

View file

@ -29,7 +29,12 @@
#include <openssl/hmac.h>
#include <zlib.h>
#ifdef HAVE_LZO_LZO1X_H
#include <lzo/lzo1x.h>
#endif
#ifdef HAVE_LZO1X_H
#include <lzo1x.h>
#endif
#include "avl_tree.h"
#include "conf.h"

View file

@ -37,7 +37,12 @@
#include <openssl/evp.h>
#include <openssl/engine.h>
#ifdef HAVE_LZO_LZO1X_H
#include <lzo/lzo1x.h>
#endif
#ifdef HAVE_LZO1X_H
#include <lzo1x.h>
#endif
#include <getopt.h>
#include "pidfile.h"