Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 919177
Collapse All | Expand All

(-)a/configure.ac (+1 lines)
Lines 5-10 Link Here
5
AC_INIT(libspatialite, 5.1.0, a.furieri@lqt.it)
5
AC_INIT(libspatialite, 5.1.0, a.furieri@lqt.it)
6
AC_LANG(C)
6
AC_LANG(C)
7
AC_CONFIG_MACRO_DIR([m4])
7
AC_CONFIG_MACRO_DIR([m4])
8
AC_USE_SYSTEM_EXTENSIONS
8
9
9
AM_INIT_AUTOMAKE([foreign no-define])
10
AM_INIT_AUTOMAKE([foreign no-define])
10
AM_MAINTAINER_MODE
11
AM_MAINTAINER_MODE
(-)a/src/gaiaaux/gg_sqlaux.c (+1 lines)
Lines 46-51 Link Here
46
#include <sys/types.h>
46
#include <sys/types.h>
47
#include <stdlib.h>
47
#include <stdlib.h>
48
#include <stdio.h>
48
#include <stdio.h>
49
#include <strings.h>
49
#include <string.h>
50
#include <string.h>
50
#include <math.h>
51
#include <math.h>
51
#include <ctype.h>
52
#include <ctype.h>
(-)a/src/gaiaexif/gaia_exif.c (+1 lines)
Lines 49-54 Link Here
49
#include <memory.h>
49
#include <memory.h>
50
#include <math.h>
50
#include <math.h>
51
#include <float.h>
51
#include <float.h>
52
#include <strings.h>
52
#include <string.h>
53
#include <string.h>
53
54
54
#if defined(_WIN32) && !defined(__MINGW32__)
55
#if defined(_WIN32) && !defined(__MINGW32__)
(-)a/src/gaiageo/gg_geoJSON.c (-7 / +7 lines)
Lines 41-53 Link Here
41
 
41
 
42
*/
42
*/
43
43
44
#include <sys/types.h>
45
#include <stdlib.h>
46
#include <stdio.h>
47
#include <string.h>
48
49
#include <assert.h>
50
51
#if defined(_WIN32) && !defined(__MINGW32__)
44
#if defined(_WIN32) && !defined(__MINGW32__)
52
#include "config-msvc.h"
45
#include "config-msvc.h"
53
#include <io.h>
46
#include <io.h>
Lines 55-60 Link Here
55
#include "config.h"
48
#include "config.h"
56
#endif
49
#endif
57
50
51
#include <sys/types.h>
52
#include <stdlib.h>
53
#include <stdio.h>
54
#include <string.h>
55
56
#include <assert.h>
57
58
#if defined(_WIN32) && !defined(__MINGW32__)
58
#if defined(_WIN32) && !defined(__MINGW32__)
59
#define isatty	_isatty
59
#define isatty	_isatty
60
#define fileno	_fileno
60
#define fileno	_fileno
(-)a/src/gaiageo/gg_kml.c (-6 / +6 lines)
Lines 41-46 Link Here
41
 
41
 
42
*/
42
*/
43
43
44
#if defined(_WIN32) && !defined(__MINGW32__)
45
#include "config-msvc.h"
46
#else
47
#include "config.h"
48
#endif
49
44
#include <sys/types.h>
50
#include <sys/types.h>
45
#include <stdlib.h>
51
#include <stdlib.h>
46
#include <stdio.h>
52
#include <stdio.h>
Lines 48-59 Link Here
48
54
49
#include <assert.h>
55
#include <assert.h>
50
56
51
#if defined(_WIN32) && !defined(__MINGW32__)
52
#include "config-msvc.h"
53
#else
54
#include "config.h"
55
#endif
56
57
#include <spatialite/sqlite.h>
57
#include <spatialite/sqlite.h>
58
#include <spatialite/debug.h>
58
#include <spatialite/debug.h>
59
59
(-)a/src/gaiageo/gg_shape.c (-6 / +7 lines)
Lines 43-62 Link Here
43
 
43
 
44
*/
44
*/
45
45
46
#if defined(_WIN32) && !defined(__MINGW32__)
47
#include "config-msvc.h"
48
#else
49
#include "config.h"
50
#endif
51
46
#include <sys/types.h>
52
#include <sys/types.h>
47
#include <stdlib.h>
53
#include <stdlib.h>
48
#include <stdio.h>
54
#include <stdio.h>
55
#include <strings.h>
49
#include <string.h>
56
#include <string.h>
50
#include <math.h>
57
#include <math.h>
51
#include <float.h>
58
#include <float.h>
52
#include <errno.h>
59
#include <errno.h>
53
60
54
#if defined(_WIN32) && !defined(__MINGW32__)
55
#include "config-msvc.h"
56
#else
57
#include "config.h"
58
#endif
59
60
#ifdef _WIN32
61
#ifdef _WIN32
61
#include <windows.h>
62
#include <windows.h>
62
#endif
63
#endif
(-)a/src/gaiageo/gg_vanuatu.c (-6 / +6 lines)
Lines 44-49 Link Here
44
 
44
 
45
*/
45
*/
46
46
47
#if defined(_WIN32) && !defined(__MINGW32__)
48
#include "config-msvc.h"
49
#else
50
#include "config.h"
51
#endif
52
47
#include <sys/types.h>
53
#include <sys/types.h>
48
#include <stdlib.h>
54
#include <stdlib.h>
49
#include <stdio.h>
55
#include <stdio.h>
Lines 51-62 Link Here
51
57
52
#include <assert.h>
58
#include <assert.h>
53
59
54
#if defined(_WIN32) && !defined(__MINGW32__)
55
#include "config-msvc.h"
56
#else
57
#include "config.h"
58
#endif
59
60
#include <spatialite/sqlite.h>
60
#include <spatialite/sqlite.h>
61
#include <spatialite/debug.h>
61
#include <spatialite/debug.h>
62
62

Return to bug 919177