mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 07:31:37 +08:00
a65000bd39
* add patch * . * update-hash * fix * reformat * fix hash * remove-patch-prefix * upd-hash * upd * . * Update ports/collada-dom/portfile.cmake Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com> * Update ports/collada-dom/portfile.cmake Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com> * Update ports/collada-dom/portfile.cmake Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com> * Update ports/collada-dom/vcpkg.json Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com> * Update collada-dom.json * Update collada-dom.json * fix --------- Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com>
23 lines
1004 B
Diff
23 lines
1004 B
Diff
diff --git a/dom/src/dae/daeUtils.cpp b/dom/src/dae/daeUtils.cpp
|
|
index 7e3dc9a..dc94b5b 100644
|
|
--- a/dom/src/dae/daeUtils.cpp
|
|
+++ b/dom/src/dae/daeUtils.cpp
|
|
@@ -152,7 +152,7 @@ char cdom::getFileSeparator() {
|
|
const string& cdom::getSystemTmpDir() {
|
|
#ifdef WIN32
|
|
static string tmpDir = string(getenv("TMP")) + getFileSeparator();
|
|
-#elif defined(__linux__) || defined(__linux)
|
|
+#elif defined(__linux__) || defined(__linux) || defined(__EMSCRIPTEN__)
|
|
static string tmpDir = "/tmp/";
|
|
#elif defined __APPLE_CC__
|
|
static string tmpDir = string(getenv("TMPDIR"));
|
|
@@ -171,7 +171,7 @@ string cdom::getRandomFileName() {
|
|
std::string tmp(tmpnam(&tmpbuffer[0]));
|
|
#ifdef WIN32
|
|
randomSegment = tmp.substr(tmp.find_last_of('\\')+1);
|
|
-#elif defined(__linux__) || defined(__linux)
|
|
+#elif defined(__linux__) || defined(__linux) || defined(__EMSCRIPTEN__)
|
|
randomSegment = tmp.substr(tmp.find_last_of('/')+1);
|
|
#elif defined __APPLE_CC__
|
|
randomSegment = tmp.substr(tmp.find_last_of('/')+1);
|
|
|