Anyone able to compile current svn code for fltk2.0 ?

First of all, someone changed:
extern "C" {
# ifdef HAVE_LOCAL_JPEG_H
#  include "libjpeg/jpeglib.h"
# else
#  include <jpeglib.h>
# endif
}

to:
#include <libjpeg/jpeg.h>

which is wrong; second nowhere is stated:
#define NEED_SHORT_EXTERNAL_NAMES 1
since are used short names from system libjpeg.

This can be added in config.h, but I think would be better:

extern "C" {
# ifdef HAVE_LOCAL_JPEG_H
#  include "libjpeg/jpeglib.h"
# else
#  include <jpeglib.h>
# endif

#define NEED_SHORT_EXTERNAL_NAMES 1
}
_______________________________________________
fltk-dev mailing list
[EMAIL PROTECTED]
http://lists.easysw.com/mailman/listinfo/fltk-dev

Reply via email to