From 751a93f3ec8c4e2b68ff7a63be04a8aa966a0b60 Mon Sep 17 00:00:00 2001 From: Glenn Randers-Pehrson Date: Sat, 17 Dec 2011 10:01:00 -0600 Subject: [PATCH] [libpng16] Added pngconf.h --- pngconfig.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pngconfig.h diff --git a/pngconfig.h b/pngconfig.h new file mode 100644 index 000000000..c740e5517 --- /dev/null +++ b/pngconfig.h @@ -0,0 +1,26 @@ +/* pngconf.h - machine configurable file for libpng + * + * libpng version 1.6.0beta02 - December 17, 2011 + * + * Copyright (c) 2011 Glenn Randers-Pehrson + * Written by John Bowler. + * + * This code is released under the libpng license. + * For conditions of distribution and use, see the disclaimer + * and license in png.h + * + * config.h is created by and PNG_CONFIGURE_LIBPNG is set by the "configure" + * script. We may need it here to get the correct configuration on things + * like limits. + */ + +#ifndef PNGCONFIG_H +#define PNGCONFIG_H + +#ifdef PNG_CONFIGURE_LIBPNG +# ifdef HAVE_CONFIG_H +# include "config.h" +# endif +#endif + +#endif /* PNGCONFIG_H */