<86>Dec  8 03:02:17 userdel[19820]: delete user 'rooter'
<86>Dec  8 03:02:17 userdel[19820]: removed group 'rooter' owned by 'rooter'
<86>Dec  8 03:02:17 userdel[19820]: removed shadow group 'rooter' owned by 'rooter'
<86>Dec  8 03:02:17 groupadd[19825]: group added to /etc/group: name=rooter, GID=579
<86>Dec  8 03:02:17 groupadd[19825]: group added to /etc/gshadow: name=rooter
<86>Dec  8 03:02:17 groupadd[19825]: new group: name=rooter, GID=579
<86>Dec  8 03:02:17 useradd[19829]: new user: name=rooter, UID=579, GID=579, home=/root, shell=/bin/bash
<86>Dec  8 03:02:17 userdel[19837]: delete user 'builder'
<86>Dec  8 03:02:17 userdel[19837]: removed group 'builder' owned by 'builder'
<86>Dec  8 03:02:17 userdel[19837]: removed shadow group 'builder' owned by 'builder'
<86>Dec  8 03:02:17 groupadd[19843]: group added to /etc/group: name=builder, GID=580
<86>Dec  8 03:02:17 groupadd[19843]: group added to /etc/gshadow: name=builder
<86>Dec  8 03:02:17 groupadd[19843]: new group: name=builder, GID=580
<86>Dec  8 03:02:17 useradd[19847]: new user: name=builder, UID=580, GID=580, home=/usr/src, shell=/bin/bash
Building target platforms: x86_64
Building for target x86_64
Wrote: /usr/src/in/nosrpm/libdict-0.3.0-alt1.git20140826.nosrc.rpm
Installing libdict-0.3.0-alt1.git20140826.src.rpm
Building target platforms: x86_64
Building for target x86_64
Executing(%prep): /bin/sh -e /usr/src/tmp/rpm-tmp.8092
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ rm -rf libdict-0.3.0
+ echo 'Source #0 (libdict-0.3.0.tar):'
Source #0 (libdict-0.3.0.tar):
+ /bin/tar -xf /usr/src/RPM/SOURCES/libdict-0.3.0.tar
+ cd libdict-0.3.0
+ /bin/chmod -c -Rf u+rwX,go-w .
+ exit 0
Executing(%build): /bin/sh -e /usr/src/tmp/rpm-tmp.8092
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd libdict-0.3.0
+ make -j8
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
which: no clang in (/usr/src/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/games)
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
[ -d bin ] || mkdir -m 755 bin
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/tr_tree.o src/tr_tree.c
src/tr_tree.c: In function 'tr_tree_insert':
src/tr_tree.c:189:59: warning: operand of ?: changes signedness from 'int' to 'unsigned int' due to unsignedness of other operand [-Wsign-compare]
     node->prio = tree->prio_func ? tree->prio_func(key) : dict_rand();
                                                           ^~~~~~~~~~~
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/wb_tree.o src/wb_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/tree_common.o src/tree_common.c
src/tree_common.c: In function 'tree_search_node':
src/tree_common.c:152:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_le_node':
src/tree_common.c:176:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_lt_node':
src/tree_common.c:204:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_ge_node':
src/tree_common.c:230:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_gt_node':
src/tree_common.c:259:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_min':
src/tree_common.c:287:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_max':
src/tree_common.c:301:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_traverse':
src/tree_common.c:316:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_node_free':
src/tree_common.c:331:22: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
 tree_node_free(tree* tree, tree_node* node)
                ~~~~~~^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_clear':
src/tree_common.c:358:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_clone':
src/tree_common.c:397:18: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
 tree_clone(void* tree, size_t tree_size, size_t node_size,
            ~~~~~~^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_min_leaf_depth':
src/tree_common.c:432:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_max_leaf_depth':
src/tree_common.c:457:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/hashtable.o src/hashtable.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/pr_tree.o src/pr_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/dict.o src/dict.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/hb_tree.o src/hb_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/hashtable_common.o src/hashtable_common.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/dict.So src/dict.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/sp_tree.o src/sp_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/wb_tree.So src/wb_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/tr_tree.So src/tr_tree.c
src/tr_tree.c: In function 'tr_tree_insert':
src/tr_tree.c:189:59: warning: operand of ?: changes signedness from 'int' to 'unsigned int' due to unsignedness of other operand [-Wsign-compare]
     node->prio = tree->prio_func ? tree->prio_func(key) : dict_rand();
                                                           ^~~~~~~~~~~
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/skiplist.So src/skiplist.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/tree_common.So src/tree_common.c
src/tree_common.c: In function 'tree_search_node':
src/tree_common.c:152:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_le_node':
src/tree_common.c:176:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_lt_node':
src/tree_common.c:204:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_ge_node':
src/tree_common.c:230:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_gt_node':
src/tree_common.c:259:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_min':
src/tree_common.c:287:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_max':
src/tree_common.c:301:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_traverse':
src/tree_common.c:316:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_node_free':
src/tree_common.c:331:22: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
 tree_node_free(tree* tree, tree_node* node)
                ~~~~~~^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_clear':
src/tree_common.c:358:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_clone':
src/tree_common.c:397:18: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
 tree_clone(void* tree, size_t tree_size, size_t node_size,
            ~~~~~~^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_min_leaf_depth':
src/tree_common.c:432:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_max_leaf_depth':
src/tree_common.c:457:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/hashtable2.So src/hashtable2.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/sp_tree.So src/sp_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/hashtable_common.So src/hashtable_common.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
cp vg bin/vg
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/hashtable.So src/hashtable.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/hb_tree.So src/hb_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/skiplist.o src/skiplist.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/hashtable2.o src/hashtable2.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/rb_tree.So src/rb_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/pr_tree.So src/pr_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -shared -o bin/libdict.so bin/tree_common.So bin/sp_tree.So bin/wb_tree.So bin/dict.So bin/tr_tree.So bin/rb_tree.So bin/skiplist.So bin/pr_tree.So bin/hashtable2.So bin/hashtable.So bin/hb_tree.So bin/hashtable_common.So
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/rb_tree.o src/rb_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
ar cru bin/libdict.a bin/tree_common.o bin/sp_tree.o bin/wb_tree.o bin/dict.o bin/tr_tree.o bin/rb_tree.o bin/skiplist.o bin/pr_tree.o bin/hashtable2.o bin/hashtable.o bin/hb_tree.o bin/hashtable_common.o
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -o bin/anagram anagram.c bin/libdict.a 
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -o bin/demo demo.c bin/libdict.a 
demo.c: In function 'main':
demo.c:116:28: warning: format '%s' expects argument of type 'char *', but argument 3 has type 'void *' [-Wformat=]
   printf("inserted '%s': '%s'\n",
                           ~^
                           %p
          ptr, *datum_location);
               ~~~~~~~~~~~~~~~
demo.c:119:35: warning: format '%s' expects argument of type 'char *', but argument 3 has type 'void *' [-Wformat=]
   printf("'%s' already in dict: '%s'\n",
                                  ~^
                                  %p
          ptr, *datum_location);
               ~~~~~~~~~~~~~~~      
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -o bin/benchmark benchmark.c bin/libdict.a 
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
+ exit 0
Executing(%install): /bin/sh -e /usr/src/tmp/rpm-tmp.35980
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ /bin/chmod -Rf u+rwX -- /usr/src/tmp/libdict-buildroot
+ :
+ /bin/rm -rf -- /usr/src/tmp/libdict-buildroot
+ cd libdict-0.3.0
+ LIB_SUFFIX=64
+ make 'INSTALL=/bin/install -p' install DESTDIR=/usr/src/tmp/libdict-buildroot INSTALL_PREFIX=/usr/src/tmp/libdict-buildroot/usr LIB_SUFFIX=64
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
which: no clang in (/usr/src/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/games)
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
ar cru bin/libdict.a bin/tree_common.o bin/sp_tree.o bin/wb_tree.o bin/dict.o bin/tr_tree.o bin/rb_tree.o bin/skiplist.o bin/pr_tree.o bin/hashtable2.o bin/hashtable.o bin/hb_tree.o bin/hashtable_common.o
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/tree_common.po src/tree_common.c
src/tree_common.c: In function 'tree_search_node':
src/tree_common.c:152:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_le_node':
src/tree_common.c:176:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_lt_node':
src/tree_common.c:204:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_ge_node':
src/tree_common.c:230:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_gt_node':
src/tree_common.c:259:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_min':
src/tree_common.c:287:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_max':
src/tree_common.c:301:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_traverse':
src/tree_common.c:316:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_node_free':
src/tree_common.c:331:22: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
 tree_node_free(tree* tree, tree_node* node)
                ~~~~~~^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_clear':
src/tree_common.c:358:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_clone':
src/tree_common.c:397:18: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
 tree_clone(void* tree, size_t tree_size, size_t node_size,
            ~~~~~~^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_min_leaf_depth':
src/tree_common.c:432:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_max_leaf_depth':
src/tree_common.c:457:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/sp_tree.po src/sp_tree.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/wb_tree.po src/wb_tree.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/dict.po src/dict.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/tr_tree.po src/tr_tree.c
src/tr_tree.c: In function 'tr_tree_insert':
src/tr_tree.c:189:59: warning: operand of ?: changes signedness from 'int' to 'unsigned int' due to unsignedness of other operand [-Wsign-compare]
     node->prio = tree->prio_func ? tree->prio_func(key) : dict_rand();
                                                           ^~~~~~~~~~~
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/rb_tree.po src/rb_tree.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/skiplist.po src/skiplist.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/pr_tree.po src/pr_tree.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/hashtable2.po src/hashtable2.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/hashtable.po src/hashtable.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/hb_tree.po src/hb_tree.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/hashtable_common.po src/hashtable_common.c
ar cru bin/libdict_p.a bin/tree_common.po bin/sp_tree.po bin/wb_tree.po bin/dict.po bin/tr_tree.po bin/rb_tree.po bin/skiplist.po bin/pr_tree.po bin/hashtable2.po bin/hashtable.po bin/hb_tree.po bin/hashtable_common.po
/usr/bin/gcc -shared -o bin/libdict.so bin/tree_common.So bin/sp_tree.So bin/wb_tree.So bin/dict.So bin/tr_tree.So bin/rb_tree.So bin/skiplist.So bin/pr_tree.So bin/hashtable2.So bin/hashtable.So bin/hb_tree.So bin/hashtable_common.So
[ -d /usr/src/tmp/libdict-buildroot/usr/include/dict ] || mkdir -p -m 755 /usr/src/tmp/libdict-buildroot/usr/include/dict
/bin/install -p -m 644 include/sp_tree.h include/wb_tree.h include/dict.h include/tr_tree.h include/rb_tree.h include/skiplist.h include/pr_tree.h include/hashtable2.h include/hashtable.h include/hb_tree.h src/dict_private.h src/hashtable_common.h src/tree_common.h /usr/src/tmp/libdict-buildroot/usr/include/dict
[ -d /usr/src/tmp/libdict-buildroot/usr/lib64 ] || mkdir -p -m 755 /usr/src/tmp/libdict-buildroot/usr/lib64
/bin/install -p -s -m 644 bin/libdict.a /usr/src/tmp/libdict-buildroot/usr/lib64/libdict.a
/bin/install -p -s -m 644 bin/libdict_p.a /usr/src/tmp/libdict-buildroot/usr/lib64/libdict_p.a
/bin/install -p -s -m 755 bin/libdict.so /usr/src/tmp/libdict-buildroot/usr/lib64/libdict.so.2
/bin/sh -ec 'cd /usr/src/tmp/libdict-buildroot/usr/lib64 && ln -sf libdict.so.2 libdict.so'
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
+ /usr/lib/rpm/brp-alt
Cleaning files in /usr/src/tmp/libdict-buildroot (auto)
mode of './usr/lib64/libdict.so.2' changed from 0755 (rwxr-xr-x) to 0644 (rw-r--r--)
Verifying and fixing files in /usr/src/tmp/libdict-buildroot (binconfig,pkgconfig,libtool,desktop)
Checking contents of files in /usr/src/tmp/libdict-buildroot/ (default)
Compressing files in /usr/src/tmp/libdict-buildroot (auto)
Adjusting library links in /usr/src/tmp/libdict-buildroot
./usr/lib64:
	libdict.so.2 -> libdict.so.2
Verifying ELF objects in /usr/src/tmp/libdict-buildroot (arch=normal,fhs=normal,lfs=relaxed,lint=relaxed,rpath=normal,stack=normal,textrel=normal,unresolved=normal)
Hardlinking identical .pyc and .pyo files
Processing files: libdict-0.3.0-alt1.git20140826
Executing(%doc): /bin/sh -e /usr/src/tmp/rpm-tmp.80615
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd libdict-0.3.0
+ DOCDIR=/usr/src/tmp/libdict-buildroot/usr/share/doc/libdict-0.3.0
+ export DOCDIR
+ rm -rf /usr/src/tmp/libdict-buildroot/usr/share/doc/libdict-0.3.0
+ /bin/mkdir -p /usr/src/tmp/libdict-buildroot/usr/share/doc/libdict-0.3.0
+ cp -prL README.md REFERENCES TODO /usr/src/tmp/libdict-buildroot/usr/share/doc/libdict-0.3.0
+ chmod -R go-w /usr/src/tmp/libdict-buildroot/usr/share/doc/libdict-0.3.0
+ chmod -R a+rX /usr/src/tmp/libdict-buildroot/usr/share/doc/libdict-0.3.0
+ exit 0
Finding Provides (using /usr/lib/rpm/find-provides)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.Ds7xs6
find-provides: running scripts (debuginfo,lib,pam,perl,pkgconfig,python,shell)
lib.prov: /usr/src/tmp/libdict-buildroot/usr/lib64/libdict.so.2: 325 symbols, 19 bpp
Finding Requires (using /usr/lib/rpm/find-requires)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.1Aw1p5
find-requires: running scripts (cpp,debuginfo,files,lib,pam,perl,pkgconfig,pkgconfiglib,python,rpmlib,shebang,shell,static,symlinks)
Provides: libdict.so.2()(64bit) = set:mdQB1AuhvU2ngYnXxAVKSIB6gHAyZq4oQzdN5ZaGnVfh9ZLQAG61U9tDm7zKuJO66nNZg375oc9A6zXlPBohCTZCBpl7h5QZyAuiSFUPkVGnZCEZ0xxV73O8E7k8y0gmiv6nYI3Ui1oZaT0ypmk6DIa7wcFMOcG3kh63vJ0mrGQH777blc0ZtYXBWyj6xhHAEqhNzkFgQPzRaK1tJcVHICif24o7SbHu4HAC6Nb1aW23gGQUTddxdU6h4YwqGpcaWZGNhKdUhyiideXYhSn7XfsZEZL1WzuTIgkF92ZtUPtRMJU1SzDZ4Ge7kcdvWc5kaqnOGutnHqBknot1lN3BuxmVZLedJUJwk4OiZq9kJ4r0mg4OhrKbSaHcz61KHPGcdUs07icpYQZ854CgOpDMLMA3h0dGadZbNx6vrtoxazgt14nKvrsUdLIUEUyGPp1BSZu0g7mopakbESc9CicT9SVuuBXWoRk63jDZF8tOeBK235ZucpA1KxLhIXYNdpcVnFEJRVKEEA8DwIT93Zh2o2roM0pZybeRV2cKxa1DZIrhgvRvFZbK5CBgFsHhOyLdJ8WHEj8sUXEyr9WbU02GuXHgeHJyPVu0VtlVmT3o6yY0ovYehM4PF69gazb0GAdbTDR60nFfNBQffIaQ1CTunsdYgBG1
Requires: libc.so.6(GLIBC_2.14)(64bit), libc.so.6(GLIBC_2.2.5)(64bit), libc.so.6(GLIBC_2.3.4)(64bit), libc.so.6(GLIBC_2.4)(64bit), rtld(GNU_HASH)
Finding debuginfo files (using /usr/lib/rpm/find-debuginfo-files)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.XbCfR7
Processing files: libdict-devel-0.3.0-alt1.git20140826
Finding Provides (using /usr/lib/rpm/find-provides)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.BU8mbe
find-provides: running scripts (debuginfo,lib,pam,perl,pkgconfig,python,shell)
Finding Requires (using /usr/lib/rpm/find-requires)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.iLRHVn
find-requires: running scripts (cpp,debuginfo,files,lib,pam,perl,pkgconfig,pkgconfiglib,python,rpmlib,shebang,shell,static,symlinks)
Requires: libdict = 0.3.0-alt1.git20140826, /usr/lib64/libdict.so.2
Finding debuginfo files (using /usr/lib/rpm/find-debuginfo-files)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.ENdklB
Removing 1 extra deps from libdict-devel due to dependency on libdict
warning: Installed (but unpackaged) file(s) found:
    /usr/lib64/libdict.a
    /usr/lib64/libdict_p.a
Wrote: /usr/src/RPM/RPMS/x86_64/libdict-0.3.0-alt1.git20140826.x86_64.rpm
Wrote: /usr/src/RPM/RPMS/x86_64/libdict-devel-0.3.0-alt1.git20140826.x86_64.rpm
20.29user 2.47system 0:22.54elapsed 101%CPU (0avgtext+0avgdata 40112maxresident)k
0inputs+0outputs (0major+447006minor)pagefaults 0swaps
22.52user 6.81system 0:28.81elapsed 101%CPU (0avgtext+0avgdata 40112maxresident)k
0inputs+0outputs (0major+636762minor)pagefaults 0swaps
--- libdict-0.3.0-alt1.git20140826.x86_64.rpm.repo	2014-09-10 13:04:29.000000000 +0000
+++ libdict-0.3.0-alt1.git20140826.x86_64.rpm.hasher	2019-12-08 03:02:42.809176737 +0000
@@ -8,2 +8,3 @@
 Requires: libc.so.6(GLIBC_2.3.4)(64bit)  
+Requires: libc.so.6(GLIBC_2.4)(64bit)  
 Requires: rtld(GNU_HASH)