From 1a5628981e0042bed07ebedd72f715848734a51b Mon Sep 17 00:00:00 2001 From: Marc Dionne Date: Thu, 4 Jan 2007 21:15:16 +0000 Subject: [PATCH] freezer-h-existance-20070104 FIXES 50941 only include freezer.h if it exists --- src/afs/LINUX/osi_sleep.c | 2 ++ src/rx/rx_kcommon.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/afs/LINUX/osi_sleep.c b/src/afs/LINUX/osi_sleep.c index 1e873783ee..5626292fc4 100644 --- a/src/afs/LINUX/osi_sleep.c +++ b/src/afs/LINUX/osi_sleep.c @@ -17,7 +17,9 @@ RCSID #include "afsincludes.h" /* Afs-based standard headers */ #include "afs/afs_stats.h" /* afs statistics */ +#if defined(FREEZER_H_EXISTS) #include +#endif static int osi_TimedSleep(char *event, afs_int32 ams, int aintok); diff --git a/src/rx/rx_kcommon.h b/src/rx/rx_kcommon.h index a2903d07da..14a0b6db51 100644 --- a/src/rx/rx_kcommon.h +++ b/src/rx/rx_kcommon.h @@ -112,7 +112,9 @@ typedef unsigned short etap_event_t; #endif #ifdef AFS_LINUX22_ENV #include "h/sched.h" +#if defined(FREEZER_H_EXISTS) #include "h/freezer.h" +#endif #include "h/netdevice.h" #include "linux/if.h" #else