From 2451d1c0f57dbc085e6e7275997403aa213ffaa9 Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Thu, 18 Apr 2013 00:03:35 -0500 Subject: [PATCH] Fix compilation on most Linux platforms. __Linux__ != __linux__ --- backtrace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backtrace.c b/backtrace.c index 1682a71..9bb9bf2 100644 --- a/backtrace.c +++ b/backtrace.c @@ -1,6 +1,6 @@ #include "atheme-compat.h" -#ifdef __Linux__ +#if defined( __linux__) || defined(__Linux__) #include DECLARE_MODULE_V1