diff --git a/configure b/configure index 2598af3..a59679c 100755 --- a/configure +++ b/configure @@ -1,8 +1,8 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for hubicfuse 0.9. +# Generated by GNU Autoconf 2.69 for hubicfuse 1.0.1. # -# Report bugs to >. +# Report bugs to >. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @@ -266,8 +266,8 @@ fi $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else - $as_echo "$0: Please tell bug-autoconf@gnu.org and Bertrand Marc -$0: about your system, including any + $as_echo "$0: Please tell bug-autoconf@gnu.org and Pascal Obry +$0: about your system, including any $0: error possibly output before this message. Then install $0: a modern shell, or manually run the script under such a $0: shell if you do have one." @@ -580,9 +580,9 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='hubicfuse' PACKAGE_TARNAME='hubicfuse' -PACKAGE_VERSION='0.9' -PACKAGE_STRING='hubicfuse 0.9' -PACKAGE_BUGREPORT='Bertrand Marc ' +PACKAGE_VERSION='1.0.1' +PACKAGE_STRING='hubicfuse 1.0.1' +PACKAGE_BUGREPORT='Pascal Obry ' PACKAGE_URL='' ac_unique_file="cloudfuse.c" @@ -1258,7 +1258,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 hubicfuse 0.9 to adapt to many kinds of systems. +\`configure' configures hubicfuse 1.0.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1319,7 +1319,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of hubicfuse 0.9:";; + short | recursive ) echo "Configuration of hubicfuse 1.0.1:";; esac cat <<\_ACEOF @@ -1353,7 +1353,7 @@ Some influential environment variables: Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. -Report bugs to >. +Report bugs to >. _ACEOF ac_status=$? fi @@ -1416,7 +1416,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -hubicfuse configure 0.9 +hubicfuse configure 1.0.1 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1815,9 +1815,9 @@ $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -( $as_echo "## -------------------------------------------------- ## -## Report this to Bertrand Marc ## -## -------------------------------------------------- ##" +( $as_echo "## -------------------------------------------- ## +## Report this to Pascal Obry ## +## -------------------------------------------- ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac @@ -1896,7 +1896,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 hubicfuse $as_me 0.9, which was +It was created by hubicfuse $as_me 1.0.1, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3214,7 +3214,8 @@ fi $as_echo "$MKDIR_P" >&6; } -# Checks for libraries. +# Checks that pkg-config is installed + @@ -3336,6 +3337,8 @@ $as_echo "no" >&6; } fi fi +# Checks for libraries. + pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML" >&5 $as_echo_n "checking for XML... " >&6; } @@ -5579,7 +5582,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 hubicfuse $as_me 0.9, which was +This file was extended by hubicfuse $as_me 1.0.1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -5635,13 +5638,13 @@ $config_files Configuration headers: $config_headers -Report bugs to >." +Report bugs to >." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -hubicfuse config.status 0.9 +hubicfuse config.status 1.0.1 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.in b/configure.ac similarity index 92% rename from configure.in rename to configure.ac index a09f3fe..c2930d9 100644 --- a/configure.in +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) -AC_INIT([hubicfuse], [0.9], [Bertrand Marc ]) +AC_INIT([hubicfuse], [1.0.1], [Pascal Obry ]) AC_LANG([C]) AC_CONFIG_SRCDIR([cloudfuse.c]) AC_CONFIG_HEADER([config.h]) @@ -13,6 +13,10 @@ AC_PROG_CC AC_PROG_INSTALL AC_PROG_MKDIR_P +# Checks that pkg-config is installed + +PKG_PROG_PKG_CONFIG + # Checks for libraries. PKG_CHECK_MODULES(XML, libxml-2.0, , AC_MSG_ERROR('Unable to find libxml2. Please make sure library and header files are installed.')) PKG_CHECK_MODULES(CURL, libcurl, , AC_MSG_ERROR('Unable to find libcurl. Please make sure library and header files are installed.'))