test program for package geos

This commit is contained in:
Volker Grabsch 2011-05-18 13:43:57 +02:00
parent e1ba498eac
commit d14260461a
2 changed files with 48 additions and 0 deletions

43
src/geos-test.c Normal file
View File

@ -0,0 +1,43 @@
/* This file is part of mingw-cross-env. */
/* See doc/index.html for further information. */
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <geos_c.h>
static void notice(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vprintf(fmt, ap);
va_end(ap);
printf("\n");
}
static void error(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vprintf(fmt, ap);
va_end(ap);
printf("\n");
exit(1);
}
int main(int argc, char *argv[])
{
GEOSContextHandle_t handle;
(void)argc;
(void)argv;
handle = initGEOS_r(notice, error);
printf("GEOS version: %s\n", GEOSversion());
finishGEOS_r(handle);
return 0;
}

View File

@ -26,4 +26,9 @@ define $(PKG)_BUILD
--prefix='$(PREFIX)/$(TARGET)' \
--disable-swig
$(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
'$(TARGET)-gcc' \
-W -Wall -Werror -ansi -pedantic \
'$(2).c' -o '$(PREFIX)/$(TARGET)/bin/test-geos.exe' \
-lgeos_c `'$(PREFIX)/$(TARGET)/bin/geos-config' --cflags --libs` -lstdc++
endef