From 7b2204d69f21d7075e4666ee032d7a129081bc4b Mon Sep 17 00:00:00 2001 From: nlanza Date: Wed, 3 Aug 2005 05:55:39 +0000 Subject: Further build cleanup. The build system used 'LINUX' as a shorthand for Unix-like systems, which ends up being a horrible mess -- it's pretty counterintuitive to have the Solaris/Irix/BSD setups #defining LINUX to make things work. This replaces the use of 'LINUX' with a more-general and more-obvious 'UNIX', and moves the not-really-linux-at-all 'liblinux' to 'libunix'. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6 c06c8d41-db1a-0410-9941-cceddc491573 --- trunk/source/mutation.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'trunk/source/mutation.cc') diff --git a/trunk/source/mutation.cc b/trunk/source/mutation.cc index 6bc8f2ecca..9e41a400cd 100644 --- a/trunk/source/mutation.cc +++ b/trunk/source/mutation.cc @@ -27,8 +27,8 @@ #include #endif -#ifdef LINUX -#include "liblinux.h" +#ifdef UNIX +#include "libunix.h" #endif #include "externs.h" -- cgit v1.2.3-54-g00ecf