mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-12-01 00:21:14 +00:00
remove redundant VERSION macro
use FLUIDSYNTH_VERSION instead
This commit is contained in:
parent
97a4e1aa1c
commit
c02a5ae5ce
3 changed files with 1 additions and 7 deletions
|
@ -190,9 +190,6 @@
|
|||
/* Define to enable SIGFPE assertions */
|
||||
#cmakedefine TRAP_ON_FPE @TRAP_ON_FPE@
|
||||
|
||||
/* Version number of package */
|
||||
#cmakedefine VERSION @FLUIDSYNTH_VERSION@
|
||||
|
||||
/* Define to do all DSP in single floating point precision */
|
||||
#cmakedefine WITH_FLOAT @WITH_FLOAT@
|
||||
|
||||
|
|
|
@ -30,9 +30,6 @@
|
|||
|
||||
#if DART_SUPPORT
|
||||
|
||||
/* To avoid name conflict */
|
||||
#undef VERSION
|
||||
|
||||
#define INCL_DOS
|
||||
#include <os2.h>
|
||||
|
||||
|
|
|
@ -504,7 +504,7 @@ int main(int argc, char** argv)
|
|||
else fluid_settings_setstr(settings, "audio.file.type", optarg);
|
||||
break;
|
||||
case 'V':
|
||||
printf("FluidSynth %s\n", VERSION);
|
||||
printf("FluidSynth %s\n", FLUIDSYNTH_VERSION);
|
||||
exit (0);
|
||||
break;
|
||||
case 'v':
|
||||
|
|
Loading…
Reference in a new issue