Various fixes and tweaks.
This commit is contained in:
parent
bb4c4f6b13
commit
27a068f721
5 changed files with 9 additions and 3 deletions
|
@ -335,7 +335,6 @@ AC_CONFIG_FILES([ \
|
||||||
src/Utils/Makefile \
|
src/Utils/Makefile \
|
||||||
src/Utils/cdrom/Makefile \
|
src/Utils/cdrom/Makefile \
|
||||||
src/Utils/download-map/Makefile \
|
src/Utils/download-map/Makefile \
|
||||||
src/Utils/TerraSync/Makefile \
|
|
||||||
])
|
])
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
||||||
|
|
|
@ -72,6 +72,7 @@
|
||||||
#include "texparams.hxx"
|
#include "texparams.hxx"
|
||||||
|
|
||||||
SG_USING_STD(map);
|
SG_USING_STD(map);
|
||||||
|
SG_USING_STD(less);
|
||||||
SG_USING_STD(string);
|
SG_USING_STD(string);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,10 @@
|
||||||
// $Id$
|
// $Id$
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
# include <config.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
# include <io.h>
|
# include <io.h>
|
||||||
#else
|
#else
|
||||||
|
|
|
@ -32,6 +32,9 @@ SG_USING_STD( endl );
|
||||||
|
|
||||||
#define MAXBUF 1024
|
#define MAXBUF 1024
|
||||||
|
|
||||||
|
#if defined (__APPLE__)
|
||||||
|
typedef int socklen_t;
|
||||||
|
#endif
|
||||||
|
|
||||||
static double start_lon, start_lat;
|
static double start_lon, start_lat;
|
||||||
static double lat = 0.0;
|
static double lat = 0.0;
|
||||||
|
|
|
@ -2,5 +2,4 @@ EXTRA_DIST = mirror-dem
|
||||||
|
|
||||||
SUBDIRS = \
|
SUBDIRS = \
|
||||||
cdrom \
|
cdrom \
|
||||||
download-map \
|
download-map
|
||||||
TerraSync
|
|
||||||
|
|
Loading…
Reference in a new issue