| OLD | NEW |
| 1 // Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 #if defined(FLETCH_TARGET_OS_LINUX) | 5 #if defined(DARTINO_TARGET_OS_LINUX) |
| 6 | 6 |
| 7 #ifdef FLETCH_ENABLE_FFI | 7 #ifdef DARTINO_ENABLE_FFI |
| 8 | 8 |
| 9 #include "src/vm/ffi.h" | 9 #include "src/vm/ffi.h" |
| 10 | 10 |
| 11 namespace fletch { | 11 namespace dartino { |
| 12 | 12 |
| 13 const char* ForeignUtils::kLibBundlePrefix = "/lib/lib"; | 13 const char* ForeignUtils::kLibBundlePrefix = "/lib/lib"; |
| 14 const char* ForeignUtils::kLibBundlePostfix = ".so"; | 14 const char* ForeignUtils::kLibBundlePostfix = ".so"; |
| 15 | 15 |
| 16 } // namespace fletch | 16 } // namespace dartino |
| 17 | 17 |
| 18 #endif // FLETCH_ENABLE_FFI | 18 #endif // DARTINO_ENABLE_FFI |
| 19 | 19 |
| 20 #endif // defined(FLETCH_TARGET_OS_LINUX) | 20 #endif // defined(DARTINO_TARGET_OS_LINUX) |
| OLD | NEW |