From cc779b06c40204cd26c55211742bb73c3809a2d2 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Wed, 30 Nov 2011 01:05:17 +0000 Subject: [PATCH] check sysinfo.h --- NEWS | 2 ++ README | 7 +++++++ config.h.in | 3 +++ configure | 22 +++++++++++----------- configure.ac | 2 +- po/Makefile.in | 2 +- 6 files changed, 25 insertions(+), 13 deletions(-) diff --git a/NEWS b/NEWS index 656745e..1f57c59 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,5 @@ +* v0.6.2.15 + * v0.6.2.14 ** psensor: support of gtk>=2.18 diff --git a/README b/README index e1024d0..8daf7f0 100644 --- a/README +++ b/README @@ -57,6 +57,13 @@ gettext libgtk-3-dev libgconf2-dev libnotify-dev libsensors4-dev help2man libcurl4-openssl-dev libjson0-dev libmicrohttpd-dev libgtop2-dev +Debian kfreebsd +--------------- + +Compilation requires the following packages: +gcc libgtk2.0-dev libsensors4-dev libgconf2-dev help2man +libcurl4-openssl-dev libjson0-dev libmicrohttpd-dev libgtop2-dev + Ubuntu ------ diff --git a/config.h.in b/config.h.in index 05ed111..14197cc 100644 --- a/config.h.in +++ b/config.h.in @@ -129,6 +129,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_SYSINFO_H + /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TIME_H diff --git a/configure b/configure index 672c368..4fdcda9 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68 for psensor 0.6.2.14. +# Generated by GNU Autoconf 2.68 for psensor 0.6.2.15. # # Report bugs to . # @@ -560,8 +560,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='psensor' PACKAGE_TARNAME='psensor' -PACKAGE_VERSION='0.6.2.14' -PACKAGE_STRING='psensor 0.6.2.14' +PACKAGE_VERSION='0.6.2.15' +PACKAGE_STRING='psensor 0.6.2.15' PACKAGE_BUGREPORT='jeanfi@gmail.com' PACKAGE_URL='http://wpitchoune.net/psensor' @@ -1355,7 +1355,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures psensor 0.6.2.14 to adapt to many kinds of systems. +\`configure' configures psensor 0.6.2.15 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1429,7 +1429,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of psensor 0.6.2.14:";; + short | recursive ) echo "Configuration of psensor 0.6.2.15:";; esac cat <<\_ACEOF @@ -1567,7 +1567,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -psensor configure 0.6.2.14 +psensor configure 0.6.2.15 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -1990,7 +1990,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by psensor $as_me 0.6.2.14, which was +It was created by psensor $as_me 0.6.2.15, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -2807,7 +2807,7 @@ fi # Define the identity of the package. PACKAGE='psensor' - VERSION='0.6.2.14' + VERSION='0.6.2.15' cat >>confdefs.h <<_ACEOF @@ -4645,7 +4645,7 @@ fi done -for ac_header in arpa/inet.h netinet/in.h stdint.h stdlib.h string.h sys/socket.h sys/time.h unistd.h getopt.h +for ac_header in arpa/inet.h netinet/in.h stdint.h stdlib.h string.h sys/socket.h sys/time.h unistd.h getopt.h sys/sysinfo.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" @@ -9176,7 +9176,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by psensor $as_me 0.6.2.14, which was +This file was extended by psensor $as_me 0.6.2.15, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -9243,7 +9243,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -psensor config.status 0.6.2.14 +psensor config.status 0.6.2.15 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 6b84003..65ab621 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ AC_PROG_RANLIB # Checks for header files. AC_PATH_X -AC_CHECK_HEADERS([arpa/inet.h netinet/in.h stdint.h stdlib.h string.h sys/socket.h sys/time.h unistd.h getopt.h]) +AC_CHECK_HEADERS([arpa/inet.h netinet/in.h stdint.h stdlib.h string.h sys/socket.h sys/time.h unistd.h getopt.h sys/sysinfo.h]) # Checks for typedefs, structures, and compiler characteristics. AC_TYPE_SIZE_T diff --git a/po/Makefile.in b/po/Makefile.in index 71b369c..c70f8d5 100644 --- a/po/Makefile.in +++ b/po/Makefile.in @@ -11,7 +11,7 @@ # Origin: gettext-0.16 PACKAGE = psensor -VERSION = 0.6.2.14 +VERSION = 0.6.2.15 PACKAGE_BUGREPORT = jeanfi@gmail.com SHELL = /bin/sh -- 2.7.4