diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2013-02-05 14:25:05 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2013-02-05 14:25:05 +0000 |
commit | 320a80616cac30cb1bb90d19b5a55a04d79f472a (patch) | |
tree | 13bda0af9a02108ddab0772c0d3b70143c9a2ad3 | |
parent | 9cd050f663f3122b5dfbc00d18c59c94366331e7 (diff) |
enable sys_getversion for Pd>=0.42HEADsvn2git-headexternals/bbogart
sys_getversion() was introduced with 0.42.0
svn path=/trunk/externals/bbogart/; revision=17026
-rw-r--r-- | popup/popup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/popup/popup.c b/popup/popup.c index 281eb7a..f2d1327 100644 --- a/popup/popup.c +++ b/popup/popup.c @@ -37,7 +37,7 @@ static char* popup_send2pd = "pd"; static void popup_checkversion(void) { -#if (defined PD_MINOR_VERSION) && (PD_MINOR_VERSION >= 43) +#if PD_MINOR_VERSION >= 42 int major=0, minor=0, bugfix=0; sys_getversion(&major, &minor, &bugfix); if(minor>=43) |