Rename PACKAGE_VERSION to PCSX_VERSION
authorretro-wertz <retro-wertz@users.noreply.github.com>
Fri, 2 Aug 2019 11:02:52 +0000 (19:02 +0800)
committerretro-wertz <retro-wertz@users.noreply.github.com>
Fri, 2 Aug 2019 11:05:45 +0000 (19:05 +0800)
- this should silence warning for another PACKAGE_VERSION define used for flac
- PACKAGE_VERSION is not used within pcsx other than version logging. Savestate does not check for this and is using another define for savestate version number.

include/config.h
libpcsxcore/debug.c
libpcsxcore/misc.c
libpcsxcore/r3000a.c
libpcsxcore/socket.c
maemo/main.c

index ce2f3ea..362e4a4 100644 (file)
@@ -1,2 +1,2 @@
 #define MAXPATHLEN 256
-#define PACKAGE_VERSION "1.9"
+#define PCSX_VERSION "1.9"
index 763dc45..4ba7f57 100644 (file)
@@ -445,7 +445,7 @@ static void ProcessCommands() {
             sprintf(reply, "200 %s\r\n", arguments == NULL ? "OK" : arguments);
             break;
         case 0x101:
-            sprintf(reply, "201 %s\r\n", PACKAGE_VERSION);
+            sprintf(reply, "201 %s\r\n", PCSX_VERSION);
             break;
         case 0x102:
             sprintf(reply, "202 1.0\r\n");
index bb34e5b..433d4be 100644 (file)
@@ -557,7 +557,7 @@ struct PcsxSaveFuncs SaveFuncs = {
        zlib_open, zlib_read, zlib_write, zlib_seek, zlib_close
 };
 
-static const char PcsxHeader[32] = "STv4 PCSX v" PACKAGE_VERSION;
+static const char PcsxHeader[32] = "STv4 PCSX v" PCSX_VERSION;
 
 // Savestate Versioning!
 // If you make changes to the savestate version, please increment the value below.
index 22341c5..0433c20 100644 (file)
@@ -30,7 +30,7 @@ R3000Acpu *psxCpu = NULL;
 psxRegisters psxRegs;
 
 int psxInit() {
-       SysPrintf(_("Running PCSX Version %s (%s).\n"), PACKAGE_VERSION, __DATE__);
+       SysPrintf(_("Running PCSX Version %s (%s).\n"), PCSX_VERSION, __DATE__);
 
 #ifdef PSXREC
        if (Config.Cpu == CPU_INTERPRETER) {
index c408bc3..df768e6 100644 (file)
@@ -135,7 +135,7 @@ void GetClient() {
     }
 #endif
 
-    sprintf(hello, "000 PCSX Version %s - Debug console\r\n", PACKAGE_VERSION);
+    sprintf(hello, "000 PCSX Version %s - Debug console\r\n", PCSX_VERSION);
     WriteSocket(hello, strlen(hello));
     ptr = 0;
 }
index c382c51..50e129e 100644 (file)
@@ -54,7 +54,7 @@ static void ChangeWorkingDirectory(char *exe)
 
 void PrintHelp()
 {
-       printf("PCSX-ReARMed version %s for Maemo\n\n", PACKAGE_VERSION);
+       printf("PCSX-ReARMed version %s for Maemo\n\n", PCSX_VERSION);
 
        printf("Usage:\n");
        printf("  pcsx [options] -cdfile FILE\n\n");