gl2ps.h | gl2ps.h | |||
---|---|---|---|---|
skipping to change at line 30 | skipping to change at line 30 | |||
* | * | |||
* You should have received a copy of the GNU Library General Public | * You should have received a copy of the GNU Library General Public | |||
* License along with this library in the file named "COPYING.LGPL"; | * License along with this library in the file named "COPYING.LGPL"; | |||
* if not, write to the Free Software Foundation, Inc., 675 Mass Ave, | * if not, write to the Free Software Foundation, Inc., 675 Mass Ave, | |||
* Cambridge, MA 02139, USA. | * Cambridge, MA 02139, USA. | |||
* | * | |||
* You should have received a copy of the GL2PS License with this | * You should have received a copy of the GL2PS License with this | |||
* library in the file named "COPYING.GL2PS"; if not, I will be glad | * library in the file named "COPYING.GL2PS"; if not, I will be glad | |||
* to provide one. | * to provide one. | |||
* | * | |||
* For the latest info about gl2ps, see http://www.geuz.org/gl2ps/. | * For the latest info about gl2ps and a full list of contributors, | |||
* see http://www.geuz.org/gl2ps/. | ||||
* | ||||
* Please report all bugs and problems to <gl2ps@geuz.org>. | * Please report all bugs and problems to <gl2ps@geuz.org>. | |||
*/ | */ | |||
#ifndef __GL2PS_H__ | #ifndef __GL2PS_H__ | |||
#define __GL2PS_H__ | #define __GL2PS_H__ | |||
#include <stdio.h> | #include <stdio.h> | |||
#include <stdlib.h> | #include <stdlib.h> | |||
/* Define GL2PSDLL at compile time to build a Windows DLL */ | /* Define GL2PSDLL at compile time to build a Windows DLL */ | |||
skipping to change at line 80 | skipping to change at line 82 | |||
# define GL2PS_HAVE_ZLIB | # define GL2PS_HAVE_ZLIB | |||
# if defined(HAVE_LIBPNG) || defined(HAVE_PNG) | # if defined(HAVE_LIBPNG) || defined(HAVE_PNG) | |||
# define GL2PS_HAVE_LIBPNG | # define GL2PS_HAVE_LIBPNG | |||
# endif | # endif | |||
#endif | #endif | |||
/* Version number */ | /* Version number */ | |||
#define GL2PS_MAJOR_VERSION 1 | #define GL2PS_MAJOR_VERSION 1 | |||
#define GL2PS_MINOR_VERSION 3 | #define GL2PS_MINOR_VERSION 3 | |||
#define GL2PS_PATCH_VERSION 3 | #define GL2PS_PATCH_VERSION 4 | |||
#define GL2PS_EXTRA_VERSION "" | #define GL2PS_EXTRA_VERSION "" | |||
#define GL2PS_VERSION (GL2PS_MAJOR_VERSION + \ | #define GL2PS_VERSION (GL2PS_MAJOR_VERSION + \ | |||
0.01 * GL2PS_MINOR_VERSION + \ | 0.01 * GL2PS_MINOR_VERSION + \ | |||
0.0001 * GL2PS_PATCH_VERSION) | 0.0001 * GL2PS_PATCH_VERSION) | |||
#define GL2PS_COPYRIGHT "(C) 1999-2009 C. Geuzaine" | #define GL2PS_COPYRIGHT "(C) 1999-2009 C. Geuzaine" | |||
/* Output file formats (the values and the ordering are important!) */ | /* Output file formats (the values and the ordering are important!) */ | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 4 lines changed or added | |||