[Proj] Proj 4.9.1RC3 Released

Charles Karney charles.karney at sri.com
Mon Feb 23 10:06:01 EST 2015


I've tested proj svn trunk (r2633) and can report that proj builds with
cmake with Linux and Windows (Visual Studio 10,11,12 Win64).  With
Visual Studio 11 and 12, there's a complaint about an unknown compiler,
but this just in the attempt to provide feedback to the user and cmake
compiles the code fine.  To get rid of the complaint (at least until
Visual Studio 2015 comes out), apply the following patch...


On 2015-02-21 12:31, Howard Butler wrote:
> All,
>
> Proj4 4.9.1RC3 is now released for testing. Should no significant issues be identified, this is the last release candidate, and I will motion the MetaCRS list to promote it to final on Wednesday.
>
> Thanks for testing the past two RC's.
>
> Howard
>
> http://download.osgeo.org/proj/proj-4.9.1RC3.tar.gz
>
-------------- next part --------------
Index: cmake/Proj4SystemInfo.cmake
===================================================================
--- cmake/Proj4SystemInfo.cmake	(revision 2633)
+++ cmake/Proj4SystemInfo.cmake	(working copy)
@@ -44,6 +44,12 @@
     if(MSVC_VERSION EQUAL 1600)
       set(PROJ_COMPILER_NAME "msvc-10.0") #Visual Studio 2010
     endif()
+    if(MSVC_VERSION EQUAL 1700)
+      set(PROJ_COMPILER_NAME "msvc-11.0") #Visual Studio 2012
+    endif()
+    if(MSVC_VERSION EQUAL 1800)
+      set(PROJ_COMPILER_NAME "msvc-12.0") #Visual Studio 2013
+    endif()
   endif(MSVC)
   
   if(MINGW)


More information about the Proj mailing list