From 28b46ead6c61409feb449877339ed8c8fdebcf0d Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 19 Sep 2003 02:18:43 +0000 Subject: [PATCH] #define LINUX --- stepmania/configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/stepmania/configure.ac b/stepmania/configure.ac index 0512b611c0..311676fa26 100644 --- a/stepmania/configure.ac +++ b/stepmania/configure.ac @@ -168,6 +168,12 @@ case $host in *-*-darwin*) AC_DEFINE(DARWIN, 1, [Use different sound drivers than linux]) darwin=true;; + # This is just a general define for things we do in Linux that aren't + # yet fully generalized. It should probably be defined in other *nixes, + # too. + *) + AC_DEFINE(LINUX, 1, [Linux]) + ;; esac AM_CONDITIONAL(DARWIN, test x$darwin = xtrue)