# HG changeset patch # User Volker Grabsch # Date 1305719037 -7200 # Node ID 04215d0b04a9813f321de83817f89d3c2dbec6ff # Parent 111fb87f87343d0f85502e2591efeaac65df41e5 test program for package geos diff -r 111fb87f8734 -r 04215d0b04a9 src/geos-test.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/geos-test.c Wed May 18 13:43:57 2011 +0200 @@ -0,0 +1,43 @@ +/* This file is part of mingw-cross-env. */ +/* See doc/index.html for further information. */ + +#include +#include +#include + +#include + +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; +} diff -r 111fb87f8734 -r 04215d0b04a9 src/geos.mk --- a/src/geos.mk Wed May 18 13:31:19 2011 +0200 +++ b/src/geos.mk Wed May 18 13:43:57 2011 +0200 @@ -26,4 +26,9 @@ --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