mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-10 05:02:50 +01:00
oops, use runtime version check instead of compile time check
This commit is contained in:
parent
7672396a25
commit
9de0eb04d4
@ -28,7 +28,6 @@
|
|||||||
#include <wininet.h>
|
#include <wininet.h>
|
||||||
|
|
||||||
#include "xchat-plugin.h"
|
#include "xchat-plugin.h"
|
||||||
#include "../../config.h"
|
|
||||||
|
|
||||||
static xchat_plugin *ph; /* plugin handle */
|
static xchat_plugin *ph; /* plugin handle */
|
||||||
|
|
||||||
@ -73,7 +72,7 @@ print_version ()
|
|||||||
{
|
{
|
||||||
char *version = check_version ();
|
char *version = check_version ();
|
||||||
|
|
||||||
if (strcmp (version, PACKAGE_VERSION) == 0)
|
if (strcmp (version, xchat_get_info (ph, "version")) == 0)
|
||||||
{
|
{
|
||||||
xchat_printf (ph, "You have the latest version installed!");
|
xchat_printf (ph, "You have the latest version installed!");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user