This is a discussion on proposed 5.2.x configure.in fix within the SNMP Coders forums, part of the Networking and Network Related category; This is a multi-part message in MIME format. --------------030002040609030101090008 Content-Type: text/plain; charset=ISO-8859-15; format=flowed ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
This is a multi-part message in MIME format.
--------------030002040609030101090008 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit -Coders, the attached patch fixes the last remaining "present, but cannot be compiled" configure warning on my Solaris 9 box and doesn't seem to break the other platforms I tried. Further testing appreciated. Objections to put this into 5.2.2.pre3? +Thomas -- Thomas Anders (thomas.anders at blue-cable.de) --------------030002040609030101090008 Content-Type: text/x-patch; name="net-snmp-5.2cvs-configure.in.proposed.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="net-snmp-5.2cvs-configure.in.proposed.patch" Index: configure.in ================================================== ================= RCS file: /cvsroot/net-snmp/net-snmp/configure.in,v retrieving revision 5.134.2.26 diff -u -r5.134.2.26 configure.in --- configure.in 27 Sep 2005 22:29:47 -0000 5.134.2.26 +++ configure.in 27 Sep 2005 23:14:24 -0000 @@ -2416,7 +2416,15 @@ AC_HEADER_STDC AC_HEADER_DIRENT AC_HEADER_SYS_WAIT -AC_CHECK_HEADERS(stdarg.h string.h fcntl.h limits.h sys/file.h sys/ioctl.h syslog.h unistd.h sys/dmap.h machine/pte.h xti.h sys/sockio.h sys/socket.h sys/socketvar.h sys/timeout.h sys/un.h fstab.h sys/fs.h mtab.h ufs/fs.h sys/fixpoint.h machine/param.h sys/vm.h vm/vm.h sys/vmmeter.h sys/vmparam.h sys/vmmac.h sys/vmsystm.h sys/time.h sys/times.h sys/swap.h sys/statvfs.h sys/vfs.h sys/mnttab.h sys/select.h mntent.h sys/mntent.h kstat.h utsname.h sys/utsname.h sys/cdefs.h getopt.h locale.h pthread.h sys/loadavg.h regex.h linux/tasks.h pwd.h grp.h utmpx.h) +AC_CHECK_HEADERS(stdarg.h string.h fcntl.h limits.h sys/file.h sys/ioctl.h syslog.h unistd.h sys/dmap.h machine/pte.h xti.h sys/sockio.h sys/socket.h) +# at least Solaris 9 needs sys/socket.h to compile sys/socketvar.h +AC_CHECK_HEADERS(sys/socketvar.h,,, +[[ +#if HAVE_SYS_SOCKET_H +#include <sys/socket.h> +#endif +]]) +AC_CHECK_HEADERS(sys/timeout.h sys/un.h fstab.h sys/fs.h mtab.h ufs/fs.h sys/fixpoint.h machine/param.h sys/vm.h vm/vm.h sys/vmmeter.h sys/vmparam.h sys/vmmac.h sys/vmsystm.h sys/time.h sys/times.h sys/swap.h sys/statvfs.h sys/vfs.h sys/mnttab.h sys/select.h mntent.h sys/mntent.h kstat.h utsname.h sys/utsname.h sys/cdefs.h getopt.h locale.h pthread.h sys/loadavg.h regex.h linux/tasks.h pwd.h grp.h utmpx.h) # Network headers AC_CHECK_HEADERS(arpa/inet.h netinet/in_systm.h netinet/in.h netinet/ip_var.h netinet/tcp.h netinet/tcpip.h netinet/udp.h net/if.h netinet/in_var.h netinet/ip.h netinet/ip_icmp.h net/if_arp.h net/if_mib.h net/if_var.h netinet/if_ether.h netinet/tcp_timer.h netinet/tcp_var.h netinet/udp_var.h netinet/icmp_var.h netdb.h net/route.h,,, [[ --------------030002040609030101090008-- ------------------------------------------------------- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl _______________________________________________ Net-snmp-coders mailing list Net-snmp-coders@lists.sourceforge.net https://lists.sourceforge.net/lists/...et-snmp-coders |