# HG changeset patch # User mf0102 <0102@gmx.at> # Date 1202581219 -3600 # Node ID 032207ff2a876f7dc9074ac0c64577a6379c4471 # Parent 92642f860860777fce808736bb03beceeb7f74dc install libSAD headers diff -r 92642f860860 -r 032207ff2a87 src/libSAD/Makefile --- a/src/libSAD/Makefile Sat Feb 09 01:05:36 2008 +0300 +++ b/src/libSAD/Makefile Sat Feb 09 19:20:19 2008 +0100 @@ -1,9 +1,16 @@ +include ../../buildsys.mk +include ../../extra.mk + +PACKAGE = libSAD + STATIC_LIB_NOINST = libSAD.a SRCS = dither.c \ dither_ops.c \ noicegen.c -include ../../buildsys.mk -include ../../extra.mk -CPPFLAGS += ${SIMD_CFLAGS} +INCLUDES = libSAD.h \ + common.h \ + dither.h + +CPPFLAGS += ${SIMD_CFLAGS} -I../.. diff -r 92642f860860 -r 032207ff2a87 src/libSAD/common.h --- a/src/libSAD/common.h Sat Feb 09 01:05:36 2008 +0300 +++ b/src/libSAD/common.h Sat Feb 09 19:20:19 2008 +0100 @@ -34,7 +34,9 @@ #define FALSE 0 #endif -#include "../../config.h" +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif typedef int SAD_error;