diff options
author | 2011-07-12 12:31:33 +0000 | |
---|---|---|
committer | 2011-07-12 12:31:33 +0000 | |
commit | ffa4eaf737e90a8bf35f910d0030b8d0bd62002e (patch) | |
tree | 25bc3c895cb08bea08a5649af5620c367ab8ef7f /sci-geosciences/mapserver/files | |
parent | Version bump; PUBLISH fixes now upstream. The channel variable backward compa... (diff) | |
download | historical-ffa4eaf737e90a8bf35f910d0030b8d0bd62002e.tar.gz historical-ffa4eaf737e90a8bf35f910d0030b8d0bd62002e.tar.bz2 historical-ffa4eaf737e90a8bf35f910d0030b8d0bd62002e.zip |
backport patch from trunk, fixing macro definition (compile issue), see http://trac.osgeo.org/mapserver/ticket/3877
Package-Manager: portage-2.2.0_alpha37/cvs/Linux x86_64
Diffstat (limited to 'sci-geosciences/mapserver/files')
-rw-r--r-- | sci-geosciences/mapserver/files/6.0.0-fix-mapunion-macro.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sci-geosciences/mapserver/files/6.0.0-fix-mapunion-macro.patch b/sci-geosciences/mapserver/files/6.0.0-fix-mapunion-macro.patch new file mode 100644 index 000000000000..952d3b6f6401 --- /dev/null +++ b/sci-geosciences/mapserver/files/6.0.0-fix-mapunion-macro.patch @@ -0,0 +1,36 @@ +Index: /trunk/mapserver/HISTORY.TXT
+===================================================================
+--- /trunk/mapserver/HISTORY.TXT (revision 11712)
++++ /trunk/mapserver/HISTORY.TXT (revision 11713)
+@@ -15,4 +15,6 @@
+ Current Version (SVN trunk, 6.1-dev, future 6.2):
+ -------------------------------------------------
++
++- Fixed the build problem in mapunion.c (#3877)
+
+ - Implement to get all shapes with the clustered layer (#3873)
+Index: /trunk/mapserver/mapunion.c
+===================================================================
+--- /trunk/mapserver/mapunion.c (revision 11710)
++++ /trunk/mapserver/mapunion.c (revision 11713)
+@@ -316,5 +316,5 @@
+ /* get items requested by the union layer plus the required items */
+ msLayerSetProcessingKey(srclayer, "ITEMS", itemlist);
+- if (msLayerWhichItems(srclayer, TRUE, NULL) != MS_SUCCESS)
++ if (msLayerWhichItems(srclayer, MS_TRUE, NULL) != MS_SUCCESS)
+ {
+ msFree(itemlist);
+@@ -325,5 +325,5 @@
+ {
+ /* get only the required items */
+- if (msLayerWhichItems(srclayer, FALSE, NULL) != MS_SUCCESS)
++ if (msLayerWhichItems(srclayer, MS_FALSE, NULL) != MS_SUCCESS)
+ return MS_FAILURE;
+ }
+@@ -354,5 +354,5 @@
+
+ /* get only the required items */
+- if (msLayerWhichItems(srclayer, FALSE, NULL) != MS_SUCCESS)
++ if (msLayerWhichItems(srclayer, MS_FALSE, NULL) != MS_SUCCESS)
+ return MS_FAILURE;
+ }
|