=> Bootstrap dependency digest>=20211023: found digest-20220214
WARNING: [license.mk] Every package should define a LICENSE.
===> Building for depot-5.14
# All started at  Thu Jul 11 15:13:36 UTC 2024
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/man
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/man
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib
mkdir objdir
mkdir build-include
mkdir build-lib
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/include
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c depotlib.h ../build-include/depotlib.h
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c depot_autoconf.h ../build-include/depot_autoconf.h
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c cmu-copyright.h ../build-include/cmu-copyright.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/include
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/util
clang -O -DHAVE_CONFIG_H -I../build-include/  -c file.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c malloc.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c math.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c message.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c passwd.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c string.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c misc.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Error.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c timer.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c compress.c
rm -f libutil.a
ar rv libutil.a file.o malloc.o math.o message.o passwd.o string.o misc.o Error.o timer.o  compress.o
ar: creating archive libutil.a
a - file.o
a - malloc.o
a - math.o
a - message.o
a - passwd.o
a - string.o
a - misc.o
a - Error.o
a - timer.o
a - compress.o
ranlib libutil.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c libutil.a ../build-lib//libutil.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c util.h ../build-include//util.h
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Error.h ../build-include//DepotErrorCodes.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/util
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/FileOps
clang -O -DHAVE_CONFIG_H -I../build-include/  -c File_Copy.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c File_CreateDirectory.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c File_CreateLink.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c File_CreateSymLink.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c File_GetStatus.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c File_Move.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c File_ReadSymLink.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c File_ListDirectory.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c File_ListMatchesinDirectory.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c File_RemoveDirectory.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c File_RemovePath.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c File_SetStatus.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c File_Busy.c
File_Busy.c:62:40: warning: format specifies type 'int' but the argument has type 'time_t' (aka 'long') [-Wformat]
  (void)sprintf(buf,"%s.%d", old_name, time(NULL));
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~
                        %ld
/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk/usr/include/secure/_stdio.h:47:56: note: expanded from macro 'sprintf'
  __builtin___sprintf_chk (str, 0, __darwin_obsz(str), __VA_ARGS__)
                                                       ^~~~~~~~~~~
1 warning generated.
clang -O -DHAVE_CONFIG_H -I../build-include/  -c File_Filter.c
File_Filter.c:122:18: warning: 'vfork' is deprecated: Use posix_spawn or fork [-Wdeprecated-declarations]
    switch(pid = vfork()) {
                 ^
/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk/usr/include/unistd.h:604:1: note: 'vfork' has been explicitly marked deprecated here
__deprecated_msg("Use posix_spawn or fork")
^
/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk/usr/include/sys/cdefs.h:208:48: note: expanded from macro '__deprecated_msg'
        #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                      ^
File_Filter.c:135:24: warning: incompatible pointer types passing 'union wait *' to parameter of type 'int *' [-Wincompatible-pointer-types]
      if (waitpid(pid, &pidstatus, 0) == -1)
                       ^~~~~~~~~~
/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk/usr/include/sys/wait.h:249:29: note: passing argument to parameter here
pid_t   waitpid(pid_t, int *, int) __DARWIN_ALIAS_C(waitpid);
                            ^
2 warnings generated.
rm -f libfile.a
ar rv libfile.a File_Copy.o File_CreateDirectory.o  File_CreateLink.o File_CreateSymLink.o  File_GetStatus.o File_Move.o File_ReadSymLink.o  File_ListDirectory.o File_ListMatchesinDirectory.o  File_RemoveDirectory.o File_RemovePath.o File_SetStatus.o  File_Busy.o File_Filter.o
ar: creating archive libfile.a
a - File_Copy.o
a - File_CreateDirectory.o
a - File_CreateLink.o
a - File_CreateSymLink.o
a - File_GetStatus.o
a - File_Move.o
a - File_ReadSymLink.o
a - File_ListDirectory.o
a - File_ListMatchesinDirectory.o
a - File_RemoveDirectory.o
a - File_RemovePath.o
a - File_SetStatus.o
a - File_Busy.o
a - File_Filter.o
ranlib libfile.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c libfile.a ../build-lib//libfile.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c File.h ../build-include//File.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/FileOps
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/Lock
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Lock.c
rm -f liblock.a
ar rv liblock.a Lock.o
ar: creating archive liblock.a
a - Lock.o
ranlib liblock.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c liblock.a ../build-lib//liblock.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Lock.h ../build-include//Lock.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/Lock
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/FileSystemUtil
clang -O -DHAVE_CONFIG_H -I../build-include/    -c FileSystem_Initialize.c
clang -O -DHAVE_CONFIG_H -I../build-include/    -c FileSystem_GetFSInfo.c
clang -O -DHAVE_CONFIG_H -I../build-include/    -c FileSystem_End.c
clang -O -DHAVE_CONFIG_H -I../build-include/    -c AndrewFileSystem.c
if [ -z "" ]; then  clang -O -DHAVE_CONFIG_H -I../build-include/   -o LibAFS.o -c null.c ; else  ld -r -o LibAFS.o AndrewFileSystem.o ;  fi
rm -f libfilesystemutil.a
ar rv libfilesystemutil.a FileSystem_Initialize.o FileSystem_GetFSInfo.o  FileSystem_End.o LibAFS.o
ar: creating archive libfilesystemutil.a
a - FileSystem_Initialize.o
a - FileSystem_GetFSInfo.o
a - FileSystem_End.o
a - LibAFS.o
ranlib libfilesystemutil.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c libfilesystemutil.a ../build-lib//libfilesystemutil.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c FileSystem.h ../build-include//FileSystem.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/FileSystemUtil
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/FileSystemImage
clang -O -DHAVE_CONFIG_H -I../build-include/  -c FileSystemImage_Read.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c FileSystemImage_Build.c
FileSystemImage_Build.c:92:11: warning: implicit declaration of function 'FileSystem_GetFSInfo' is invalid in C99 [-Wimplicit-function-declaration]
      if (FileSystem_GetFSInfo(path, linkbuf, &fsmodtime) < 0) {
          ^
FileSystemImage_Build.c:261:10: warning: implicit declaration of function 'FileSystem_Initialize' is invalid in C99 [-Wimplicit-function-declaration]
  (void) FileSystem_Initialize();
         ^
FileSystemImage_Build.c:348:10: warning: implicit declaration of function 'FileSystem_End' is invalid in C99 [-Wimplicit-function-declaration]
  (void) FileSystem_End();
         ^
3 warnings generated.
clang -O -DHAVE_CONFIG_H -I../build-include/  -c FileSystemImage_Write.c
FileSystemImage_Write.c:78:23: warning: format specifies type 'int' but the argument has type 'time_t' (aka 'long') [-Wformat]
          fprintf(out, "%d", FILESYSTEMIMAGE_DTime(node));
                        ~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
                        %ld
./FileSystemImage.h:56:35: note: expanded from macro 'FILESYSTEMIMAGE_DTime'
#define FILESYSTEMIMAGE_DTime(fp)       ((fp)->dtime)
                                        ^~~~~~~~~~~~~
FileSystemImage_Write.c:84:21: warning: format specifies type 'int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat]
        fprintf(out, "%d ",FILESYSTEMIMAGE_Size(node));
                      ~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~
                      %zu
./FileSystemImage.h:54:34: note: expanded from macro 'FILESYSTEMIMAGE_Size'
#define FILESYSTEMIMAGE_Size(fp)        ((fp)->size)
                                        ^~~~~~~~~~~~
FileSystemImage_Write.c:86:21: warning: format specifies type 'int' but the argument has type 'time_t' (aka 'long') [-Wformat]
        fprintf(out, "%d", FILESYSTEMIMAGE_MTime(node));
                      ~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
                      %ld
./FileSystemImage.h:55:35: note: expanded from macro 'FILESYSTEMIMAGE_MTime'
#define FILESYSTEMIMAGE_MTime(fp)       ((fp)->mtime)
                                        ^~~~~~~~~~~~~
FileSystemImage_Write.c:101:23: warning: format specifies type 'int' but the argument has type 'unsigned long' [-Wformat]
          fprintf(out, "%d", FILESYSTEMIMAGE_Count(node));
                        ~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
                        %lu
./FileSystemImage.h:57:35: note: expanded from macro 'FILESYSTEMIMAGE_Count'
#define FILESYSTEMIMAGE_Count(fp)       ((fp)->count)
                                        ^~~~~~~~~~~~~
4 warnings generated.
clang -O -DHAVE_CONFIG_H -I../build-include/  -c FileSystemImage_Locate.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c FileSystemImageUtil.c
rm -f libfilesystemimage.a
ar rv libfilesystemimage.a FileSystemImage_Read.o FileSystemImage_Build.o FileSystemImage_Write.o  FileSystemImage_Locate.o FileSystemImageUtil.o
ar: creating archive libfilesystemimage.a
a - FileSystemImage_Read.o
a - FileSystemImage_Build.o
a - FileSystemImage_Write.o
a - FileSystemImage_Locate.o
a - FileSystemImageUtil.o
ranlib libfilesystemimage.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c libfilesystemimage.a ../build-lib//libfilesystemimage.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c FileSystemImage.h ../build-include//FileSystemImage.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/FileSystemImage
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/Hint
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Hint_CollectAllHints.c
Hint_CollectAllHints.c:90:8: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
                            FILESYSTEMIMAGE_FSMountID(fsp));
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../build-include/FileSystemImage.h:60:39: note: expanded from macro 'FILESYSTEMIMAGE_FSMountID'
#define FILESYSTEMIMAGE_FSMountID(fp)   ((fp)->link)
                                        ^
/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk/usr/include/secure/_stdio.h:47:56: note: expanded from macro 'sprintf'
  __builtin___sprintf_chk (str, 0, __darwin_obsz(str), __VA_ARGS__)
                                                       ^~~~~~~~~~~
Hint_CollectAllHints.c:90:8: note: treat the string as an argument to avoid this
                            FILESYSTEMIMAGE_FSMountID(fsp));
                            ^
                            "%s", 
../build-include/FileSystemImage.h:60:39: note: expanded from macro 'FILESYSTEMIMAGE_FSMountID'
#define FILESYSTEMIMAGE_FSMountID(fp)   ((fp)->link)
                                        ^
/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk/usr/include/secure/_stdio.h:47:56: note: expanded from macro 'sprintf'
  __builtin___sprintf_chk (str, 0, __darwin_obsz(str), __VA_ARGS__)
                                                       ^
1 warning generated.
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Hint_CollectPathHints.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c HintDB_GetHint.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c HintDB_GetRelatedHints.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c HintDB_MergeHintDB.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c HintDB_InsertHint.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c HintDB_SetPathPrefix.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c HintDB_UnsetPathPrefix.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c HintDB_Read.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c HintDB_Write.c
HintDB_Write.c:92:24: warning: format specifies type 'int' but the argument has type 'time_t' (aka 'long') [-Wformat]
          fprintf(fp, "%d\n", HINT_ModTime(hintp));
                       ~~     ^~~~~~~~~~~~~~~~~~~
                       %ld
./Hint.h:43:26: note: expanded from macro 'HINT_ModTime'
#define HINT_ModTime(hp) ((hp)->modtime)
                         ^~~~~~~~~~~~~~~
1 warning generated.
clang -O -DHAVE_CONFIG_H -I../build-include/  -c HintUtil.c
HintUtil.c:203:4: warning: format specifies type 'int' but the argument has type 'time_t' (aka 'long') [-Wformat]
          HINT_ModTime(hint));
          ^~~~~~~~~~~~~~~~~~
./Hint.h:43:26: note: expanded from macro 'HINT_ModTime'
#define HINT_ModTime(hp) ((hp)->modtime)
                         ^~~~~~~~~~~~~~~
1 warning generated.
rm -f libhint.a
ar rv libhint.a Hint_CollectAllHints.o Hint_CollectPathHints.o  HintDB_GetHint.o HintDB_GetRelatedHints.o  HintDB_MergeHintDB.o HintDB_InsertHint.o  HintDB_SetPathPrefix.o HintDB_UnsetPathPrefix.o  HintDB_Read.o HintDB_Write.o  HintUtil.o
ar: creating archive libhint.a
a - Hint_CollectAllHints.o
a - Hint_CollectPathHints.o
a - HintDB_GetHint.o
a - HintDB_GetRelatedHints.o
a - HintDB_MergeHintDB.o
a - HintDB_InsertHint.o
a - HintDB_SetPathPrefix.o
a - HintDB_UnsetPathPrefix.o
a - HintDB_Read.o
a - HintDB_Write.o
a - HintUtil.o
ranlib libhint.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c libhint.a ../build-lib//libhint.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Hint.h ../build-include//Hint.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/Hint
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/HintService
clang -O -DHAVE_CONFIG_H -I../build-include/  -c HintService_GetHint.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c HintService_GetRelatedHints.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c HintService_SetHint.c
HintService_SetHint.c:103:9: warning: format specifies type 'int' but the argument has type 'time_t' (aka 'long') [-Wformat]
                      HINT_ModTime(*hp));
                      ^~~~~~~~~~~~~~~~~
../build-include/Hint.h:43:26: note: expanded from macro 'HINT_ModTime'
#define HINT_ModTime(hp) ((hp)->modtime)
                         ^~~~~~~~~~~~~~~
1 warning generated.
clang -O -DHAVE_CONFIG_H -I../build-include/  -c HintService_UnsetRelatedHints.c
HintService_UnsetRelatedHints.c:112:3: warning: format specifies type 'int' but the argument has type 'time_t' (aka 'long') [-Wformat]
                HINT_ModTime(*hp));
                ^~~~~~~~~~~~~~~~~
../build-include/Hint.h:43:26: note: expanded from macro 'HINT_ModTime'
#define HINT_ModTime(hp) ((hp)->modtime)
                         ^~~~~~~~~~~~~~~
1 warning generated.
rm -f libhintservice.a
ar rv libhintservice.a HintService_GetHint.o HintService_GetRelatedHints.o  HintService_SetHint.o HintService_UnsetRelatedHints.o
ar: creating archive libhintservice.a
a - HintService_GetHint.o
a - HintService_GetRelatedHints.o
a - HintService_SetHint.o
a - HintService_UnsetRelatedHints.o
ranlib libhintservice.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c libhintservice.a ../build-lib//libhintservice.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c HintService.h ../build-include//HintService.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/HintService
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/DepotConf
/usr/bin/yacc -d GlobalDepotConf_Read.y
conflicts: 1 shift/reduce
/opt/pkg/bin/nbsed -e 's/yy/GlobalDepotConf_Read_/g' -e 's/YY/GLOBALDEPOTCONF_READ_/g' y.tab.c > GlobalDepotConf_Read.c
/opt/pkg/bin/nbsed -e 's/yy/GlobalDepotConf_Read_/g' -e 's/YY/GLOBALDEPOTCONF_READ_/g' y.tab.h > GlobalDepotConf_Read.h
rm -f y.tab.c y.tab.h
clang -O -DHAVE_CONFIG_H -I../build-include/  -c GlobalDepotConf_Read.c
y.tab.c:1289:35: warning: implicit declaration of function 'GlobalDepotConf_Read_lex' is invalid in C99 [-Wimplicit-function-declaration]
      GlobalDepotConf_Read_char = GLOBALDEPOTCONF_READ_LEX;
                                  ^
y.tab.c:645:35: note: expanded from macro 'GLOBALDEPOTCONF_READ_LEX'
# define GLOBALDEPOTCONF_READ_LEX GlobalDepotConf_Read_lex ()
                                  ^
y.tab.c:1538:7: warning: implicit declaration of function 'GlobalDepotConf_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
      GlobalDepotConf_Read_error (GLOBALDEPOTCONF_READ__("syntax error"));
      ^
y.tab.c:1684:3: warning: implicit declaration of function 'GlobalDepotConf_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
  GlobalDepotConf_Read_error (GLOBALDEPOTCONF_READ__("memory exhausted"));
  ^
GlobalDepotConf_Read.y:189:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
GlobalDepotConf_Read_error(str)
^
GlobalDepotConf_Read.y:194:1: warning: non-void function does not return a value [-Wreturn-type]
}
^
GlobalDepotConf_Read.y:197:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
GlobalDepotConf_Read_wrap()
^
GlobalDepotConf_Read.y:213:3: warning: implicit declaration of function 'GlobalDepotConf_Read_parseinit' is invalid in C99 [-Wimplicit-function-declaration]
  GlobalDepotConf_Read_parseinit();
  ^
7 warnings generated.
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c GlobalDepotConf_Read.o ../objdir//GlobalDepotConf_Read.o
/usr/bin/lex  -l GlobalDepotConf_Parse.l
/opt/pkg/bin/nbsed -e 's/yy/GlobalDepotConf_Read_/g' -e 's/YY/GLOBALDEPOTCONF_READ_/g' lex.yy.c > GlobalDepotConf_Parse.c
rm -f lex.yy.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c GlobalDepotConf_Parse.c
GlobalDepotConf_Parse.l:97:5: warning: implicit declaration of function 'GlobalDepotConf_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
                  GlobalDepotConf_Read_error(GlobalDepotConf_Read_errormessage);
                  ^
GlobalDepotConf_Parse.l:135:5: warning: implicit declaration of function 'GlobalDepotConf_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
                  GlobalDepotConf_Read_error(GlobalDepotConf_Read_errormessage);
                  ^
2 warnings generated.
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c GlobalDepotConf_Parse.o ../objdir//GlobalDepotConf_Parse.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c GlobalDepotConf_Write.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c GlobalDepotConf_Write.o ../objdir//GlobalDepotConf_Write.o
/usr/bin/yacc -d CollectionDepotConf_Read.y
conflicts: 1 shift/reduce
/opt/pkg/bin/nbsed -e 's/yy/CollectionDepotConf_Read_/g' -e 's/YY/COLLECTIONDEPOTCONF_READ_/g' y.tab.c > CollectionDepotConf_Read.c
/opt/pkg/bin/nbsed -e 's/yy/CollectionDepotConf_Read_/g' -e 's/YY/COLLECTIONDEPOTCONF_READ_/g' y.tab.h > CollectionDepotConf_Read.h
rm -f y.tab.c y.tab.h
clang -O -DHAVE_CONFIG_H -I../build-include/  -c CollectionDepotConf_Read.c
y.tab.c:1285:39: warning: implicit declaration of function 'CollectionDepotConf_Read_lex' is invalid in C99 [-Wimplicit-function-declaration]
      CollectionDepotConf_Read_char = COLLECTIONDEPOTCONF_READ_LEX;
                                      ^
y.tab.c:641:39: note: expanded from macro 'COLLECTIONDEPOTCONF_READ_LEX'
# define COLLECTIONDEPOTCONF_READ_LEX CollectionDepotConf_Read_lex ()
                                      ^
y.tab.c:1513:7: warning: implicit declaration of function 'CollectionDepotConf_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
      CollectionDepotConf_Read_error (COLLECTIONDEPOTCONF_READ__("syntax error"));
      ^
y.tab.c:1659:3: warning: implicit declaration of function 'CollectionDepotConf_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
  CollectionDepotConf_Read_error (COLLECTIONDEPOTCONF_READ__("memory exhausted"));
  ^
CollectionDepotConf_Read.y:176:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
CollectionDepotConf_Read_error(str)
^
CollectionDepotConf_Read.y:182:1: warning: non-void function does not return a value [-Wreturn-type]
}
^
CollectionDepotConf_Read.y:185:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
CollectionDepotConf_Read_wrap()
^
CollectionDepotConf_Read.y:204:3: warning: implicit declaration of function 'CollectionDepotConf_Read_parseinit' is invalid in C99 [-Wimplicit-function-declaration]
  CollectionDepotConf_Read_parseinit();
  ^
7 warnings generated.
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c CollectionDepotConf_Read.o ../objdir//CollectionDepotConf_Read.o
/usr/bin/lex  -l CollectionDepotConf_Parse.l
/opt/pkg/bin/nbsed -e 's/yy/CollectionDepotConf_Read_/g' -e 's/YY/COLLECTIONDEPOTCONF_READ_/g' lex.yy.c > CollectionDepotConf_Parse.c
rm -f lex.yy.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c CollectionDepotConf_Parse.c
CollectionDepotConf_Parse.l:168:5: warning: implicit declaration of function 'CollectionDepotConf_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
                  CollectionDepotConf_Read_error(CollectionDepotConf_Read_errormessage);
                  ^
CollectionDepotConf_Parse.l:204:5: warning: implicit declaration of function 'CollectionDepotConf_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
                  CollectionDepotConf_Read_error(CollectionDepotConf_Read_errormessage);
                  ^
2 warnings generated.
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c CollectionDepotConf_Parse.o ../objdir//CollectionDepotConf_Parse.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c CollectionDepotConf_Write.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c CollectionDepotConf_Write.o ../objdir//CollectionDepotConf_Write.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c CollectionDepotConf_AppendGlobalDepotConf.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c CollectionDepotConf_AppendGlobalDepotConf.o ../objdir//CollectionDepotConf_AppendGlobalDepotConf.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c GlobalDepotConf_ExtractCollectionDepotConf.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c GlobalDepotConf_ExtractCollectionDepotConf.o ../objdir//GlobalDepotConf_ExtractCollectionDepotConf.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c DepotConf.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c DepotConf.o ../objdir//DepotConf.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c DepotConfUtil.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c DepotConfUtil.o ../objdir//DepotConfUtil.o
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c DepotConf.h ../build-include//DepotConf.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/DepotConf
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/Preference
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Preference_Lookup.c
Preference_Lookup.c:218:12: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (int) Preference_DefaultValue(PREF_INTEGER);
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:90:26: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRING) ? (int) PREFDEFAULT_STRING : \
                         ^~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:218:12: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (int) Preference_DefaultValue(PREF_INTEGER);
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:91:31: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRINGARRAY) ? (int) PREFDEFAULT_STRINGARRAY : \
                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:218:12: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (int) Preference_DefaultValue(PREF_INTEGER);
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:92:29: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRINGSET) ? (int) PREFDEFAULT_STRINGSET : \
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:218:12: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (int) Preference_DefaultValue(PREF_INTEGER);
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:93:28: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_SENTENCE) ? (int) PREFDEFAULT_SENTENCE : \
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:222:16: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (unsigned) Preference_DefaultValue(PREF_UNSIGNED);
                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:90:26: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRING) ? (int) PREFDEFAULT_STRING : \
                         ^~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:222:16: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (unsigned) Preference_DefaultValue(PREF_UNSIGNED);
                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:91:31: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRINGARRAY) ? (int) PREFDEFAULT_STRINGARRAY : \
                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:222:16: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (unsigned) Preference_DefaultValue(PREF_UNSIGNED);
                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:92:29: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRINGSET) ? (int) PREFDEFAULT_STRINGSET : \
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:222:16: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (unsigned) Preference_DefaultValue(PREF_UNSIGNED);
                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:93:28: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_SENTENCE) ? (int) PREFDEFAULT_SENTENCE : \
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:226:15: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (Boolean) Preference_DefaultValue(PREF_BOOLEAN);
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:90:26: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRING) ? (int) PREFDEFAULT_STRING : \
                         ^~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:226:15: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (Boolean) Preference_DefaultValue(PREF_BOOLEAN);
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:91:31: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRINGARRAY) ? (int) PREFDEFAULT_STRINGARRAY : \
                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:226:15: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (Boolean) Preference_DefaultValue(PREF_BOOLEAN);
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:92:29: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRINGSET) ? (int) PREFDEFAULT_STRINGSET : \
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:226:15: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (Boolean) Preference_DefaultValue(PREF_BOOLEAN);
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:93:28: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_SENTENCE) ? (int) PREFDEFAULT_SENTENCE : \
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:230:14: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (char *) Preference_DefaultValue(PREF_STRING);
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:90:26: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRING) ? (int) PREFDEFAULT_STRING : \
                         ^~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:230:14: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (char *) Preference_DefaultValue(PREF_STRING);
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:91:31: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRINGARRAY) ? (int) PREFDEFAULT_STRINGARRAY : \
                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:230:14: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (char *) Preference_DefaultValue(PREF_STRING);
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:92:29: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRINGSET) ? (int) PREFDEFAULT_STRINGSET : \
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:230:14: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (char *) Preference_DefaultValue(PREF_STRING);
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:93:28: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_SENTENCE) ? (int) PREFDEFAULT_SENTENCE : \
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:230:5: warning: cast to 'char *' from smaller integer type 'int' [-Wint-to-pointer-cast]
                = (char *) Preference_DefaultValue(PREF_STRING);
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:234:21: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (STRINGARRAY *) Preference_DefaultValue(PREF_STRINGARRAY);
                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:90:26: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRING) ? (int) PREFDEFAULT_STRING : \
                         ^~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:234:21: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (STRINGARRAY *) Preference_DefaultValue(PREF_STRINGARRAY);
                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:91:31: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRINGARRAY) ? (int) PREFDEFAULT_STRINGARRAY : \
                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:234:21: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (STRINGARRAY *) Preference_DefaultValue(PREF_STRINGARRAY);
                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:92:29: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRINGSET) ? (int) PREFDEFAULT_STRINGSET : \
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:234:21: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (STRINGARRAY *) Preference_DefaultValue(PREF_STRINGARRAY);
                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:93:28: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_SENTENCE) ? (int) PREFDEFAULT_SENTENCE : \
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:234:5: warning: cast to 'STRINGARRAY *' (aka 'struct stringarray *') from smaller integer type 'int' [-Wint-to-pointer-cast]
                = (STRINGARRAY *) Preference_DefaultValue(PREF_STRINGARRAY);
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:238:19: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (STRINGSET *) Preference_DefaultValue(PREF_STRINGSET);
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:90:26: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRING) ? (int) PREFDEFAULT_STRING : \
                         ^~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:238:19: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (STRINGSET *) Preference_DefaultValue(PREF_STRINGSET);
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:91:31: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRINGARRAY) ? (int) PREFDEFAULT_STRINGARRAY : \
                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:238:19: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (STRINGSET *) Preference_DefaultValue(PREF_STRINGSET);
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:92:29: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRINGSET) ? (int) PREFDEFAULT_STRINGSET : \
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:238:19: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (STRINGSET *) Preference_DefaultValue(PREF_STRINGSET);
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:93:28: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_SENTENCE) ? (int) PREFDEFAULT_SENTENCE : \
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:238:5: warning: cast to 'STRINGSET *' (aka 'struct stringarray *') from smaller integer type 'int' [-Wint-to-pointer-cast]
                = (STRINGSET *) Preference_DefaultValue(PREF_STRINGSET);
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:242:19: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (SENTENCE *)  Preference_DefaultValue(PREF_SENTENCE);
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:90:26: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRING) ? (int) PREFDEFAULT_STRING : \
                         ^~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:242:19: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (SENTENCE *)  Preference_DefaultValue(PREF_SENTENCE);
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:91:31: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRINGARRAY) ? (int) PREFDEFAULT_STRINGARRAY : \
                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:242:19: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (SENTENCE *)  Preference_DefaultValue(PREF_SENTENCE);
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:92:29: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_STRINGSET) ? (int) PREFDEFAULT_STRINGSET : \
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:242:19: warning: cast to smaller integer type 'int' from 'void *' [-Wvoid-pointer-to-int-cast]
                = (SENTENCE *)  Preference_DefaultValue(PREF_SENTENCE);
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Preference.h:93:28: note: expanded from macro 'Preference_DefaultValue'
   ((x) & PREF_SENTENCE) ? (int) PREFDEFAULT_SENTENCE : \
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~
Preference_Lookup.c:242:5: warning: cast to 'SENTENCE *' (aka 'struct stringarray *') from smaller integer type 'int' [-Wint-to-pointer-cast]
                = (SENTENCE *)  Preference_DefaultValue(PREF_SENTENCE);
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
32 warnings generated.
clang -O -DHAVE_CONFIG_H -I../build-include/  -c PreferenceUtil.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c PreferenceDBUtil.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Preference_Set.c
Preference_Set.c:218:9: warning: add explicit braces to avoid dangling else [-Wdangling-else]
      } else {
        ^
1 warning generated.
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Preference_Get.c
/usr/bin/yacc -d Preference_Read.y
conflicts: 20 shift/reduce
/opt/pkg/bin/nbsed -e 's/yy/Preference_Read_/g' -e 's/YY/PREFERENCE_READ_/g' y.tab.c > Preference_Read.c
/opt/pkg/bin/nbsed -e 's/yy/Preference_Read_/g' -e 's/YY/PREFERENCE_READ_/g' y.tab.h > Preference_Read.h
rm -f y.tab.c y.tab.h
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Preference_Read.c
y.tab.c:1386:30: warning: implicit declaration of function 'Preference_Read_lex' is invalid in C99 [-Wimplicit-function-declaration]
      Preference_Read_char = PREFERENCE_READ_LEX;
                             ^
y.tab.c:742:30: note: expanded from macro 'PREFERENCE_READ_LEX'
# define PREFERENCE_READ_LEX Preference_Read_lex ()
                             ^
y.tab.c:1896:7: warning: implicit declaration of function 'Preference_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
      Preference_Read_error (PREFERENCE_READ__("syntax error"));
      ^
y.tab.c:2042:3: warning: implicit declaration of function 'Preference_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
  Preference_Read_error (PREFERENCE_READ__("memory exhausted"));
  ^
Preference_Read.y:451:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
Preference_Read_error(str)
^
Preference_Read.y:457:1: warning: non-void function does not return a value [-Wreturn-type]
}
^
Preference_Read.y:460:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
Preference_Read_wrap()
^
Preference_Read.y:476:3: warning: implicit declaration of function 'Preference_Read_parseinit' is invalid in C99 [-Wimplicit-function-declaration]
  Preference_Read_parseinit();
  ^
7 warnings generated.
/usr/bin/lex  -l Preference_Parse.l
/opt/pkg/bin/nbsed -e 's/yy/Preference_Read_/g' -e 's/YY/PREFERENCE_READ_/g' lex.yy.c > Preference_Parse.c
rm -f lex.yy.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Preference_Parse.c
Preference_Parse.l:223:5: warning: implicit declaration of function 'Preference_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
                  Preference_Read_error(Preference_Read_errormessage);
                  ^
Preference_Parse.l:247:5: warning: implicit declaration of function 'Preference_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
                  Preference_Read_error(Preference_Read_errormessage);
                  ^
Preference_Parse.l:255:8: warning: implicit declaration of function 'Preference_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
              Preference_Read_error(Preference_Read_errormessage);
              ^
Preference_Parse.l:285:5: warning: implicit declaration of function 'Preference_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
                  Preference_Read_error(Preference_Read_errormessage);
                  ^
Preference_Parse.l:309:5: warning: implicit declaration of function 'Preference_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
                  Preference_Read_error(Preference_Read_errormessage);
                  ^
Preference_Parse.l:317:8: warning: implicit declaration of function 'Preference_Read_error' is invalid in C99 [-Wimplicit-function-declaration]
              Preference_Read_error(Preference_Read_errormessage);
              ^
6 warnings generated.
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Preference_Write.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Preference_Diff.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Preference_CompoundGet.c
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Preference_Depot.c
rm -f libpreference.a
ar rv libpreference.a Preference_Lookup.o PreferenceUtil.o PreferenceDBUtil.o  Preference_Set.o Preference_Get.o Preference_Read.o Preference_Parse.o Preference_Write.o  Preference_Diff.o Preference_CompoundGet.o  Preference_Depot.o
ar: creating archive libpreference.a
a - Preference_Lookup.o
a - PreferenceUtil.o
a - PreferenceDBUtil.o
a - Preference_Set.o
a - Preference_Get.o
a - Preference_Read.o
a - Preference_Parse.o
a - Preference_Write.o
a - Preference_Diff.o
a - Preference_CompoundGet.o
a - Preference_Depot.o
ranlib libpreference.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c libpreference.a ../build-lib//libpreference.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Preference.h ../build-include//Preference.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/Preference
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/TargetDB
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_Read.c
TargetDB_Read.c:453:8: warning: 'vfork' is deprecated: Use posix_spawn or fork [-Wdeprecated-declarations]
        pid = vfork();
              ^
/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk/usr/include/unistd.h:604:1: note: 'vfork' has been explicitly marked deprecated here
__deprecated_msg("Use posix_spawn or fork")
^
/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk/usr/include/sys/cdefs.h:208:48: note: expanded from macro '__deprecated_msg'
        #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                      ^
TargetDB_Read.c:483:7: warning: incompatible pointer types passing 'union wait *' to parameter of type 'int *' [-Wincompatible-pointer-types]
        wait(&ExecStatus);
             ^~~~~~~~~~~
/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk/usr/include/sys/wait.h:248:19: note: passing argument to parameter here
pid_t   wait(int *) __DARWIN_ALIAS_C(wait);
                  ^
2 warnings generated.
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_Read.o ../objdir//TargetDB_Read.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_Write.c
TargetDB_Write.c:295:8: warning: 'vfork' is deprecated: Use posix_spawn or fork [-Wdeprecated-declarations]
        pid = vfork();
              ^
/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk/usr/include/unistd.h:604:1: note: 'vfork' has been explicitly marked deprecated here
__deprecated_msg("Use posix_spawn or fork")
^
/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk/usr/include/sys/cdefs.h:208:48: note: expanded from macro '__deprecated_msg'
        #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                      ^
TargetDB_Write.c:325:7: warning: incompatible pointer types passing 'union wait *' to parameter of type 'int *' [-Wincompatible-pointer-types]
        wait(&ExecStatus);
             ^~~~~~~~~~~
/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk/usr/include/sys/wait.h:248:19: note: passing argument to parameter here
pid_t   wait(int *) __DARWIN_ALIAS_C(wait);
                  ^
2 warnings generated.
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_Write.o ../objdir//TargetDB_Write.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_Locate.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_Locate.o ../objdir//TargetDB_Locate.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_Delete.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_Delete.o ../objdir//TargetDB_Delete.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_Merge.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_Merge.o ../objdir//TargetDB_Merge.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_Obsolete.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_Obsolete.o ../objdir//TargetDB_Obsolete.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_Prune.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_Prune.o ../objdir//TargetDB_Prune.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_SortByOverrides.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_SortByOverrides.o ../objdir//TargetDB_SortByOverrides.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_Conflict.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_Conflict.o ../objdir//TargetDB_Conflict.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_Apply.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_Apply.o ../objdir//TargetDB_Apply.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_Check.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_Check.o ../objdir//TargetDB_Check.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_Update.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_Update.o ../objdir//TargetDB_Update.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_CreateTargetPath.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_CreateTargetPath.o ../objdir//TargetDB_CreateTargetPath.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_Special.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_Special.o ../objdir//TargetDB_Special.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_SetTargetMappings.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_SetTargetMappings.o ../objdir//TargetDB_SetTargetMappings.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_SetTargetFileStatus.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_SetTargetFileStatus.o ../objdir//TargetDB_SetTargetFileStatus.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDB_Command.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB_Command.o ../objdir//TargetDB_Command.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c TargetDBUtil.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDBUtil.o ../objdir//TargetDBUtil.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c SourceList_Merge.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c SourceList_Merge.o ../objdir//SourceList_Merge.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c SourceList_Find.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c SourceList_Find.o ../objdir//SourceList_Find.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c SourceList_Prune.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c SourceList_Prune.o ../objdir//SourceList_Prune.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c SourceList_SortByOverrides.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c SourceList_SortByOverrides.o ../objdir//SourceList_SortByOverrides.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c SourceList_Conflict.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c SourceList_Conflict.o ../objdir//SourceList_Conflict.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c SourceListUtil.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c SourceListUtil.o ../objdir//SourceListUtil.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -I../../lib/Collection -I../../lib/CollectionList  -c SourceUtil.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c SourceUtil.o ../objdir//SourceUtil.o
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c TargetDB.h ../build-include//TargetDB.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/TargetDB
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/Collection
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Collection_LocatePath.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c  Collection_LocatePath.o  ../objdir/Collection_LocatePath.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Collection_PathMap.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Collection_PathMap.o ../objdir/Collection_PathMap.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Collection_TargetSourceFromFileStatus.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Collection_TargetSourceFromFileStatus.o ../objdir/Collection_TargetSourceFromFileStatus.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Collection_FSImageMap.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Collection_FSImageMap.o ../objdir/Collection_FSImageMap.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Collection_TargetSourceFromFSImage.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Collection_TargetSourceFromFSImage.o ../objdir/Collection_TargetSourceFromFSImage.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Collection_DeleteTarget.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Collection_DeleteTarget.o ../objdir/Collection_DeleteTarget.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Collection_CommandTarget.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Collection_CommandTarget.o ../objdir/Collection_CommandTarget.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Collection_TargetDBGenerate.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Collection_TargetDBGenerate.o ../objdir/Collection_TargetDBGenerate.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Collection_TargetDB.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Collection_TargetDB.o ../objdir/Collection_TargetDB.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Collection_TargetSource.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Collection_TargetSource.o ../objdir/Collection_TargetSource.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c CollectionUtil.c
CollectionUtil.c:63:8: warning: extra tokens at end of #endif directive [-Wextra-tokens]
#endif 0
       ^
       //
1 warning generated.
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c CollectionUtil.o ../objdir/CollectionUtil.o
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Collection.h ../build-include//Collection.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/Collection
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/CollectionList
clang -O -DHAVE_CONFIG_H -I../build-include/  -c CollectionList_Read.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c CollectionList_Read.o ../objdir//CollectionList_Read.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c CollectionList_Write.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c CollectionList_Write.o ../objdir//CollectionList_Write.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c CollectionList_SetCollectionStatus.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c CollectionList_SetCollectionStatus.o ../objdir//CollectionList_SetCollectionStatus.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c CollectionListUtil.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c CollectionListUtil.o ../objdir//CollectionListUtil.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c CollectionList_LocateCollection.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c CollectionList_LocateCollection.o ../objdir//CollectionList_LocateCollection.o
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c CollectionList.h ../build-include//CollectionList.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/CollectionList
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/Command
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Command_Build.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Command_Build.o ../objdir//Command_Build.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c Command_Run.c
Command_Run.c:59:11: warning: 'vfork' is deprecated: Use posix_spawn or fork [-Wdeprecated-declarations]
    pid = vfork();
          ^
/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk/usr/include/unistd.h:604:1: note: 'vfork' has been explicitly marked deprecated here
__deprecated_msg("Use posix_spawn or fork")
^
/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk/usr/include/sys/cdefs.h:208:48: note: expanded from macro '__deprecated_msg'
        #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
                                                      ^
Command_Run.c:74:10: warning: incompatible pointer types passing 'union wait *' to parameter of type 'int *' [-Wincompatible-pointer-types]
    wait(&ExecStatus);
         ^~~~~~~~~~~
/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk/usr/include/sys/wait.h:248:19: note: passing argument to parameter here
pid_t   wait(int *) __DARWIN_ALIAS_C(wait);
                  ^
2 warnings generated.
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Command_Run.o ../objdir//Command_Run.o
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Command.h ../build-include//Command.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/Command
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/DepotDB
clang -O -DHAVE_CONFIG_H -I../build-include/  -c DepotDB_OpenClose.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c DepotDB_OpenClose.o ../objdir/DepotDB_OpenClose.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c DepotDB_Read.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c DepotDB_Read.o ../objdir/DepotDB_Read.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c DepotDB_ReadPreliminaryInfo.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c DepotDB_ReadPreliminaryInfo.o ../objdir/DepotDB_ReadPreliminaryInfo.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c DepotDB_CollectionList_Read.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c DepotDB_CollectionList_Read.o ../objdir/DepotDB_CollectionList_Read.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c DepotDB_DepotConfDB_Read.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c DepotDB_DepotConfDB_Read.o ../objdir/DepotDB_DepotConfDB_Read.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c DepotDB_PreferenceDB_Read.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c DepotDB_PreferenceDB_Read.o ../objdir/DepotDB_PreferenceDB_Read.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c DepotDB_TargetDB_Read.c
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c DepotDB_TargetDB_Read.o ../objdir/DepotDB_TargetDB_Read.o
clang -O -DHAVE_CONFIG_H -I../build-include/  -c DepotDB_Write.c
DepotDB_Write.c:150:8: warning: format specifies type 'int' but the argument has type 'long' [-Wformat]
              PreferenceDBOffset, DepotConfDBOffset,
              ^~~~~~~~~~~~~~~~~~
DepotDB_Write.c:150:28: warning: format specifies type 'int' but the argument has type 'long' [-Wformat]
              PreferenceDBOffset, DepotConfDBOffset,
                                  ^~~~~~~~~~~~~~~~~
DepotDB_Write.c:151:8: warning: format specifies type 'int' but the argument has type 'long' [-Wformat]
              CollectionListOffset, TargetDBOffset);
              ^~~~~~~~~~~~~~~~~~~~
DepotDB_Write.c:151:30: warning: format specifies type 'int' but the argument has type 'long' [-Wformat]
              CollectionListOffset, TargetDBOffset);
                                    ^~~~~~~~~~~~~~
4 warnings generated.
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c DepotDB_Write.o ../objdir/DepotDB_Write.o
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c DepotDB.h ../build-include//DepotDB.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/DepotDB
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/Depot
clang -O -DHAVE_CONFIG_H  -I../build-include/  -c Depot.c
clang -O -DHAVE_CONFIG_H  -I../build-include/  -c Depot_RunMode.c
clang -O -DHAVE_CONFIG_H  -I../build-include/  -c Depot_CollectionUtil.c
rm -f libdepot.a
ar rv libdepot.a Depot.o Depot_RunMode.o	Depot_CollectionUtil.o
ar: creating archive libdepot.a
a - Depot.o
a - Depot_RunMode.o
a - Depot_CollectionUtil.o
ranlib libdepot.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c libdepot.a ../build-lib//libdepot.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c Depot.h ../build-include//Depot.h
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c config.h ../build-include//config.h
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c DepotUtil.h ../build-include//DepotUtil.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/Depot
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/DepotQuery
clang -O -DHAVE_CONFIG_H -I../build-include/  -c DepotQuery_CollectionInfo.c
rm -f libdepotquery.a
ar rv libdepotquery.a DepotQuery_CollectionInfo.o
ar: creating archive libdepotquery.a
a - DepotQuery_CollectionInfo.o
ranlib libdepotquery.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c libdepotquery.a ../build-lib//libdepotquery.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c DepotQuery.h ../build-include//DepotQuery.h
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/DepotQuery
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/libgen
rm -f libdepotdb.a
ar rv libdepotdb.a ../objdir/*.o
ar: creating archive libdepotdb.a
a - ../objdir/CollectionDepotConf_AppendGlobalDepotConf.o
a - ../objdir/CollectionDepotConf_Parse.o
a - ../objdir/CollectionDepotConf_Read.o
a - ../objdir/CollectionDepotConf_Write.o
a - ../objdir/CollectionListUtil.o
a - ../objdir/CollectionList_LocateCollection.o
a - ../objdir/CollectionList_Read.o
a - ../objdir/CollectionList_SetCollectionStatus.o
a - ../objdir/CollectionList_Write.o
a - ../objdir/CollectionUtil.o
a - ../objdir/Collection_CommandTarget.o
a - ../objdir/Collection_DeleteTarget.o
a - ../objdir/Collection_FSImageMap.o
a - ../objdir/Collection_LocatePath.o
a - ../objdir/Collection_PathMap.o
a - ../objdir/Collection_TargetDB.o
a - ../objdir/Collection_TargetDBGenerate.o
a - ../objdir/Collection_TargetSource.o
a - ../objdir/Collection_TargetSourceFromFSImage.o
a - ../objdir/Collection_TargetSourceFromFileStatus.o
a - ../objdir/Command_Build.o
a - ../objdir/Command_Run.o
a - ../objdir/DepotConf.o
a - ../objdir/DepotConfUtil.o
a - ../objdir/DepotDB_CollectionList_Read.o
a - ../objdir/DepotDB_DepotConfDB_Read.o
a - ../objdir/DepotDB_OpenClose.o
a - ../objdir/DepotDB_PreferenceDB_Read.o
a - ../objdir/DepotDB_Read.o
a - ../objdir/DepotDB_ReadPreliminaryInfo.o
a - ../objdir/DepotDB_TargetDB_Read.o
a - ../objdir/DepotDB_Write.o
a - ../objdir/GlobalDepotConf_ExtractCollectionDepotConf.o
a - ../objdir/GlobalDepotConf_Parse.o
a - ../objdir/GlobalDepotConf_Read.o
a - ../objdir/GlobalDepotConf_Write.o
a - ../objdir/SourceListUtil.o
a - ../objdir/SourceList_Conflict.o
a - ../objdir/SourceList_Find.o
a - ../objdir/SourceList_Merge.o
a - ../objdir/SourceList_Prune.o
a - ../objdir/SourceList_SortByOverrides.o
a - ../objdir/SourceUtil.o
a - ../objdir/TargetDBUtil.o
a - ../objdir/TargetDB_Apply.o
a - ../objdir/TargetDB_Check.o
a - ../objdir/TargetDB_Command.o
a - ../objdir/TargetDB_Conflict.o
a - ../objdir/TargetDB_CreateTargetPath.o
a - ../objdir/TargetDB_Delete.o
a - ../objdir/TargetDB_Locate.o
a - ../objdir/TargetDB_Merge.o
a - ../objdir/TargetDB_Obsolete.o
a - ../objdir/TargetDB_Prune.o
a - ../objdir/TargetDB_Read.o
a - ../objdir/TargetDB_SetTargetFileStatus.o
a - ../objdir/TargetDB_SetTargetMappings.o
a - ../objdir/TargetDB_SortByOverrides.o
a - ../objdir/TargetDB_Special.o
a - ../objdir/TargetDB_Update.o
a - ../objdir/TargetDB_Write.o
ranlib libdepotdb.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c libdepotdb.a ../build-lib//libdepotdb.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c MasterDepotDB.h ../build-include/
./newvers
clang -O     -c vers.c
rm -f libdepotversion.a
ar rv libdepotversion.a vers.o
ar: creating archive libdepotversion.a
a - vers.o
ranlib libdepotversion.a
/Users/pbulk/build/sysutils/depot/work/.tools/bin/install -c libdepotversion.a ../build-lib//libdepotversion.a
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib/libgen
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/lib
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/cmd
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/cmd/fsi_generate
clang -O -DHAVE_CONFIG_H -I../../lib/build-include   -c fsi_generate.c
fsi_generate.c:57:28: warning: implicit declaration of function 'getversion_libdepot' is invalid in C99 [-Wimplicit-function-declaration]
  (void)fprintf(fp,"%s\n", getversion_libdepot());
                           ^
fsi_generate.c:57:28: warning: format specifies type 'char *' but the argument has type 'int' [-Wformat]
  (void)fprintf(fp,"%s\n", getversion_libdepot());
                    ~~     ^~~~~~~~~~~~~~~~~~~~~
                    %d
fsi_generate.c:62:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
main(argc, argv)
^
3 warnings generated.
clang -O -o fsi_generate fsi_generate.o ../../lib/build-lib/libfilesystemimage.a  ../../lib/build-lib/libfilesystemutil.a  ../../lib/build-lib/libfile.a  ../../lib/build-lib/libutil.a  ../../lib/build-lib/libdepotversion.a  
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/cmd/fsi_generate
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/cmd/hintservice
clang -O -DHAVE_CONFIG_H -I../../lib/build-include/   -c hintservice.c
hintservice.c:66:30: warning: implicit declaration of function 'getversion_libdepot' is invalid in C99 [-Wimplicit-function-declaration]
  (void) fprintf(fp, "%s\n", getversion_libdepot());
                             ^
hintservice.c:66:30: warning: format specifies type 'char *' but the argument has type 'int' [-Wformat]
  (void) fprintf(fp, "%s\n", getversion_libdepot());
                      ~~     ^~~~~~~~~~~~~~~~~~~~~
                      %d
hintservice.c:76:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
main(argc, argv)
^
3 warnings generated.
clang -O -DHAVE_CONFIG_H -I../../lib/build-include/  -o hintservice hintservice.o -L../../lib/build-lib/ -lhintservice  -lhint  -lfilesystemimage  -lfilesystemutil  -lfile  -lutil  -ldepotversion  
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/cmd/hintservice
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/cmd/depot
clang -O -DHAVE_CONFIG_H -I../../lib/build-include/  -c depot.c
clang -O -o depot depot.o ../../lib/build-lib//libdepot.a  ../../lib/build-lib//libdepotdb.a  ../../lib/build-lib//libpreference.a  ../../lib/build-lib//libhint.a  ../../lib/build-lib//libhintservice.a  ../../lib/build-lib//libfilesystemimage.a  ../../lib/build-lib//libfile.a  ../../lib/build-lib//liblock.a  ../../lib/build-lib//libutil.a  ../../lib/build-lib//libdepotversion.a 
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/cmd/depot
### Making all in /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/cmd/depot_collectioninfo
clang -O -DHAVE_CONFIG_H -I../../lib/build-include/  -c depot_getcollectioninfo.c
depot_getcollectioninfo.c:71:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
main(argc, argv)
^
1 warning generated.
clang -O -o depot_getcollectioninfo depot_getcollectioninfo.o -L../../lib/build-lib/ -ldepotquery  -ldepotdb  -lpreference  -lhint  -lfilesystemimage -lfile  -lutil  -ldepotversion 
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/cmd/depot_collectioninfo
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src/cmd
### Done with /Users/pbulk/build/sysutils/depot/work/depot-5.14/src
# All finished at  Thu Jul 11 15:13:50 UTC 2024