From: Toshimitsu T. <t_t...@db...> - 2004-01-22 10:48:31
|
Hi. On 2004/01/19, at 8:26, Gwenole Beauchesne wrote: > Darwin bits are now committed. Tested on MacOS X 10.2 with Apple X11 > server. Note you may notice that SheepShaver doesn't fully exit on > shutdown for unknown reason at the moment. > >> The Darwin port is almost working (to be committed): >> <http://gwenole.beauchesne.free.fr/sheepshaver/ >> capture_darwin_port2.pdf> Good job. I tried it on 10.3. http://member.nifty.ne.jp/poseidon/images/ss_x.jpg But, ExtFS Volume Name is "Linux"... --- SheepShaver/src/Unix/user_strings_unix.cpp.org Thu Jan 22 18:45:00 2004 +++ SheepShaver/src/Unix/user_strings_unix.cpp Thu Jan 22 19:43:48 2004 @@ -25,10 +25,22 @@ // Platform-specific string definitions user_string_def platform_strings[] = { // Common strings that have a platform-specific variant - {STR_VOLUME_IS_MOUNTED_WARN, "The volume '%s' is mounted under Linux. Basilisk II will try to unmount it."}, +#if defined(__APPLE__) && defined(__MACH__) + {STR_VOLUME_IS_MOUNTED_WARN, "The volume '%s' is mounted under Darwin. SheepShaver will try to unmount it."}, + {STR_EXTFS_CTRL, "Darwin Root"}, + {STR_EXTFS_NAME, "Darwin Directory Tree"}, + {STR_EXTFS_VOLUME_NAME, "Darwin"}, +#elif defined(__linux__) + {STR_VOLUME_IS_MOUNTED_WARN, "The volume '%s' is mounted under Linux. SheepShaver will try to unmount it."}, {STR_EXTFS_CTRL, "Linux Root"}, {STR_EXTFS_NAME, "Linux Directory Tree"}, - {STR_EXTFS_VOLUME_NAME, "Linux"}, + {STR_EXTFS_VOLUME_NAME, "Linux"}, +#else + {STR_VOLUME_IS_MOUNTED_WARN, "The volume '%s' is mounted under Unix. SheepShaver will try to unmount it."}, + {STR_EXTFS_CTRL, "Unix Root"}, + {STR_EXTFS_NAME, "Unix Directory Tree"}, + {STR_EXTFS_VOLUME_NAME, "Unix"}, +#endif // Purely platform-specific strings {STR_NO_DEV_ZERO_ERR, "Cannot open /dev/zero: %s."}, --- Toshimitsu Tanaka t_t...@db... http://member.nifty.ne.jp/poseidon/index.html My SheepShaver page: http://member.nifty.ne.jp/poseidon/emu/sheepshaver1.html (Sorry,Japanese text only) |