]> granicus.if.org Git - postgis/commitdiff
Fix header guard of pgsql_compat.h and drop the duplicate
authorSandro Santilli <strk@keybit.net>
Thu, 9 Feb 2012 17:00:02 +0000 (17:00 +0000)
committerSandro Santilli <strk@keybit.net>
Thu, 9 Feb 2012 17:00:02 +0000 (17:00 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@9133 b70326c6-7e19-0410-871a-916f4a2858ee

libpgcommon/pgsql_compat.h
raster/rt_pg/pgsql_compat.h [deleted file]

index c5be1d125ea65fae0566822a732628800fda9858..8104db960b93398c0c53132f959bfe5eb6e948f4 100644 (file)
@@ -1,4 +1,5 @@
 #ifndef _PGSQL_COMPAT_H
+#define _PGSQL_COMPAT_H 1
 
 /* Make sure PG_NARGS is defined for older PostgreSQL versions */
 #ifndef PG_NARGS
diff --git a/raster/rt_pg/pgsql_compat.h b/raster/rt_pg/pgsql_compat.h
deleted file mode 100644 (file)
index 049cd0b..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef PGSQL_COMPAT_H_INCLUDED
-
-/* Make sure PG_NARGS is defined for older PostgreSQL versions */
-#ifndef PG_NARGS
-#define PG_NARGS() (fcinfo->nargs)
-#endif
-
-/* Define ARR_OVERHEAD_NONULLS for PostgreSQL < 8.2 */
-#if POSTGIS_PGSQL_VERSION < 82
-#define ARR_OVERHEAD_NONULLS(x) ARR_OVERHEAD((x))
-#endif
-
-/* PostgreSQL < 8.3 uses VARATT_SIZEP rather than SET_VARSIZE for varlena types */
-#if POSTGIS_PGSQL_VERSION < 83
-#define SET_VARSIZE(var, size)   VARATT_SIZEP(var) = size
-#endif
-
-#endif /* PGSQL_COMPAT_H_INCLUDED */