never mind, revert
This commit is contained in:
parent
e56762a452
commit
2e8ad41bc7
|
|
@ -13,13 +13,12 @@
|
|||
#define SOURCES \
|
||||
config_pnmimagetypes.h pnmFileTypeAlias.h pnmFileTypeBMP.h \
|
||||
pnmFileTypeIMG.h \
|
||||
pnmFileTypePNG.h \
|
||||
pnmFileTypePNM.h \
|
||||
pnmFileTypeSGI.h pnmFileTypeSoftImage.h \
|
||||
pnmFileTypeTGA.h \
|
||||
pnmFileTypeTIFF.h \
|
||||
pnmFileTypeJPG.h \
|
||||
// These are separate because of png's silly setjmp problem.
|
||||
pnmFileTypePNG.h pnmFileTypePNG.cxx
|
||||
pnmFileTypeJPG.h
|
||||
|
||||
#define INCLUDED_SOURCES \
|
||||
config_pnmimagetypes.cxx pnmFileTypeAlias.cxx \
|
||||
|
|
@ -27,6 +26,7 @@
|
|||
pnmFileTypeBMP.cxx \
|
||||
pnmFileTypeIMG.cxx \
|
||||
pnmFileTypeJPG.cxx pnmFileTypeJPGReader.cxx pnmFileTypeJPGWriter.cxx \
|
||||
pnmFileTypePNG.cxx \
|
||||
pnmFileTypePNM.cxx \
|
||||
pnmFileTypeSGI.cxx \
|
||||
pnmFileTypeSGIReader.cxx pnmFileTypeSGIWriter.cxx \
|
||||
|
|
|
|||
|
|
@ -19,12 +19,12 @@
|
|||
|
||||
#ifdef HAVE_PNG
|
||||
|
||||
#include <png.h>
|
||||
|
||||
#include "pnmFileType.h"
|
||||
#include "pnmReader.h"
|
||||
#include "pnmWriter.h"
|
||||
|
||||
#include <png.h>
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Class : PNMFileTypePNG
|
||||
// Description : For reading and writing PNG files.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
#include "pnmFileTypePNG.cxx"
|
||||
#include "pnmFileTypeTIFF.cxx"
|
||||
#include "pnmFileTypePNM.cxx"
|
||||
#include "pnmFileTypeSGI.cxx"
|
||||
|
|
|
|||
Loading…
Reference in New Issue