diff options
author | Fedja Beader <fedja@protonmail.ch> | 2025-05-21 22:27:41 +0000 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2025-05-21 22:27:41 +0000 |
commit | 96d1a1a749248a59e620d56d366188465e9ec3a8 (patch) | |
tree | f6ee8d08d9640214062585af80cfe894efa2e0bf | |
parent | 8e9b779a9932e7e33a3124b345b38b4e4ff95079 (diff) | |
download | manaplus-96d1a1a749248a59e620d56d366188465e9ec3a8.tar.gz manaplus-96d1a1a749248a59e620d56d366188465e9ec3a8.tar.bz2 manaplus-96d1a1a749248a59e620d56d366188465e9ec3a8.tar.xz manaplus-96d1a1a749248a59e620d56d366188465e9ec3a8.zip |
Use website URL instead of listing individual maintainer's email address in package definition
Note: PACKAGE_URL and PACKAGE_BUGREPORT are two preprocessr
defines normally set by autoconf, but not by CMake.
Unsure if they are used anywhere. grep says no.
May also reduce number of ManaVerse emails sent to M+'s maintainer
Related to and will conflict with !45 (and !28)
****
mana/plus!178
-rwxr-xr-x | configure.ac | 2 | ||||
-rw-r--r-- | packaging/switch/CMakeLists.txt.switch | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 3518f23f4..981cb3a64 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([ManaPlus], [1.0], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.0], [], [manaplus], [https://manaverse.germantmw.de]) AM_INIT_AUTOMAKE([1.9]) AC_LANG_CPLUSPLUS diff --git a/packaging/switch/CMakeLists.txt.switch b/packaging/switch/CMakeLists.txt.switch index 4520122ec..c3d9ef8d4 100644 --- a/packaging/switch/CMakeLists.txt.switch +++ b/packaging/switch/CMakeLists.txt.switch @@ -40,7 +40,7 @@ endforeach (DIR) set(INCLUDES src src/sdl2gfx) set(FLAGS -DPACKAGE_NAME=\"ManaPlus\" -DPACKAGE_TARNAME=\"manaplus\" -DPACKAGE_VERSION=\"1.9.3.23\" - -DPACKAGE_STRING=\"ManaPlus\ 1.9.3.23\" -DPACKAGE_BUGREPORT=\"akaras@inbox.ru\" -DPACKAGE_URL=\"\" + -DPACKAGE_STRING=\"ManaPlus\ 1.9.3.23\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"https://manaverse.germantmw.de\" -DPACKAGE=\"manaplus\" -DVERSION=\"1.9.3.23\" -DTIME_WITH_SYS_TIME=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_SELECT_H=1 -DHAVE_SYS_SOCKET_H=1 |