Skip to content
Snippets Groups Projects
Commit 9cc411b6 authored by deuce's avatar deuce
Browse files

Fix ftupid bug in has commit

parent 917d24aa
No related branches found
No related tags found
No related merge requests found
......@@ -142,7 +142,6 @@ void DLLCALL unix_beep(int freq, int dur)
{
static int console_fd=-1;
#if !defined(__OpenBSD__) && !defined(__GNU__) && !defined(__NetBSD__) && !defined(__QNX__)
#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__NetBSD__)
int speaker_fd=-1;
tone_t tone;
......@@ -176,7 +175,6 @@ void DLLCALL unix_beep(int freq, int dur)
#endif /* solaris */
}
#endif
#endif /* Nasty Kludge */
}
#endif
......
......@@ -125,6 +125,8 @@ extern "C" {
#define PLATFORM_DESC "OpenBSD"
#elif defined(__NetBSD__)
#define PLATFORM_DESC "NetBSD"
#elif defined(__APPLE__) && defined(__MACH__) && defined(__POWERPC__)
#define PLATFORM_DESC "Mac OS X"
#elif defined(BSD)
#define PLATFORM_DESC "BSD"
#elif defined(__solaris__)
......@@ -135,8 +137,6 @@ extern "C" {
#define PLATFORM_DESC "GNU/Hurd"
#elif defined(__QNX__)
#define PLATFORM_DESC "QNX"
#elif defined(__APPLE__) && defined(__MACH__) && defined(__POWERPC__)
#define PLATFORM_DESC "Mac OS X"
#elif defined(__unix__)
#define PLATFORM_DESC "Unix"
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment