*
**********************************************************************
* $Log$
+ * Revision 1.23 2003/11/05 18:25:08 strk
+ * moved #ifdef USE_GEOS below prototypes, added NULL implementation of unite_garray
+ *
* Revision 1.22 2003/11/05 18:02:41 strk
* renamed unite_finalfunc to unite_garray
*
//--------------------------------------------------------------------------
//
//#define DEBUG
-#ifdef USE_GEOS
#include "postgres.h"
LINE3D *LineFromGeometry(Geometry *g, int *size);
void NOTICE_MESSAGE(char *msg);
+#ifdef USE_GEOS
+
//-----------------------------------------------
// return a GEOS Geometry from a POSTGIS GEOMETRY
//----------------------------------------------
PG_RETURN_NULL(); // never get here
}
+PG_FUNCTION_INFO_V1(unite_garray);
+Datum unite_garray(PG_FUNCTION_ARGS)
+{
+ elog(ERROR,"unite_garray:: operation not implemented - compile PostGIS with GEOS support");
+ PG_RETURN_NULL(); // never get here
+}
+
#endif