From: Marc Dionne Date: Thu, 4 Jan 2007 21:15:16 +0000 (+0000) Subject: freezer-h-existance-20070104 X-Git-Tag: BP-openafs-windows-kdfs-ifs~876 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=1a5628981e0042bed07ebedd72f715848734a51b;p=packages%2Fo%2Fopenafs.git freezer-h-existance-20070104 FIXES 50941 only include freezer.h if it exists --- diff --git a/src/afs/LINUX/osi_sleep.c b/src/afs/LINUX/osi_sleep.c index 1e873783e..5626292fc 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 a2903d07d..14a0b6db5 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