| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2000-08-25 13:25 UTC] sniper@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 14:00:01 2025 UTC | 
When configuring PHP4 with --with-snmp=/path/to/snmp, the given path is not honoured when doing the checks for the include file default_store.h The problem may be cured in two ways: * Adding -I$SNMP_INCDIR to $INCLUDES before doing the test * Apllying the following patch --- configure +++ configure Tue Aug 8 13:02:39 2000 @@ -34010,7 +34010,7 @@ old_CPPFLAGS="$CPPFLAGS" - CPPFLAGS="$INCLUDES $CPPFLAGS" + CPPFLAGS="$INCLUDES -I$SNMP_INCDIR $CPPFLAGS" for ac_hdr in default_store.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`