Browse Source

Enabled mouse support for macOS and *BSD. Free Vision apps can now make use of the mouse for these O/Ss.

Ramon M 3 years ago
parent
commit
f227efb258
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/rtl-console/src/unix/mouse.pp

+ 2 - 2
packages/rtl-console/src/unix/mouse.pp

@@ -16,11 +16,11 @@
 unit Mouse;
 interface
 
-{$if defined(aix) or defined(bsd) or defined(solaris)}
+{$if defined(aix) or defined(solaris)}
 {$define NOMOUSE}
 {$endif}
 
-{$if defined(haiku) or defined(beos)}
+{$if defined(bsd) or defined(haiku) or defined(beos)}
 {$define NOGPM}
 {$endif}