Use correct include path on OS X

This path matches the libjpeg.framework we'll use to build the
binary releases.
This commit is contained in:
Yamagi Burmeister 2012-11-04 09:23:25 +01:00
parent 86ca73754d
commit 5c217771cb

View file

@ -27,8 +27,14 @@
#ifdef RETEXTURE
#include "../header/local.h"
#ifdef __APPLE__
#include <libjpeg/jpeglib.h>
#include <libjpeg/jerror.h>
#else
#include <jpeglib.h>
#include <jerror.h>
#endif
void jpeg_memory_src(j_decompress_ptr cinfo,
unsigned char *inbuffer,