diff options
author | 2023-01-10 09:43:45 -0800 | |
---|---|---|
committer | 2023-01-10 10:23:11 -0800 | |
commit | e62a422c14e2babc3797dce697b8842e45c0ac6f (patch) | |
tree | 452cc9fb57d6149d8b40e5bc0d4af2a67bab682c /src/bun.js/bindings/Process.cpp | |
parent | 91f7e6c66dbf2cc12c1fb3b0e8a1c35f6ea7db62 (diff) | |
download | bun-e62a422c14e2babc3797dce697b8842e45c0ac6f.tar.gz bun-e62a422c14e2babc3797dce697b8842e45c0ac6f.tar.zst bun-e62a422c14e2babc3797dce697b8842e45c0ac6f.zip |
Fix circular dependency in make headers
Diffstat (limited to 'src/bun.js/bindings/Process.cpp')
-rw-r--r-- | src/bun.js/bindings/Process.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bun.js/bindings/Process.cpp b/src/bun.js/bindings/Process.cpp index f940e94e1..1511b0302 100644 --- a/src/bun.js/bindings/Process.cpp +++ b/src/bun.js/bindings/Process.cpp @@ -747,6 +747,10 @@ JSC_DEFINE_CUSTOM_GETTER(Process_getPPID, (JSC::JSGlobalObject * globalObject, J return JSC::JSValue::encode(JSC::JSValue(getppid())); } +#if !defined(BUN_WEBKIT_VERSION) +#define BUN_WEBKIT_VERSION "unknown" +#endif + JSC_DEFINE_CUSTOM_GETTER(Process_getVersionsLazy, (JSC::JSGlobalObject * globalObject, JSC::EncodedJSValue thisValue, JSC::PropertyName)) |