Fixed the build system
This commit is contained in:
parent
10a0bdc073
commit
fcb9e6c8ba
134 changed files with 165 additions and 168 deletions
|
@ -1,7 +1,7 @@
|
|||
dnl
|
||||
dnl originally from ncftp 2.3.0
|
||||
dnl added wi_EXTRA_PDIR and wi_ANSI_C
|
||||
dnl $Id$
|
||||
dnl $Id: acinclude.m4,v 1.3 2005-09-09 14:49:19 curt Exp $
|
||||
dnl
|
||||
AC_DEFUN([wi_EXTRA_IDIR], [
|
||||
incdir="$1"
|
||||
|
|
23
configure.ac
23
configure.ac
|
@ -5,7 +5,7 @@ AC_INIT
|
|||
AC_CONFIG_SRCDIR([src/Lib/DEM/dem.cxx])
|
||||
|
||||
# Require at least automake 2.52
|
||||
AC_PREREQ(2.52)
|
||||
AC_PREREQ(2.59)
|
||||
|
||||
dnl Initialize the automake stuff
|
||||
AM_INIT_AUTOMAKE(TerraGear, 0.9.8)
|
||||
|
@ -305,7 +305,7 @@ fi
|
|||
|
||||
AC_MSG_CHECKING(for proper simgear version)
|
||||
|
||||
AC_TRY_RUN([
|
||||
AC_RUN_IFELSE([AC_LANG_SOURCE([[
|
||||
#include <stdio.h>
|
||||
#include <simgear/version.h>
|
||||
|
||||
|
@ -338,12 +338,9 @@ int main() {
|
|||
return 0;
|
||||
}
|
||||
|
||||
],
|
||||
AC_MSG_RESULT(yes),
|
||||
[AC_MSG_RESULT(wrong version);
|
||||
AC_MSG_ERROR([Install latest simgear first...])],
|
||||
AC_MSG_RESULT(yes)
|
||||
)
|
||||
]])],[AC_MSG_RESULT(yes)],[AC_MSG_RESULT(wrong version);
|
||||
AC_MSG_ERROR([Install latest simgear first...])],[AC_MSG_RESULT(yes)
|
||||
])
|
||||
|
||||
dnl Checks for typedefs, structures, and compiler characteristics.
|
||||
AC_C_CONST
|
||||
|
@ -353,19 +350,19 @@ AC_STRUCT_TM
|
|||
|
||||
dnl check for socklen_t (in Unix98)
|
||||
AC_MSG_CHECKING(for socklen_t)
|
||||
AC_TRY_COMPILE([
|
||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
int accept (int, struct sockaddr *, socklen_t *);
|
||||
],[],[
|
||||
]], [[]])],[
|
||||
AC_MSG_RESULT(yes)],[
|
||||
AC_TRY_COMPILE([
|
||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
int accept (int, struct sockaddr *, size_t *);
|
||||
],[],[
|
||||
]], [[]])],[
|
||||
AC_MSG_RESULT(size_t)
|
||||
AC_DEFINE([socklen_t], size_t, [Define for socklen_t])], [
|
||||
AC_DEFINE([socklen_t], size_t, [Define for socklen_t])],[
|
||||
AC_MSG_RESULT(int)
|
||||
AC_DEFINE([socklen_t], int, [Define for socklen_t])])])
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#
|
||||
# $Id$
|
||||
# $Id: Makefile.am,v 1.20 2005-09-09 15:05:15 curt Exp $
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: apt_surface.cxx,v 1.31 2005-12-19 16:51:25 curt Exp $
|
||||
//
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: apt_surface.hxx,v 1.9 2005-09-09 20:47:04 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: build.cxx,v 1.116 2005-10-31 18:43:02 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: build.hxx,v 1.10 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: convex_hull.cxx,v 1.12 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: convex_hull.hxx,v 1.5 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: elevations.cxx,v 1.8 2005-12-19 16:51:25 curt Exp $
|
||||
//
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: elevations.hxx,v 1.4 2005-09-09 15:05:15 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: global.hxx,v 1.9 2005-10-31 18:43:27 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: lights.cxx,v 1.41 2005-12-19 16:51:25 curt Exp $
|
||||
//
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: lights.hxx,v 1.8 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: main.cxx,v 1.37 2005-12-19 15:53:21 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: point2d.cxx,v 1.2 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: point2d.hxx,v 1.4 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: poly_extra.cxx,v 1.9 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: poly_extra.hxx,v 1.5 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: runway.cxx,v 1.18 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: runway.hxx,v 1.16 2005-04-20 18:20:15 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: rwy_common.cxx,v 1.12 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
#include <simgear/compiler.h>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: rwy_common.hxx,v 1.5 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: rwy_nonprec.cxx,v 1.16 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
#include <simgear/compiler.h>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: rwy_nonprec.hxx,v 1.5 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: rwy_prec.cxx,v 1.18 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
#include <simgear/compiler.h>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: rwy_prec.hxx,v 1.5 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: rwy_simple.cxx,v 1.12 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: rwy_simple.hxx,v 1.5 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: rwy_visual.cxx,v 1.18 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: rwy_visual.hxx,v 1.5 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: taxiway.cxx,v 1.13 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: taxiway.hxx,v 1.5 2004-11-19 22:25:49 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: texparams.hxx,v 1.7 2004-11-19 22:25:49 curt Exp $
|
||||
|
||||
|
||||
#ifndef _TEXPARAMS_HXX
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: clipper.cxx,v 1.33 2006-11-29 22:19:33 curt Exp $
|
||||
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: clipper.hxx,v 1.11 2007-08-15 14:36:52 curt Exp $
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: testclipper.cxx,v 1.7 2004-11-19 22:25:49 curt Exp $
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: genobj.cxx,v 1.26 2004-11-19 22:25:49 curt Exp $
|
||||
|
||||
|
||||
#include <time.h>
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: genobj.hxx,v 1.9 2004-11-19 22:25:49 curt Exp $
|
||||
|
||||
|
||||
#ifndef _GENOBJ_HXX
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: construct.cxx,v 1.4 2004-11-19 22:25:49 curt Exp $
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: construct.hxx,v 1.13 2004-11-19 22:25:49 curt Exp $
|
||||
|
||||
|
||||
#ifndef _CONSTRUCT_HXX
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: main.cxx,v 1.58 2005-09-28 16:40:32 curt Exp $
|
||||
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: master.cxx,v 1.9 2004-11-19 22:25:49 curt Exp $
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: match.cxx,v 1.21 2004-11-19 22:25:49 curt Exp $
|
||||
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: match.hxx,v 1.7 2004-11-19 22:25:49 curt Exp $
|
||||
|
||||
|
||||
#ifndef _MATCH_HXX
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#
|
||||
# $Id$
|
||||
# $Id: fgfs-launch-clients,v 1.17 2006-01-24 19:39:48 curt Exp $
|
||||
|
||||
CLIENT=fgfs-tools-client
|
||||
HOSTNAME=`uname -n`
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#
|
||||
# $Id$
|
||||
# $Id: fgfs-launch-server,v 1.9 2005-12-19 15:53:47 curt Exp $
|
||||
|
||||
|
||||
SERVER=fgfs-tools-server
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: triangle.cxx,v 1.25 2005-10-31 18:45:19 curt Exp $
|
||||
|
||||
#include <simgear/compiler.h>
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: triangle.hxx,v 1.7 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifndef _TRIANGLE_HXX
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: trieles.cxx,v 1.2 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#include "trieles.hxx"
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: trieles.hxx,v 1.4 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifndef _TRIELES_HXX
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: array.cxx,v 1.24 2005-11-10 16:26:59 curt Exp $
|
||||
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: array.hxx,v 1.18 2005-11-10 16:26:59 curt Exp $
|
||||
|
||||
|
||||
#ifndef _ARRAY_HXX
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: dem.cxx,v 1.20 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: dem.hxx,v 1.11 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifndef _DEM_HXX
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: contour_tree.cxx,v 1.3 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#include "contour_tree.hxx"
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: contour_tree.hxx,v 1.5 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifndef _CONTOUR_TREE_HXX
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: poly_support.cxx,v 1.39 2005-12-31 19:29:26 curt Exp $
|
||||
|
||||
|
||||
#include <float.h>
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: poly_support.hxx,v 1.14 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifndef _POLY_SUPPORT_HXX
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: trinodes.cxx,v 1.7 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#include "trinodes.hxx"
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: trinodes.hxx,v 1.7 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifndef _TRINODES_HXX
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: trisegs.cxx,v 1.10 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#include <simgear/constants.h>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: trisegs.hxx,v 1.4 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifndef _TRISEGS_HXX
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: hgt.cxx,v 1.7 2005-12-19 16:06:45 curt Exp $
|
||||
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: hgt.hxx,v 1.4 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifndef _HGT_HXX
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: genfans.cxx,v 1.9 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#include <simgear/compiler.h>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: genfans.hxx,v 1.7 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifndef _GENFANS_HXX
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: genstrips.cxx,v 1.3 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#include <simgear/compiler.h>
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: genstrips.hxx,v 1.4 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifndef _GENSTRIPS_HXX
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: output.cxx,v 1.10 2004-11-19 22:25:50 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: output.hxx,v 1.5 2004-11-19 22:25:50 curt Exp $
|
||||
//
|
||||
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: chop-bin.cxx,v 1.6 2007-11-05 21:58:59 curt Exp $
|
||||
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: chop.hxx,v 1.3 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifndef _TG_CHOP_HXX
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: index.cxx,v 1.7 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
#include <simgear/compiler.h>
|
||||
#include <simgear/debug/logstream.hxx>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: index.hxx,v 1.4 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifndef _INDEX_HXX
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: names.cxx,v 1.15 2007-10-31 15:05:13 curt Exp $
|
||||
|
||||
#include <simgear/compiler.h>
|
||||
#include <simgear/debug/logstream.hxx>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: names.hxx,v 1.16 2007-10-31 15:05:13 curt Exp $
|
||||
|
||||
|
||||
#ifndef _NAMES_HXX
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: polygon.cxx,v 1.30 2007-11-05 14:02:21 curt Exp $
|
||||
|
||||
|
||||
// include Generic Polygon Clipping Library
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: polygon.hxx,v 1.17 2007-11-05 14:02:21 curt Exp $
|
||||
|
||||
|
||||
#ifndef _POLYGON_HXX
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: simple_clip.cxx,v 1.7 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#include <simgear/constants.h>
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: simple_clip.hxx,v 1.4 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifndef _SIMPLE_CLIP_HXX
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: superpoly.cxx,v 1.6 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#include "superpoly.hxx"
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: superpoly.hxx,v 1.9 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifndef _SUPERPOLY_HXX
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: tri_support.c,v 1.4 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// $Id$
|
||||
// $Id: tri_support.h,v 1.3 2004-11-19 22:25:50 curt Exp $
|
||||
|
||||
|
||||
#ifndef _TRI_SUPPORT_H
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
*
|
||||
* This code is in the public domain.
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.1 2000/02/09 19:51:46 curt
|
||||
* $Log: dbfadd.c,v $
|
||||
* Revision 1.1 2000-02-09 19:51:46 curt
|
||||
* Initial revision
|
||||
*
|
||||
* Revision 1.1 1999/08/24 21:13:00 curt
|
||||
|
@ -22,7 +22,7 @@
|
|||
*/
|
||||
|
||||
static char rcsid[] =
|
||||
"$Id$";
|
||||
"$Id: dbfadd.c,v 1.1 2000-02-09 19:51:46 curt Exp $";
|
||||
|
||||
#include "shapefil.h"
|
||||
#include <math.h>
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
*
|
||||
* This code is in the public domain.
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.1 2000/02/09 19:51:46 curt
|
||||
* $Log: dbfcreate.c,v $
|
||||
* Revision 1.1 2000-02-09 19:51:46 curt
|
||||
* Initial revision
|
||||
*
|
||||
* Revision 1.1 1999/08/24 21:13:00 curt
|
||||
|
@ -19,7 +19,7 @@
|
|||
*/
|
||||
|
||||
static char rcsid[] =
|
||||
"$Id$";
|
||||
"$Id: dbfcreate.c,v 1.1 2000-02-09 19:51:46 curt Exp $";
|
||||
|
||||
#include "shapefil.h"
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
*
|
||||
* This code is in the public domain.
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.1 2000/02/09 19:51:46 curt
|
||||
* $Log: dbfdump.c,v $
|
||||
* Revision 1.1 2000-02-09 19:51:46 curt
|
||||
* Initial revision
|
||||
*
|
||||
* Revision 1.1 1999/08/24 21:13:00 curt
|
||||
|
@ -22,7 +22,7 @@
|
|||
*/
|
||||
|
||||
static char rcsid[] =
|
||||
"$Id$";
|
||||
"$Id: dbfdump.c,v 1.1 2000-02-09 19:51:46 curt Exp $";
|
||||
|
||||
#include "shapefil.h"
|
||||
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
* DEALINGS IN THE SOFTWARE.
|
||||
******************************************************************************
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.2 2000/11/25 19:39:49 curt
|
||||
* $Log: dbfopen.c,v $
|
||||
* Revision 1.2 2000-11-25 19:39:49 curt
|
||||
* Contributed by Bruce Finney:
|
||||
*
|
||||
* The following files have been changed to enable the latest Terragear CVS
|
||||
|
@ -196,7 +196,7 @@
|
|||
*/
|
||||
|
||||
static char rcsid[] =
|
||||
"$Id$";
|
||||
"$Id: dbfopen.c,v 1.2 2000-11-25 19:39:49 curt Exp $";
|
||||
|
||||
#include "shapefil.h"
|
||||
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
*
|
||||
* This code is in the public domain.
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.1 2000/02/09 19:51:46 curt
|
||||
* $Log: shapefil.h,v $
|
||||
* Revision 1.1 2000-02-09 19:51:46 curt
|
||||
* Initial revision
|
||||
*
|
||||
* Revision 1.1 1999/08/24 21:13:01 curt
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
*
|
||||
* This code is in the public domain.
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.1 2000/02/09 19:51:46 curt
|
||||
* $Log: shpadd.c,v $
|
||||
* Revision 1.1 2000-02-09 19:51:46 curt
|
||||
* Initial revision
|
||||
*
|
||||
* Revision 1.1 1999/08/24 21:13:01 curt
|
||||
|
@ -34,7 +34,7 @@
|
|||
*/
|
||||
|
||||
static char rcsid[] =
|
||||
"$Id$";
|
||||
"$Id: shpadd.c,v 1.1 2000-02-09 19:51:46 curt Exp $";
|
||||
|
||||
#include "shapefil.h"
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
*
|
||||
* This code is in the public domain.
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.1 2000/02/09 19:51:46 curt
|
||||
* $Log: shpcreate.c,v $
|
||||
* Revision 1.1 2000-02-09 19:51:46 curt
|
||||
* Initial revision
|
||||
*
|
||||
* Revision 1.1 1999/08/24 21:13:01 curt
|
||||
|
@ -16,7 +16,7 @@
|
|||
*/
|
||||
|
||||
static char rcsid[] =
|
||||
"$Id$";
|
||||
"$Id: shpcreate.c,v 1.1 2000-02-09 19:51:46 curt Exp $";
|
||||
|
||||
#include "shapefil.h"
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
*
|
||||
* This code is in the public domain.
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.1 2000/02/09 19:51:46 curt
|
||||
* $Log: shpdump.c,v $
|
||||
* Revision 1.1 2000-02-09 19:51:46 curt
|
||||
* Initial revision
|
||||
*
|
||||
* Revision 1.1 1999/08/24 21:13:01 curt
|
||||
|
@ -28,7 +28,7 @@
|
|||
*/
|
||||
|
||||
static char rcsid[] =
|
||||
"$Id$";
|
||||
"$Id: shpdump.c,v 1.1 2000-02-09 19:51:46 curt Exp $";
|
||||
|
||||
#include "shapefil.h"
|
||||
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
* DEALINGS IN THE SOFTWARE.
|
||||
******************************************************************************
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.2 2000/11/25 19:39:49 curt
|
||||
* $Log: shpopen.c,v $
|
||||
* Revision 1.2 2000-11-25 19:39:49 curt
|
||||
* Contributed by Bruce Finney:
|
||||
*
|
||||
* The following files have been changed to enable the latest Terragear CVS
|
||||
|
@ -217,7 +217,7 @@
|
|||
*/
|
||||
|
||||
static char rcsid[] =
|
||||
"$Id$";
|
||||
"$Id: shpopen.c,v 1.2 2000-11-25 19:39:49 curt Exp $";
|
||||
|
||||
#include "shapefil.h"
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
*
|
||||
* This code is in the public domain.
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.1 2000/02/09 19:51:46 curt
|
||||
* $Log: shptest.c,v $
|
||||
* Revision 1.1 2000-02-09 19:51:46 curt
|
||||
* Initial revision
|
||||
*
|
||||
* Revision 1.1 1999/08/24 21:13:01 curt
|
||||
|
@ -19,7 +19,7 @@
|
|||
*/
|
||||
|
||||
static char rcsid[] =
|
||||
"$Id$";
|
||||
"$Id: shptest.c,v 1.1 2000-02-09 19:51:46 curt Exp $";
|
||||
|
||||
#include "shapefil.h"
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
*
|
||||
* This code is in the public domain.
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.1 2000/02/09 19:51:46 curt
|
||||
* $Log: shputils.c,v $
|
||||
* Revision 1.1 2000-02-09 19:51:46 curt
|
||||
* Initial revision
|
||||
*
|
||||
* Revision 1.1 1999/08/24 21:13:01 curt
|
||||
|
@ -39,7 +39,7 @@
|
|||
*/
|
||||
|
||||
static char rcsid[] =
|
||||
"$Id$";
|
||||
"$Id: shputils.c,v 1.1 2000-02-09 19:51:46 curt Exp $";
|
||||
|
||||
#include "shapefil.h"
|
||||
#include "string.h"
|
||||
|
|
|
@ -20,7 +20,7 @@ class VpfTableManager;
|
|||
* for tables.</p>
|
||||
*
|
||||
* @author David Megginson, david@megginson.com
|
||||
* @version $Revision$
|
||||
* @version $Revision: 1.1 $
|
||||
*/
|
||||
class VpfComponent
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ class VpfTileRef;
|
|||
* created directly (except by copying an existing one).</p>
|
||||
*
|
||||
* @author David Megginson, david@megginson.com
|
||||
* @version $Revision$
|
||||
* @version $Revision: 1.2 $
|
||||
* @see VpfDataBase
|
||||
* @see VpfLibrary
|
||||
*/
|
||||
|
|
|
@ -30,7 +30,7 @@ class VpfLibrary;
|
|||
* objects, which, in turn, create coverage objects, and so on.</p>
|
||||
*
|
||||
* @author David Megginson, david@megginson.com
|
||||
* @version $Revision$
|
||||
* @version $Revision: 1.2 $
|
||||
* @see VpfDataBase
|
||||
* @see VpfCoverage
|
||||
*/
|
||||
|
|
|
@ -28,7 +28,7 @@ class VpfTile;
|
|||
* specific feature in a single place.</p>
|
||||
*
|
||||
* @author David Megginson, david@megginson.com
|
||||
* @version $Revision$
|
||||
* @version $Revision: 1.1 $
|
||||
*/
|
||||
class VpfFeature : public VpfComponent
|
||||
{
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue