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/cdrom/Makefile \
|
||||
src/Utils/download-map/Makefile \
|
||||
src/Utils/TerraSync/Makefile \
|
||||
])
|
||||
AC_OUTPUT
|
||||
|
||||
|
|
|
@ -72,6 +72,7 @@
|
|||
#include "texparams.hxx"
|
||||
|
||||
SG_USING_STD(map);
|
||||
SG_USING_STD(less);
|
||||
SG_USING_STD(string);
|
||||
|
||||
|
||||
|
|
|
@ -21,6 +21,10 @@
|
|||
// $Id$
|
||||
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
# include <io.h>
|
||||
#else
|
||||
|
|
|
@ -32,6 +32,9 @@ SG_USING_STD( endl );
|
|||
|
||||
#define MAXBUF 1024
|
||||
|
||||
#if defined (__APPLE__)
|
||||
typedef int socklen_t;
|
||||
#endif
|
||||
|
||||
static double start_lon, start_lat;
|
||||
static double lat = 0.0;
|
||||
|
|
|
@ -2,5 +2,4 @@ EXTRA_DIST = mirror-dem
|
|||
|
||||
SUBDIRS = \
|
||||
cdrom \
|
||||
download-map \
|
||||
TerraSync
|
||||
download-map
|
||||
|
|
Loading…
Reference in a new issue