diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2018-03-25 12:17:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-25 12:17:10 +0200 |
| commit | 325726a2b60743963fe4d392061dc81da1fc01e3 (patch) | |
| tree | 33235a41a325cc8ccf692b63163331e55e9a9b06 | |
| parent | bbf98610880944e8af75fe74c1c0cd2427d94d17 (diff) | |
| parent | c9a3c781cf5c9d67c171f09cf385b3e8f88eb18f (diff) | |
| download | PROJ-325726a2b60743963fe4d392061dc81da1fc01e3.tar.gz PROJ-325726a2b60743963fe4d392061dc81da1fc01e3.zip | |
Merge pull request #900 from mwtoews/dot4
Rename PACKAGE_NAME: PROJ.4 Projections -> PROJ
| -rw-r--r-- | cmake/Proj4Config.cmake | 5 | ||||
| -rw-r--r-- | configure.ac | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/cmake/Proj4Config.cmake b/cmake/Proj4Config.cmake index ee7e5533..2bc7cb38 100644 --- a/cmake/Proj4Config.cmake +++ b/cmake/Proj4Config.cmake @@ -31,9 +31,10 @@ check_library_exists(m ceil "" HAVE_LIBM) set(PACKAGE "proj") set(PACKAGE_BUGREPORT "https://github.com/OSGeo/proj.4/issues") -set(PACKAGE_NAME "PROJ.4 Projections") -set(PACKAGE_STRING "PROJ.4 Projections ${${PROJECT_INTERN_NAME}_VERSION}") +set(PACKAGE_NAME "PROJ") +set(PACKAGE_STRING "PROJ ${${PROJECT_INTERN_NAME}_VERSION}") set(PACKAGE_TARNAME "proj") +set(PACKAGE_URL "http://proj4.org") set(PACKAGE_VERSION "${${PROJECT_INTERN_NAME}_VERSION}") configure_file(cmake/proj_config.cmake.in src/proj_config.h) diff --git a/configure.ac b/configure.ac index 99a764db..269225a5 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,8 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT([PROJ.4 Projections], 5.0.0, [https://github.com/OSGeo/proj.4/issues], proj) +AC_INIT([PROJ], [5.0.0], + [https://github.com/OSGeo/proj.4/issues], proj, [http://proj4.org]) AC_CONFIG_MACRO_DIR([m4]) AC_LANG(C) |
