ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/libstatgrab/tools.c
(Generate patch)

Comparing projects/libstatgrab/src/libstatgrab/tools.c (file contents):
Revision 1.23 by tdb, Fri Jan 16 15:54:54 2004 UTC vs.
Revision 1.26 by pajs, Tue Feb 10 16:16:22 2004 UTC

# Line 17 | Line 17
17   * License along with this library; if not, write to the Free Software
18   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19   * 02111-1307 USA
20 + *
21 + * $Id$
22   */
23  
24   #ifdef HAVE_CONFIG_H
# Line 52 | Line 54
54   #include <dirent.h>
55   #endif
56  
57 < #ifdef SOLARIS
57 > #if defined(SOLARIS) && defined(HAVE_LIBDEVINFO_H)
58   struct map{
59          char *bsd;
60          char *svr;
# Line 62 | Line 64 | struct map{
64   typedef struct map mapping_t;
65  
66   static mapping_t *mapping = NULL;
67 + #endif
68  
69 + #ifdef SOLARIS
70   char *get_svr_from_bsd(char *bsd){
71 + #ifdef HAVE_LIBDEVINFO_H
72          mapping_t *map_ptr;
73          for(map_ptr = mapping; map_ptr != NULL; map_ptr = map_ptr->next)
74                  if(!strcmp(map_ptr->bsd, bsd)) return map_ptr->svr;
75 <
75 > #endif
76          return bsd;
77   }
78 + #endif
79  
80 + #if defined(SOLARIS) && defined(HAVE_LIBDEVINFO_H)
81   void add_mapping(char *bsd, char *svr){
82          mapping_t *map_ptr;
83          mapping_t *map_end_ptr;
# Line 467 | Line 474 | int statgrab_init(){
474           * will still work, just no disk mappings. So we will ignore the exit
475           * status of this, and carry on merrily.
476           */
477 + #ifdef HAVE_LIBDEVINFO_H
478          build_mapping();
479 + #endif
480   #endif
481          return 0;
482   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines