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 */
|
/* Define to enable SIGFPE assertions */
|
||||||
#cmakedefine TRAP_ON_FPE @TRAP_ON_FPE@
|
#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 */
|
/* Define to do all DSP in single floating point precision */
|
||||||
#cmakedefine WITH_FLOAT @WITH_FLOAT@
|
#cmakedefine WITH_FLOAT @WITH_FLOAT@
|
||||||
|
|
||||||
|
|
|
@ -30,9 +30,6 @@
|
||||||
|
|
||||||
#if DART_SUPPORT
|
#if DART_SUPPORT
|
||||||
|
|
||||||
/* To avoid name conflict */
|
|
||||||
#undef VERSION
|
|
||||||
|
|
||||||
#define INCL_DOS
|
#define INCL_DOS
|
||||||
#include <os2.h>
|
#include <os2.h>
|
||||||
|
|
||||||
|
|
|
@ -504,7 +504,7 @@ int main(int argc, char** argv)
|
||||||
else fluid_settings_setstr(settings, "audio.file.type", optarg);
|
else fluid_settings_setstr(settings, "audio.file.type", optarg);
|
||||||
break;
|
break;
|
||||||
case 'V':
|
case 'V':
|
||||||
printf("FluidSynth %s\n", VERSION);
|
printf("FluidSynth %s\n", FLUIDSYNTH_VERSION);
|
||||||
exit (0);
|
exit (0);
|
||||||
break;
|
break;
|
||||||
case 'v':
|
case 'v':
|
||||||
|
|
Loading…
Reference in a new issue