7
1
Fork 0

Change to define __STDC_LIMIT_MACROS first

<stdint.h> (or other system headers handling the macro) may be included
indirectly from other header files (<sys/types.h> is a reasonable one).
pull/20/head
OBATA Akio vor 5 Jahren committet von Slávek Banko
Ursprung 6716d0dfb9
Commit 9e6c88287f
Signiert von: SlavekB
GPG-Schlüssel-ID: 608F5293A04BE668

@ -1,18 +1,18 @@
// This library is distributed under the conditions of the GNU LGPL.
#include "config.h"
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_JASPER
#include "jp2.h"
#ifdef HAVE_STDINT_H
#if !defined(__STDC_LIMIT_MACROS)
#define __STDC_LIMIT_MACROS
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include <tdetempfile.h>

Laden…
Abbrechen
Speichern