From 4afcc5afa0dc7a1d14e93f18289c4490c9f2decd Mon Sep 17 00:00:00 2001 From: root Date: Fri, 21 Dec 2007 00:53:45 +1030 Subject: Define APPLE for the rest of us APPLE was only defined when, well on an APPLE. However Makefile.am unconditionally required it. Hence define APPLE to false when we're not on an APPLE. Found by: Tinderbox --- configure.ac | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 57def24..df672aa 100644 --- a/configure.ac +++ b/configure.ac @@ -114,8 +114,13 @@ if test "x$LAUNCHD" = "xyes" ; then # A future version of launchd should let us do this cleaner #XSERVER=\'\`'$(libexecdir)/x11-exec'\`\' AM_CONDITIONAL(APPLE, true) - ;; + ;; + *) + AM_CONDITIONAL(APPLE, false) + ;; esac +else + AM_CONDITIONAL(APPLE,false) fi AM_CONDITIONAL(LAUNCHD, [test "x$LAUNCHD" = "xyes"]) -- cgit v1.2.3