]> git.pld-linux.org Git - packages/net-snmp.git/blobdiff - net-snmp-use-rpm-hrmib.patch
- release 2 (rebuild after libnl soname change)
[packages/net-snmp.git] / net-snmp-use-rpm-hrmib.patch
index 471b4c538d953cdb40bbc169ef34ce6c7345c141..d7cc4381200ad3616650c40a31afdf3e1c8c6f06 100644 (file)
@@ -11,9 +11,9 @@
  void
  init_hr_swinst(void)
  {
---- net-snmp-5.5/configure.d/config_os_libs~   2010-05-12 14:31:17.751301337 +0200
-+++ net-snmp-5.5/configure.d/config_os_libs    2010-05-12 14:34:11.694627717 +0200
-@@ -261,20 +261,34 @@
+--- net-snmp-5.6/configure.d/config_os_libs1.orig      2010-10-24 10:37:25.527741043 +0200
++++ net-snmp-5.6/configure.d/config_os_libs1   2010-10-24 10:40:56.519744396 +0200
+@@ -425,20 +425,34 @@
  #   RPM checks
  #
  ##
 -  else
 -    with_rpm=no
 -  fi
--fi
--
- #
-+# check if we can use rpm hrmib export                                                                                                                      
-+if test "$with_rpm" != "no" ; then                                                                                                                          
-+       AC_PATH_PROG([RPM], rpm)                                                                                                                             
-+       if test -n "$RPM"; then                                                                                                                              
-+               changequote(, )                                                                                                                              
-+               RPM_HRMIB_PATH=$($RPM -E %{_hrmib_path} | sed -e 's,/[^/]\+$,,')                                                                             
-+               changequote([, ])                                                                                                                            
-+               if test -n "$RPM_HRMIB_PATH"; then                                                                                                           
-+                       AC_DEFINE_UNQUOTED([RPM_HRMIB_PATH], ["$RPM_HRMIB_PATH"], [Directory where RPM exports packages hrmib information])                  
-+               fi                                                                                                                                           
-+       fi                                                                                                                                                   
-+fi    
-+# otherwise try binary linkin                                                                                                                               
-+if test -z "$RPM_HRMIB_PATH"; then                                                                                                                          
-+       AC_CHECK_HEADERS(rpm/rpmlib.h rpm/header.h)                                                                                                          
-+                                                                                                                                                            
-+       AC_CHECK_HEADER(rpm/rpmlib.h,rpmlib_h=yes,rpmlib_h=no)                                                                                               
-+       AC_CHECK_HEADER(rpm/header.h,rpmheader_h=yes,rpmheader_h=no)                                                                                         
-+                                                                                                                                                            
-+       if test "x$rpmheader_h" = "xno" -o "x$rpmlib_h" = "xno" ; then                                                                                       
-+         if test "x$with_rpm" = "xyes" ; then                                                                                                               
-+               AC_MSG_ERROR([Could not find either the RPM header files needed and was specifically asked to use RPM support])                              
-+         else                                                                                                                                               
-+               with_rpm=no                                                                                                                                  
-+         fi                                                                                                                                                 
-+       fi 
++#
++# check if we can use rpm hrmib export
++if test "$with_rpm" != "no" ; then
++       AC_PATH_PROG([RPM], rpm)
++       if test -n "$RPM"; then
++               changequote(, )
++               RPM_HRMIB_PATH=$($RPM -E %{_hrmib_path} | sed -e 's,/[^/]\+$,,')
++               changequote([, ])
++               if test -n "$RPM_HRMIB_PATH"; then
++                       AC_DEFINE_UNQUOTED([RPM_HRMIB_PATH], ["$RPM_HRMIB_PATH"], [Directory where RPM exports packages hrmib information])
++               fi
++       fi
+ fi
++# otherwise try binary linkin
++if test -z "$RPM_HRMIB_PATH"; then
++       AC_CHECK_HEADERS(rpm/rpmlib.h rpm/header.h)
++
++       AC_CHECK_HEADER(rpm/rpmlib.h,rpmlib_h=yes,rpmlib_h=no)
++       AC_CHECK_HEADER(rpm/header.h,rpmheader_h=yes,rpmheader_h=no)
 +
++       if test "x$rpmheader_h" = "xno" -o "x$rpmlib_h" = "xno" ; then
++         if test "x$with_rpm" = "xyes" ; then
++               AC_MSG_ERROR([Could not find either the RPM header files needed and was specifically asked to use RPM support])
++         else
++               with_rpm=no
++         fi
++       fi
+-#
  # rpm libraries only needed for the host resources mib software
  # installed tables (on linux in particular)
  #
-@@ -319,7 +333,14 @@
-     LMIBLIBS="$_rpmlibs $LMIBLIBS"
-     CFLAGS="$CFLAGS -I/usr/include/rpm"
-   ],, $LMIBLIBS, _rpmlibs)
--fi
-+  OLDLIBS=$LIBS                                                                                                                                             
-+  LIBS=$LMIBLIBS                                                                                                                                            
-+  AC_CHECK_FUNCS(rpmGetPath)                                                                                                                                
-+  LIBS=$OLDLIBS
+@@ -490,6 +504,12 @@
+     AC_DEFINE([_RPM_4_4_COMPAT], [], [Define if you have RPM 4.6 or newer to turn on legacy API]),
+     [[#include <rpm/rpmlib.h>]]
+   )
 +
++  OLDLIBS=$LIBS
++  LIBS=$LMIBLIBS
++  AC_CHECK_FUNCS([rpmGetPath])
++  LIBS=$OLDLIBS
 + fi
-+
-+fi # with rpmlib
+ fi
  
  ##
- #   mysql
 --- net-snmp-5.5/configure.d/config_os_functions~      2009-07-26 20:20:55.000000000 +0200
 +++ net-snmp-5.5/configure.d/config_os_functions       2010-05-12 14:35:39.421276242 +0200
-@@ -67,15 +67,6 @@
+@@ -114,15 +114,6 @@
  #           (Agent)
  ##
  
 -#       rpmGetPath check needs clean LIBS environment   (Linux)
 -#
--if test "x$with_rpm" != "xno" && \
--        echo " $module_list " | $GREP " host/hr_swinst " > /dev/null; then
+-if test "x$with_rpm" != "xno"; then
 -    OLDLIBS=$LIBS
 -    LIBS=$LMIBLIBS
 -    AC_CHECK_FUNCS(rpmGetPath)
 -    LIBS=$OLDLIBS
 -fi
+-
  #       statfs( char *, struct fs_data* )               (Ultrix)
  #
-
+ AC_MSG_CHECKING([[for two-argument statfs with struct fs_data (Ultrix)]])
+--- net-snmp-5.6/agent/mibgroup/host/data_access/swinst_pkginfo.c~     2010-01-26 23:24:14.000000000 +0200
++++ net-snmp-5.6/agent/mibgroup/host/data_access/swinst_pkginfo.c      2010-12-16 00:13:22.027247692 +0200
+@@ -52,6 +52,8 @@
+ {
+ #if defined(PKGLOC)
+     snprintf( pkg_directory, SNMP_MAXPATH, "%s", PKGLOC );
++#elif defined(RPM_HRMIB_PATH)
++    snprintf( pkg_directory, SNMP_MAXPATH, "%s", RPM_HRMIB_PATH);
+ #elif defined(hpux9)
+     snprintf( pkg_directory, SNMP_MAXPATH, "/system" );
+ #elif defined(hpux10) ||  defined(hpux11) 
+--- net-snmp-5.6/agent/mibgroup/host/data_access/swinst.h      2010-12-16 00:14:13.634392176 +0200
++++ net-snmp-5.6/agent/mibgroup/host/data_access/swinst.h      2010-12-16 01:27:48.195543278 +0200
+@@ -11,6 +11,10 @@
+ #ifndef NETSNMP_ACCESS_SWINST_CONFIG_H
+ #define NETSNMP_ACCESS_SWINST_CONFIG_H
++// quick fix: this file is consulted before RPM_HRMIB_PATH check is made in configure, hardcode a define for now
++#define RPM_HRMIB_PATH "/var/cache/hrmib"
++
++
+ /*
+  * all platforms use this generic code
+  */
+@@ -29,7 +29,7 @@
+     config_require(host/data_access/swinst_apt)
+ #elif defined( HAVE_LIBRPM ) && defined( linux )
+     config_require(host/data_access/swinst_rpm)
+-#elif defined( HAVE_PKGLOCS_H ) || defined( hpux9 ) || defined( hpux10 ) || defined( hpux11 ) || defined( freebsd2 ) || defined( linux ) || defined( openbsd )
++#elif defined( HAVE_PKGLOCS_H ) || defined( RPM_HRMIB_PATH ) || defined( hpux9 ) || defined( hpux10 ) || defined( hpux11 ) || defined( freebsd2 ) || defined( linux ) || defined( openbsd )
+     config_require(host/data_access/swinst_pkginfo)
+ #else
+     config_warning(This platform does not yet support hrSWInstalledTable rewrites)
This page took 0.095167 seconds and 4 git commands to generate.