(file_ext.h) lowercase .dll/.so

This commit is contained in:
twinaphex 2013-07-15 14:56:38 +02:00 committed by Themaister
parent 749c52cb4b
commit 6d09eb74c0
1 changed files with 2 additions and 2 deletions

View File

@ -19,11 +19,11 @@
#ifdef HAVE_DYNAMIC
#ifdef _WIN32
#define EXT_EXECUTABLES "dll|DLL"
#define EXT_EXECUTABLES "dll"
#elif defined(__APPLE__)
#define EXT_EXECUTABLES "dylib"
#else
#define EXT_EXECUTABLES "so|SO"
#define EXT_EXECUTABLES "so"
#endif
#else
#if defined(__CELLOS_LV2__)