--- /dev/null
+dnl #
+dnl # SPL_AC_META
+dnl # Read metadata from the META file.
+dnl #
+dnl # AUTHOR:
+dnl # Chris Dunlap <cdunlap@llnl.gov>
+dnl #
+AC_DEFUN([SPL_AC_META], [
+ AC_MSG_CHECKING([metadata])
+
+ META="$srcdir/META"
+ _spl_ac_meta_got_file=no
+ if test -f "$META"; then
+ _spl_ac_meta_got_file=yes
+
+ META_NAME=_SPL_AC_META_GETVAL([(?:NAME|PROJECT|PACKAGE)]);
+ if test -n "$META_NAME"; then
+ AC_DEFINE_UNQUOTED([META_NAME], ["$META_NAME"],
+ [Define the project name.]
+ )
+ AC_SUBST([META_NAME])
+ fi
+
+ META_VERSION=_SPL_AC_META_GETVAL([VERSION]);
+ if test -n "$META_VERSION"; then
+ AC_DEFINE_UNQUOTED([META_VERSION], ["$META_VERSION"],
+ [Define the project version.]
+ )
+ AC_SUBST([META_VERSION])
+ fi
+
+ META_RELEASE=_SPL_AC_META_GETVAL([RELEASE]);
+ if test -n "$META_RELEASE"; then
+ AC_DEFINE_UNQUOTED([META_RELEASE], ["$META_RELEASE"],
+ [Define the project release.]
+ )
+ AC_SUBST([META_RELEASE])
+ fi
+
+ if test -n "$META_NAME" -a -n "$META_VERSION"; then
+ META_ALIAS="$META_NAME-$META_VERSION"
+ test -n "$META_RELEASE" &&
+ META_ALIAS="$META_ALIAS-$META_RELEASE"
+ AC_DEFINE_UNQUOTED([META_ALIAS],
+ ["$META_ALIAS"],
+ [Define the project alias string.]
+ )
+ AC_SUBST([META_ALIAS])
+ fi
+
+ META_DATE=_SPL_AC_META_GETVAL([DATE]);
+ if test -n "$META_DATE"; then
+ AC_DEFINE_UNQUOTED([META_DATE], ["$META_DATE"],
+ [Define the project release date.]
+ )
+ AC_SUBST([META_DATE])
+ fi
+
+ META_AUTHOR=_SPL_AC_META_GETVAL([AUTHOR]);
+ if test -n "$META_AUTHOR"; then
+ AC_DEFINE_UNQUOTED([META_AUTHOR], ["$META_AUTHOR"],
+ [Define the project author.]
+ )
+ AC_SUBST([META_AUTHOR])
+ fi
+
+ m4_pattern_allow([^LT_(CURRENT|REVISION|AGE)$])
+ META_LT_CURRENT=_SPL_AC_META_GETVAL([LT_CURRENT]);
+ META_LT_REVISION=_SPL_AC_META_GETVAL([LT_REVISION]);
+ META_LT_AGE=_SPL_AC_META_GETVAL([LT_AGE]);
+ if test -n "$META_LT_CURRENT" \
+ -o -n "$META_LT_REVISION" \
+ -o -n "$META_LT_AGE"; then
+ test -n "$META_LT_CURRENT" || META_LT_CURRENT="0"
+ test -n "$META_LT_REVISION" || META_LT_REVISION="0"
+ test -n "$META_LT_AGE" || META_LT_AGE="0"
+ AC_DEFINE_UNQUOTED([META_LT_CURRENT],
+ ["$META_LT_CURRENT"],
+ [Define the libtool library 'current'
+ version information.]
+ )
+ AC_DEFINE_UNQUOTED([META_LT_REVISION],
+ ["$META_LT_REVISION"],
+ [Define the libtool library 'revision'
+ version information.]
+ )
+ AC_DEFINE_UNQUOTED([META_LT_AGE], ["$META_LT_AGE"],
+ [Define the libtool library 'age'
+ version information.]
+ )
+ AC_SUBST([META_LT_CURRENT])
+ AC_SUBST([META_LT_REVISION])
+ AC_SUBST([META_LT_AGE])
+ fi
+ fi
+
+ AC_MSG_RESULT([$_spl_ac_meta_got_file])
+ ]
+)
+
+AC_DEFUN([_SPL_AC_META_GETVAL],
+ [`perl -n\
+ -e "BEGIN { \\$key=shift @ARGV; }"\
+ -e "next unless s/^\s*\\$key@<:@:=@:>@//i;"\
+ -e "s/^((?:@<:@^'\"#@:>@*(?:(@<:@'\"@:>@)@<:@^\2@:>@*\2)*)*)#.*/\\@S|@1/;"\
+ -e "s/^\s+//;"\
+ -e "s/\s+$//;"\
+ -e "s/^(@<:@'\"@:>@)(.*)\1/\\@S|@2/;"\
+ -e "\\$val=\\$_;"\
+ -e "END { print \\$val if defined \\$val; }"\
+ '$1' $META`]dnl
+)
# include <unistd.h>
#endif"
-ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE SED EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL LINUX LINUX_OBJ kmoduledir KERNELMAKE_PARAMS KERNELCPPFLAGS KERNELCFLAGS LIBOBJS LTLIBOBJS'
+ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS META_NAME META_VERSION META_RELEASE META_ALIAS META_DATE META_AUTHOR META_LT_CURRENT META_LT_REVISION META_LT_AGE build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE SED EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL LINUX LINUX_OBJ kmoduledir KERNELMAKE_PARAMS KERNELCPPFLAGS KERNELCFLAGS LIBOBJS LTLIBOBJS'
ac_subst_files=''
# Initialize some variables set by options.
+ echo "$as_me:$LINENO: checking metadata" >&5
+echo $ECHO_N "checking metadata... $ECHO_C" >&6
+
+ META="$srcdir/META"
+ _spl_ac_meta_got_file=no
+ if test -f "$META"; then
+ _spl_ac_meta_got_file=yes
+
+ META_NAME=`perl -n\
+ -e "BEGIN { \\$key=shift @ARGV; }"\
+ -e "next unless s/^\s*\\$key[:=]//i;"\
+ -e "s/^((?:[^'\"#]*(?:(['\"])[^\2]*\2)*)*)#.*/\\$1/;"\
+ -e "s/^\s+//;"\
+ -e "s/\s+$//;"\
+ -e "s/^(['\"])(.*)\1/\\$2/;"\
+ -e "\\$val=\\$_;"\
+ -e "END { print \\$val if defined \\$val; }"\
+ '(?:NAME|PROJECT|PACKAGE)' $META`;
+ if test -n "$META_NAME"; then
+
+cat >>confdefs.h <<_ACEOF
+#define META_NAME "$META_NAME"
+_ACEOF
+
+
+ fi
+
+ META_VERSION=`perl -n\
+ -e "BEGIN { \\$key=shift @ARGV; }"\
+ -e "next unless s/^\s*\\$key[:=]//i;"\
+ -e "s/^((?:[^'\"#]*(?:(['\"])[^\2]*\2)*)*)#.*/\\$1/;"\
+ -e "s/^\s+//;"\
+ -e "s/\s+$//;"\
+ -e "s/^(['\"])(.*)\1/\\$2/;"\
+ -e "\\$val=\\$_;"\
+ -e "END { print \\$val if defined \\$val; }"\
+ 'VERSION' $META`;
+ if test -n "$META_VERSION"; then
+
+cat >>confdefs.h <<_ACEOF
+#define META_VERSION "$META_VERSION"
+_ACEOF
+
+
+ fi
+
+ META_RELEASE=`perl -n\
+ -e "BEGIN { \\$key=shift @ARGV; }"\
+ -e "next unless s/^\s*\\$key[:=]//i;"\
+ -e "s/^((?:[^'\"#]*(?:(['\"])[^\2]*\2)*)*)#.*/\\$1/;"\
+ -e "s/^\s+//;"\
+ -e "s/\s+$//;"\
+ -e "s/^(['\"])(.*)\1/\\$2/;"\
+ -e "\\$val=\\$_;"\
+ -e "END { print \\$val if defined \\$val; }"\
+ 'RELEASE' $META`;
+ if test -n "$META_RELEASE"; then
+
+cat >>confdefs.h <<_ACEOF
+#define META_RELEASE "$META_RELEASE"
+_ACEOF
+
+
+ fi
+
+ if test -n "$META_NAME" -a -n "$META_VERSION"; then
+ META_ALIAS="$META_NAME-$META_VERSION"
+ test -n "$META_RELEASE" &&
+ META_ALIAS="$META_ALIAS-$META_RELEASE"
+
+cat >>confdefs.h <<_ACEOF
+#define META_ALIAS "$META_ALIAS"
+_ACEOF
+
+
+ fi
+
+ META_DATE=`perl -n\
+ -e "BEGIN { \\$key=shift @ARGV; }"\
+ -e "next unless s/^\s*\\$key[:=]//i;"\
+ -e "s/^((?:[^'\"#]*(?:(['\"])[^\2]*\2)*)*)#.*/\\$1/;"\
+ -e "s/^\s+//;"\
+ -e "s/\s+$//;"\
+ -e "s/^(['\"])(.*)\1/\\$2/;"\
+ -e "\\$val=\\$_;"\
+ -e "END { print \\$val if defined \\$val; }"\
+ 'DATE' $META`;
+ if test -n "$META_DATE"; then
+
+cat >>confdefs.h <<_ACEOF
+#define META_DATE "$META_DATE"
+_ACEOF
+
+
+ fi
+
+ META_AUTHOR=`perl -n\
+ -e "BEGIN { \\$key=shift @ARGV; }"\
+ -e "next unless s/^\s*\\$key[:=]//i;"\
+ -e "s/^((?:[^'\"#]*(?:(['\"])[^\2]*\2)*)*)#.*/\\$1/;"\
+ -e "s/^\s+//;"\
+ -e "s/\s+$//;"\
+ -e "s/^(['\"])(.*)\1/\\$2/;"\
+ -e "\\$val=\\$_;"\
+ -e "END { print \\$val if defined \\$val; }"\
+ 'AUTHOR' $META`;
+ if test -n "$META_AUTHOR"; then
+
+cat >>confdefs.h <<_ACEOF
+#define META_AUTHOR "$META_AUTHOR"
+_ACEOF
+
+
+ fi
+
+
+ META_LT_CURRENT=`perl -n\
+ -e "BEGIN { \\$key=shift @ARGV; }"\
+ -e "next unless s/^\s*\\$key[:=]//i;"\
+ -e "s/^((?:[^'\"#]*(?:(['\"])[^\2]*\2)*)*)#.*/\\$1/;"\
+ -e "s/^\s+//;"\
+ -e "s/\s+$//;"\
+ -e "s/^(['\"])(.*)\1/\\$2/;"\
+ -e "\\$val=\\$_;"\
+ -e "END { print \\$val if defined \\$val; }"\
+ 'LT_CURRENT' $META`;
+ META_LT_REVISION=`perl -n\
+ -e "BEGIN { \\$key=shift @ARGV; }"\
+ -e "next unless s/^\s*\\$key[:=]//i;"\
+ -e "s/^((?:[^'\"#]*(?:(['\"])[^\2]*\2)*)*)#.*/\\$1/;"\
+ -e "s/^\s+//;"\
+ -e "s/\s+$//;"\
+ -e "s/^(['\"])(.*)\1/\\$2/;"\
+ -e "\\$val=\\$_;"\
+ -e "END { print \\$val if defined \\$val; }"\
+ 'LT_REVISION' $META`;
+ META_LT_AGE=`perl -n\
+ -e "BEGIN { \\$key=shift @ARGV; }"\
+ -e "next unless s/^\s*\\$key[:=]//i;"\
+ -e "s/^((?:[^'\"#]*(?:(['\"])[^\2]*\2)*)*)#.*/\\$1/;"\
+ -e "s/^\s+//;"\
+ -e "s/\s+$//;"\
+ -e "s/^(['\"])(.*)\1/\\$2/;"\
+ -e "\\$val=\\$_;"\
+ -e "END { print \\$val if defined \\$val; }"\
+ 'LT_AGE' $META`;
+ if test -n "$META_LT_CURRENT" \
+ -o -n "$META_LT_REVISION" \
+ -o -n "$META_LT_AGE"; then
+ test -n "$META_LT_CURRENT" || META_LT_CURRENT="0"
+ test -n "$META_LT_REVISION" || META_LT_REVISION="0"
+ test -n "$META_LT_AGE" || META_LT_AGE="0"
+
+cat >>confdefs.h <<_ACEOF
+#define META_LT_CURRENT "$META_LT_CURRENT"
+_ACEOF
+
+
+cat >>confdefs.h <<_ACEOF
+#define META_LT_REVISION "$META_LT_REVISION"
+_ACEOF
+
+
+cat >>confdefs.h <<_ACEOF
+#define META_LT_AGE "$META_LT_AGE"
+_ACEOF
+
+
+
+
+ fi
+ fi
+
+ echo "$as_me:$LINENO: result: $_spl_ac_meta_got_file" >&5
+echo "${ECHO_T}$_spl_ac_meta_got_file" >&6
+
+
ac_aux_dir=
for ac_dir in config $srcdir/config; do
if test -f $ac_dir/install-sh; then
# Define the identity of the package.
- PACKAGE=spl
- VERSION=0.3.4
+ PACKAGE=$META_NAME
+ VERSION=$META_VERSION
cat >>confdefs.h <<_ACEOF
;;
*-*-irix6*)
# Find out which ABI we are using.
- echo '#line 3804 "configure"' > conftest.$ac_ext
+ echo '#line 3981 "configure"' > conftest.$ac_ext
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
# Provide some information about the compiler.
-echo "$as_me:5403:" \
+echo "$as_me:5580:" \
"checking for Fortran 77 compiler version" >&5
ac_compiler=`set X $ac_compile; echo $2`
{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:6466: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:6643: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
- echo "$as_me:6470: \$? = $ac_status" >&5
+ echo "$as_me:6647: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings other than the usual output.
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:6734: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:6911: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
- echo "$as_me:6738: \$? = $ac_status" >&5
+ echo "$as_me:6915: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings other than the usual output.
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:6838: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:7015: $lt_compile\"" >&5)
(eval "$lt_compile" 2>out/conftest.err)
ac_status=$?
cat out/conftest.err >&5
- echo "$as_me:6842: \$? = $ac_status" >&5
+ echo "$as_me:7019: \$? = $ac_status" >&5
if (exit $ac_status) && test -s out/conftest2.$ac_objext
then
# The compiler can only warn and ignore the option if not recognized
libsuff=
case "$host_cpu" in
x86_64*|s390x*|powerpc64*)
- echo '#line 8307 "configure"' > conftest.$ac_ext
+ echo '#line 8484 "configure"' > conftest.$ac_ext
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
-#line 9204 "configure"
+#line 9381 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
-#line 9304 "configure"
+#line 9481 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:11647: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:11824: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
- echo "$as_me:11651: \$? = $ac_status" >&5
+ echo "$as_me:11828: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings other than the usual output.
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:11751: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:11928: $lt_compile\"" >&5)
(eval "$lt_compile" 2>out/conftest.err)
ac_status=$?
cat out/conftest.err >&5
- echo "$as_me:11755: \$? = $ac_status" >&5
+ echo "$as_me:11932: \$? = $ac_status" >&5
if (exit $ac_status) && test -s out/conftest2.$ac_objext
then
# The compiler can only warn and ignore the option if not recognized
libsuff=
case "$host_cpu" in
x86_64*|s390x*|powerpc64*)
- echo '#line 12287 "configure"' > conftest.$ac_ext
+ echo '#line 12464 "configure"' > conftest.$ac_ext
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:13345: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:13522: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
- echo "$as_me:13349: \$? = $ac_status" >&5
+ echo "$as_me:13526: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings other than the usual output.
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:13449: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:13626: $lt_compile\"" >&5)
(eval "$lt_compile" 2>out/conftest.err)
ac_status=$?
cat out/conftest.err >&5
- echo "$as_me:13453: \$? = $ac_status" >&5
+ echo "$as_me:13630: \$? = $ac_status" >&5
if (exit $ac_status) && test -s out/conftest2.$ac_objext
then
# The compiler can only warn and ignore the option if not recognized
libsuff=
case "$host_cpu" in
x86_64*|s390x*|powerpc64*)
- echo '#line 14898 "configure"' > conftest.$ac_ext
+ echo '#line 15075 "configure"' > conftest.$ac_ext
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:15676: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:15853: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
- echo "$as_me:15680: \$? = $ac_status" >&5
+ echo "$as_me:15857: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings other than the usual output.
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:15944: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:16121: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
- echo "$as_me:15948: \$? = $ac_status" >&5
+ echo "$as_me:16125: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings other than the usual output.
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:16048: $lt_compile\"" >&5)
+ (eval echo "\"\$as_me:16225: $lt_compile\"" >&5)
(eval "$lt_compile" 2>out/conftest.err)
ac_status=$?
cat out/conftest.err >&5
- echo "$as_me:16052: \$? = $ac_status" >&5
+ echo "$as_me:16229: \$? = $ac_status" >&5
if (exit $ac_status) && test -s out/conftest2.$ac_objext
then
# The compiler can only warn and ignore the option if not recognized
libsuff=
case "$host_cpu" in
x86_64*|s390x*|powerpc64*)
- echo '#line 17517 "configure"' > conftest.$ac_ext
+ echo '#line 17694 "configure"' > conftest.$ac_ext
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
s,@ECHO_N@,$ECHO_N,;t t
s,@ECHO_T@,$ECHO_T,;t t
s,@LIBS@,$LIBS,;t t
+s,@META_NAME@,$META_NAME,;t t
+s,@META_VERSION@,$META_VERSION,;t t
+s,@META_RELEASE@,$META_RELEASE,;t t
+s,@META_ALIAS@,$META_ALIAS,;t t
+s,@META_DATE@,$META_DATE,;t t
+s,@META_AUTHOR@,$META_AUTHOR,;t t
+s,@META_LT_CURRENT@,$META_LT_CURRENT,;t t
+s,@META_LT_REVISION@,$META_LT_REVISION,;t t
+s,@META_LT_AGE@,$META_LT_AGE,;t t
s,@build@,$build,;t t
s,@build_cpu@,$build_cpu,;t t
s,@build_vendor@,$build_vendor,;t t