show lensfun version info when invoked with '-v' (patch by heckflosse)

This commit is contained in:
Alberto Griggio 2017-09-12 16:38:01 +02:00
parent 88b343d1b3
commit fea0fbe776

View File

@ -33,6 +33,7 @@
#include <cstring>
#include <cstdlib>
#include <locale.h>
#include <lensfun.h>
#include "options.h"
#include "soundman.h"
#include "rtimage.h"
@ -138,6 +139,7 @@ int processLineParams ( int argc, char **argv )
#endif
case 'v':
std::cout << "Using lensfun " << LF_VERSION_MAJOR << "." << LF_VERSION_MINOR << "." << LF_VERSION_MICRO << "." << LF_VERSION_BUGFIX << std::endl;
return 0;
#ifndef __APPLE__ // TODO agriggio - there seems to be already some "single instance app" support for OSX in rtwindow. Disabling it here until I understand how to merge the two