--- lbbs/src/common.c 2025/12/01 14:01:36 1.52 +++ lbbs/src/common.c 2026/01/09 11:14:54 1.54 @@ -3,7 +3,7 @@ * common * - common definitions * - * Copyright (C) 2004-2025 Leaflet + * Copyright (C) 2004-2026 Leaflet */ #ifdef HAVE_CONFIG_H @@ -13,8 +13,17 @@ #include "common.h" // Version -const char APP_INFO[] = PACKAGE_STRING " build on " __DATE__ " " __TIME__; -const char COPYRIGHT_INFO[] = "Copyright (C) 2004-2025 Leaflet \n" +#ifdef __x86_64__ +const char APP_INFO[] = PACKAGE_STRING " build (x86_64) on " __DATE__ " " __TIME__; +#else +#ifdef __aarch64__ +const char APP_INFO[] = PACKAGE_STRING " build (aarch64) on " __DATE__ " " __TIME__; +#else +const char APP_INFO[] = PACKAGE_STRING " build (i386) on " __DATE__ " " __TIME__; +#endif +#endif + +const char COPYRIGHT_INFO[] = "Copyright (C) 2004-2026 Leaflet \n" "This program comes with ABSOLUTELY NO WARRANTY.\n" "This is free software, and you are welcome to redistribute it \n" "under certain conditions; see the GNU General Public License \n"