Signed-off-by: falkTX <falktx@falktx.com>tags/v2.1-rc1
@@ -3,7 +3,7 @@ libdir=X-LIBDIR-X/carla | |||||
includedir=X-INCLUDEDIR-X/carla | includedir=X-INCLUDEDIR-X/carla | ||||
Name: carla-native-plugin | Name: carla-native-plugin | ||||
Version: 1.9.14 | |||||
Version: 2.0.96 | |||||
Description: Carla Native Plugin | Description: Carla Native Plugin | ||||
Libs: -Wl,-rpath=${libdir} -L${libdir} -lcarla_native-plugin | Libs: -Wl,-rpath=${libdir} -L${libdir} -lcarla_native-plugin | ||||
Cflags: -DREAL_BUILD -I${includedir} -I${includedir}/includes | Cflags: -DREAL_BUILD -I${includedir} -I${includedir}/includes |
@@ -3,7 +3,7 @@ libdir=X-LIBDIR-X/carla | |||||
includedir=X-INCLUDEDIR-X/carla | includedir=X-INCLUDEDIR-X/carla | ||||
Name: carla-standalone | Name: carla-standalone | ||||
Version: 1.9.14 | |||||
Version: 2.0.96 | |||||
Description: Carla Host Standalone | Description: Carla Host Standalone | ||||
Libs: -Wl,-rpath=${libdir} -L${libdir} -lcarla_standalone2 | Libs: -Wl,-rpath=${libdir} -L${libdir} -lcarla_standalone2 | ||||
Cflags: -DREAL_BUILD -I${includedir} -I${includedir}/includes | Cflags: -DREAL_BUILD -I${includedir} -I${includedir}/includes |
@@ -3,7 +3,7 @@ libdir=X-LIBDIR-X/carla | |||||
includedir=X-INCLUDEDIR-X/carla | includedir=X-INCLUDEDIR-X/carla | ||||
Name: carla-utils | Name: carla-utils | ||||
Version: 1.9.14 | |||||
Version: 2.0.96 | |||||
Description: Carla Host Utilities | Description: Carla Host Utilities | ||||
Libs: -Wl,-rpath=${libdir} -L${libdir} -lcarla_utils | Libs: -Wl,-rpath=${libdir} -L${libdir} -lcarla_utils | ||||
Cflags: -DREAL_BUILD -I${includedir} -I${includedir}/includes -I${includedir}/utils | Cflags: -DREAL_BUILD -I${includedir} -I${includedir}/includes -I${includedir}/utils |
@@ -67,7 +67,10 @@ char* sfx_get_tmp_path(int withAppName) | |||||
GetTempPathA(512 - strlen(SFX_APP_MININAME_TITLE), sfx_tmp_path); | GetTempPathA(512 - strlen(SFX_APP_MININAME_TITLE), sfx_tmp_path); | ||||
if (withAppName == 1) | if (withAppName == 1) | ||||
{ | |||||
strcat(sfx_tmp_path, SFX_APP_MININAME_TITLE); | strcat(sfx_tmp_path, SFX_APP_MININAME_TITLE); | ||||
strcat(sfx_tmp_path, CARLA_VERSION_STRING); | |||||
} | |||||
} | } | ||||
#else | #else | ||||
{ | { | ||||
@@ -79,7 +82,10 @@ char* sfx_get_tmp_path(int withAppName) | |||||
strcpy(sfx_tmp_path, "/tmp"); | strcpy(sfx_tmp_path, "/tmp"); | ||||
if (withAppName == 1) | if (withAppName == 1) | ||||
{ | |||||
strcat(sfx_tmp_path, "/" SFX_APP_MININAME_LCASE); | strcat(sfx_tmp_path, "/" SFX_APP_MININAME_LCASE); | ||||
strcat(sfx_tmp_path, CARLA_VERSION_STRING); | |||||
} | |||||
} | } | ||||
#endif | #endif | ||||
@@ -72,7 +72,10 @@ char* sfx_get_tmp_path(int withAppName) | |||||
GetTempPathA(512 - strlen(SFX_APP_MININAME_TITLE), sfx_tmp_path); | GetTempPathA(512 - strlen(SFX_APP_MININAME_TITLE), sfx_tmp_path); | ||||
if (withAppName == 1) | if (withAppName == 1) | ||||
{ | |||||
strcat(sfx_tmp_path, SFX_APP_MININAME_TITLE); | strcat(sfx_tmp_path, SFX_APP_MININAME_TITLE); | ||||
strcat(sfx_tmp_path, CARLA_VERSION_STRING); | |||||
} | |||||
} | } | ||||
#else | #else | ||||
{ | { | ||||
@@ -84,7 +87,10 @@ char* sfx_get_tmp_path(int withAppName) | |||||
strcpy(sfx_tmp_path, "/tmp"); | strcpy(sfx_tmp_path, "/tmp"); | ||||
if (withAppName == 1) | if (withAppName == 1) | ||||
{ | |||||
strcat(sfx_tmp_path, "/" SFX_APP_MININAME_LCASE); | strcat(sfx_tmp_path, "/" SFX_APP_MININAME_LCASE); | ||||
strcat(sfx_tmp_path, CARLA_VERSION_STRING); | |||||
} | |||||
} | } | ||||
#endif | #endif | ||||