Changeset 439


Ignore:
Timestamp:
Aug 29, 2013, 9:26:37 PM (11 years ago)
Author:
katerina
Message:

Fix for ticket #343 (Static compile with port check fails)

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r437 r439  
    10791079   fi
    10801080fi
     1081AC_CHECK_FUNC(pmap_getmaps,
     1082        AC_DEFINE([HAVE_PMAP_GETMAPS], [], [Define if pmap_getmaps available]), [],[])
    10811083
    10821084       
  • trunk/docs/Changelog

    r437 r439  
     1        * Fix IgnoreAdded to anchor regex at beginning of path (reported by R.Lindner)
     2        * Add check to detect availability of pmap_getmaps() (missing in static library
     3          on recent Linux systems as reported by Ian Baldwin)
     4
    153.0.13:
    26        * Fix detection of nonfunctional /dev/kmem
  • trunk/src/sh_portcheck.c

    r405 r439  
    834834                              unsigned long prot)
    835835{
    836 #ifdef  HAVE_RPC_RPC_H
     836#if defined(HAVE_RPC_RPC_H) && defined(HAVE_PMAP_GETMAPS)
    837837  struct pmaplist * head;
    838838  char *r;
Note: See TracChangeset for help on using the changeset viewer.