| 3786 | |
| 3787 | |
| 3788 | static int osascriptPresent(void) |
| 3789 | { |
| 3790 | static int lOsascriptPresent = -1 ; |
| 3791 | if ( lOsascriptPresent < 0 ) |
| 3792 | { |
| 3793 | gWarningDisplayed |= !!getenv("SSH_TTY"); |
| 3794 | lOsascriptPresent = detectPresence( "osascript" ) ; |
| 3795 | } |
| 3796 | return lOsascriptPresent && graphicMode() && !getenv("SSH_TTY") ; |
| 3797 | } |
| 3798 | |
| 3799 | |
| 3800 | static int qarmaPresent(void) |
no test coverage detected