diff options
author | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2004-09-20 08:44:54 +0000 |
---|---|---|
committer | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2004-09-20 08:44:54 +0000 |
commit | 814b74662103710665c0b5659a93974ad609276c (patch) | |
tree | 12312cad51fbaed726ad692f41a796a58739765e /Xext | |
parent | b600fcda38f4ab4796b5536cbedc5dee1abd25b1 (diff) |
Bugzilla #1402: The last patch was broken on linux. Take definition of
badSysCall out of the OS specific block.
Diffstat (limited to 'Xext')
-rw-r--r-- | Xext/xf86bigfont.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Xext/xf86bigfont.c b/Xext/xf86bigfont.c index ac77dda03..bcabaefa7 100644 --- a/Xext/xf86bigfont.c +++ b/Xext/xf86bigfont.c @@ -99,12 +99,12 @@ static int FontShmdescIndex; static unsigned int pagesize; +static Bool badSysCall = FALSE; + #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__CYGWIN__) #include <sys/signal.h> -static Bool badSysCall = FALSE; - static void SigSysHandler( int signo) |