Skip to content
This repository was archived by the owner on Nov 10, 2021. It is now read-only.

Commit 3a07302

Browse files
author
Grant Erickson
committed
Re-bootstrapped the package.
1 parent f35f51c commit 3a07302

File tree

7 files changed

+264
-27
lines changed

7 files changed

+264
-27
lines changed

Makefile.in

+12
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,18 @@ localedir = @localedir@
403403
localstatedir = @localstatedir@
404404
mandir = @mandir@
405405
mkdir_p = @mkdir_p@
406+
nl_filtered_build = @nl_filtered_build@
407+
nl_filtered_build_cpu = @nl_filtered_build_cpu@
408+
nl_filtered_build_os = @nl_filtered_build_os@
409+
nl_filtered_build_vendor = @nl_filtered_build_vendor@
410+
nl_filtered_host = @nl_filtered_host@
411+
nl_filtered_host_cpu = @nl_filtered_host_cpu@
412+
nl_filtered_host_os = @nl_filtered_host_os@
413+
nl_filtered_host_vendor = @nl_filtered_host_vendor@
414+
nl_filtered_target = @nl_filtered_target@
415+
nl_filtered_target_cpu = @nl_filtered_target_cpu@
416+
nl_filtered_target_os = @nl_filtered_target_os@
417+
nl_filtered_target_vendor = @nl_filtered_target_vendor@
406418
nlbuild_autotools_stem = @nlbuild_autotools_stem@
407419
oldincludedir = @oldincludedir@
408420
pdfdir = @pdfdir@

configure

+133-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.68 for nlutilities g5aa9f1d.
3+
# Generated by GNU Autoconf 2.68 for nlutilities gf35f51c.
44
#
55
# Report bugs to <nlutilities-users@google.com>.
66
#
@@ -570,8 +570,8 @@ MAKEFLAGS=
570570
# Identity of this package.
571571
PACKAGE_NAME='nlutilities'
572572
PACKAGE_TARNAME='nlutilities'
573-
PACKAGE_VERSION='g5aa9f1d'
574-
PACKAGE_STRING='nlutilities g5aa9f1d'
573+
PACKAGE_VERSION='gf35f51c'
574+
PACKAGE_STRING='nlutilities gf35f51c'
575575
PACKAGE_BUGREPORT='nlutilities-users@google.com'
576576
PACKAGE_URL='https://github.com/nestlabs/nlutilities/'
577577

@@ -728,6 +728,18 @@ am__isrc
728728
INSTALL_DATA
729729
INSTALL_SCRIPT
730730
INSTALL_PROGRAM
731+
nl_filtered_target_os
732+
nl_filtered_target_vendor
733+
nl_filtered_target_cpu
734+
nl_filtered_target
735+
nl_filtered_host_os
736+
nl_filtered_host_vendor
737+
nl_filtered_host_cpu
738+
nl_filtered_host
739+
nl_filtered_build_os
740+
nl_filtered_build_vendor
741+
nl_filtered_build_cpu
742+
nl_filtered_build
731743
target_os
732744
target_vendor
733745
target_cpu
@@ -1374,7 +1386,7 @@ if test "$ac_init_help" = "long"; then
13741386
# Omit some internal or obsolete options to make the list less imposing.
13751387
# This message is too long to be a string in the A/UX 3.1 sh.
13761388
cat <<_ACEOF
1377-
\`configure' configures nlutilities g5aa9f1d to adapt to many kinds of systems.
1389+
\`configure' configures nlutilities gf35f51c to adapt to many kinds of systems.
13781390

13791391
Usage: $0 [OPTION]... [VAR=VALUE]...
13801392

@@ -1445,7 +1457,7 @@ fi
14451457

14461458
if test -n "$ac_init_help"; then
14471459
case $ac_init_help in
1448-
short | recursive ) echo "Configuration of nlutilities g5aa9f1d:";;
1460+
short | recursive ) echo "Configuration of nlutilities gf35f51c:";;
14491461
esac
14501462
cat <<\_ACEOF
14511463

@@ -1600,7 +1612,7 @@ fi
16001612
test -n "$ac_init_help" && exit $ac_status
16011613
if $ac_init_version; then
16021614
cat <<\_ACEOF
1603-
nlutilities configure g5aa9f1d
1615+
nlutilities configure gf35f51c
16041616
generated by GNU Autoconf 2.68
16051617

16061618
Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2274,7 +2286,7 @@ cat >config.log <<_ACEOF
22742286
This file contains any messages produced by compilers while
22752287
running configure, to aid debugging if configure makes a mistake.
22762288

2277-
It was created by nlutilities $as_me g5aa9f1d, which was
2289+
It was created by nlutilities $as_me gf35f51c, which was
22782290
generated by GNU Autoconf 2.68. Invocation command line was
22792291

22802292
$ $0 $@
@@ -2841,6 +2853,41 @@ fi
28412853
$as_echo "$nl_cv_filtered_build" >&6; }
28422854

28432855

2856+
case ${nl_cv_filtered_build} in
2857+
2858+
*-*-*) ;;
2859+
*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
2860+
2861+
esac
2862+
2863+
nl_filtered_build=$nl_cv_filtered_build
2864+
2865+
2866+
nl_save_IFS=$IFS; IFS='-'
2867+
set x $nl_cv_filtered_build
2868+
shift
2869+
2870+
nl_filtered_build_cpu=$1
2871+
2872+
nl_filtered_build_vendor=$2
2873+
2874+
2875+
shift; shift
2876+
# Remember, the first character of IFS is used to create $*,
2877+
# except with old shells:
2878+
nl_filtered_build_os=$*
2879+
IFS=$nl_save_IFS
2880+
2881+
case nl_filtered_$build_os in
2882+
2883+
*\ *) nl_filtered_build_os=`echo "$build_os" | sed 's/ /-/g'`;;
2884+
2885+
esac
2886+
2887+
2888+
2889+
2890+
28442891

28452892

28462893

@@ -2856,6 +2903,41 @@ fi
28562903
$as_echo "$nl_cv_filtered_host" >&6; }
28572904

28582905

2906+
case ${nl_cv_filtered_host} in
2907+
2908+
*-*-*) ;;
2909+
*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
2910+
2911+
esac
2912+
2913+
nl_filtered_host=$nl_cv_filtered_host
2914+
2915+
2916+
nl_save_IFS=$IFS; IFS='-'
2917+
set x $nl_cv_filtered_host
2918+
shift
2919+
2920+
nl_filtered_host_cpu=$1
2921+
2922+
nl_filtered_host_vendor=$2
2923+
2924+
2925+
shift; shift
2926+
# Remember, the first character of IFS is used to create $*,
2927+
# except with old shells:
2928+
nl_filtered_host_os=$*
2929+
IFS=$nl_save_IFS
2930+
2931+
case nl_filtered_$host_os in
2932+
2933+
*\ *) nl_filtered_host_os=`echo "$host_os" | sed 's/ /-/g'`;;
2934+
2935+
esac
2936+
2937+
2938+
2939+
2940+
28592941

28602942

28612943

@@ -2871,6 +2953,41 @@ fi
28712953
$as_echo "$nl_cv_filtered_target" >&6; }
28722954

28732955

2956+
case ${nl_cv_filtered_target} in
2957+
2958+
*-*-*) ;;
2959+
*) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;;
2960+
2961+
esac
2962+
2963+
nl_filtered_target=$nl_cv_filtered_target
2964+
2965+
2966+
nl_save_IFS=$IFS; IFS='-'
2967+
set x $nl_cv_filtered_target
2968+
shift
2969+
2970+
nl_filtered_target_cpu=$1
2971+
2972+
nl_filtered_target_vendor=$2
2973+
2974+
2975+
shift; shift
2976+
# Remember, the first character of IFS is used to create $*,
2977+
# except with old shells:
2978+
nl_filtered_target_os=$*
2979+
IFS=$nl_save_IFS
2980+
2981+
case nl_filtered_$target_os in
2982+
2983+
*\ *) nl_filtered_target_os=`echo "$target_os" | sed 's/ /-/g'`;;
2984+
2985+
esac
2986+
2987+
2988+
2989+
2990+
28742991

28752992
#
28762993
# Configure automake with the desired options, indicating that this is not
@@ -3367,7 +3484,7 @@ fi
33673484

33683485
# Define the identity of the package.
33693486
PACKAGE='nlutilities'
3370-
VERSION='g5aa9f1d'
3487+
VERSION='gf35f51c'
33713488

33723489

33733490
cat >>confdefs.h <<_ACEOF
@@ -18092,11 +18209,13 @@ fi
1809218209
if test "${nl_cv_build_coverage}" = "yes"; then
1809318210
if test "${GCC}" != "yes"; then
1809418211
as_fn_error $? "GCC or a GCC-compatible toolchain is required for --enable-coverage" "$LINENO" 5
18095-
1809618212
else
1809718213
NL_COVERAGE_CPPFLAGS="--coverage"
18098-
NL_COVERAGE_LIBS="-lgcov"
18099-
18214+
if ${CC} --version | grep -q clang; then
18215+
NL_COVERAGE_LDFLAGS="--coverage"
18216+
else
18217+
NL_COVERAGE_LIBS="-lgcov"
18218+
fi
1810018219
fi
1810118220
fi
1810218221

@@ -19695,6 +19814,7 @@ LIBS="${LIBS} ${NLUNIT_TEST_LIBS}"
1969519814
# Add any code coverage CPPFLAGS and LIBS
1969619815

1969719816
CPPFLAGS="${CPPFLAGS} ${NL_COVERAGE_CPPFLAGS}"
19817+
LDFLAGS="${LDFLAGS} ${NL_COVERAGE_LDFLAGS}"
1969819818
LIBS="${LIBS} ${NL_COVERAGE_LIBS}"
1969919819

1970019820
# At this point, we can restore the compiler flags to whatever the
@@ -20351,7 +20471,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2035120471
# report actual input values of CONFIG_FILES etc. instead of their
2035220472
# values after options handling.
2035320473
ac_log="
20354-
This file was extended by nlutilities $as_me g5aa9f1d, which was
20474+
This file was extended by nlutilities $as_me gf35f51c, which was
2035520475
generated by GNU Autoconf 2.68. Invocation command line was
2035620476

2035720477
CONFIG_FILES = $CONFIG_FILES
@@ -20418,7 +20538,7 @@ _ACEOF
2041820538
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2041920539
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
2042020540
ac_cs_version="\\
20421-
nlutilities config.status g5aa9f1d
20541+
nlutilities config.status gf35f51c
2042220542
configured by $0, generated by GNU Autoconf 2.68,
2042320543
with options \\"\$ac_cs_config\\"
2042420544

doc/Makefile.in

+12
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,18 @@ localedir = @localedir@
284284
localstatedir = @localstatedir@
285285
mandir = @mandir@
286286
mkdir_p = @mkdir_p@
287+
nl_filtered_build = @nl_filtered_build@
288+
nl_filtered_build_cpu = @nl_filtered_build_cpu@
289+
nl_filtered_build_os = @nl_filtered_build_os@
290+
nl_filtered_build_vendor = @nl_filtered_build_vendor@
291+
nl_filtered_host = @nl_filtered_host@
292+
nl_filtered_host_cpu = @nl_filtered_host_cpu@
293+
nl_filtered_host_os = @nl_filtered_host_os@
294+
nl_filtered_host_vendor = @nl_filtered_host_vendor@
295+
nl_filtered_target = @nl_filtered_target@
296+
nl_filtered_target_cpu = @nl_filtered_target_cpu@
297+
nl_filtered_target_os = @nl_filtered_target_os@
298+
nl_filtered_target_vendor = @nl_filtered_target_vendor@
287299
nlbuild_autotools_stem = @nlbuild_autotools_stem@
288300
oldincludedir = @oldincludedir@
289301
pdfdir = @pdfdir@

include/Makefile.in

+15-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
@SET_MAKE@
1616

1717
#
18-
# Copyright 2018 Nest Labs Inc. All Rights Reserved.
18+
# Copyright 2018 Google LLC
19+
# All Rights Reserved.
1920
#
2021
# Licensed under the Apache License, Version 2.0 (the "License");
2122
# you may not use this file except in compliance with the License.
@@ -328,6 +329,18 @@ localedir = @localedir@
328329
localstatedir = @localstatedir@
329330
mandir = @mandir@
330331
mkdir_p = @mkdir_p@
332+
nl_filtered_build = @nl_filtered_build@
333+
nl_filtered_build_cpu = @nl_filtered_build_cpu@
334+
nl_filtered_build_os = @nl_filtered_build_os@
335+
nl_filtered_build_vendor = @nl_filtered_build_vendor@
336+
nl_filtered_host = @nl_filtered_host@
337+
nl_filtered_host_cpu = @nl_filtered_host_cpu@
338+
nl_filtered_host_os = @nl_filtered_host_os@
339+
nl_filtered_host_vendor = @nl_filtered_host_vendor@
340+
nl_filtered_target = @nl_filtered_target@
341+
nl_filtered_target_cpu = @nl_filtered_target_cpu@
342+
nl_filtered_target_os = @nl_filtered_target_os@
343+
nl_filtered_target_vendor = @nl_filtered_target_vendor@
331344
nlbuild_autotools_stem = @nlbuild_autotools_stem@
332345
oldincludedir = @oldincludedir@
333346
pdfdir = @pdfdir@
@@ -348,6 +361,7 @@ top_build_prefix = @top_build_prefix@
348361
top_builddir = @top_builddir@
349362
top_srcdir = @top_srcdir@
350363
include_HEADERS = \
364+
nlabs-variants.h \
351365
nlalgorithm.hpp \
352366
nlalignedvarpool.hpp \
353367
nlalignment.h \

0 commit comments

Comments
 (0)