commit 7a2222c7f09e34fad3eb3be24a72f7e10bcbedd4 from: Omar Polo via: Thomas Adam date: Tue Feb 07 20:14:55 2023 UTC fix building of few regress after got_object_id_hex was introduced and used in error.c, the building of delta, deltify and path failed due to missing symbols. Spotted by stsp and tracey, ok stsp commit - b102a16b7b8086318a91b9738a1e9055b04622fa commit + 7a2222c7f09e34fad3eb3be24a72f7e10bcbedd4 blob - ed3e1ede4a34e7f539a89738ca6f2d6b40947627 blob + 7c1c0a3a874d31efc8dfdaaf62f35c2f29701ee5 --- regress/delta/Makefile +++ regress/delta/Makefile @@ -1,7 +1,8 @@ .PATH:${.CURDIR}/../../lib PROG = delta_test -SRCS = delta.c error.c opentemp.c path.c inflate.c sha1.c delta_test.c pollfd.c +SRCS = delta.c error.c opentemp.c path.c inflate.c sha1.c delta_test.c \ + pollfd.c object_parse.c CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib LDADD = -lz blob - 3685d581c00c312631e3fc1877509c48999690d4 blob + 31a968efd9dc6f1669b141bb1dfea69b5cc8abbb --- regress/deltify/Makefile +++ regress/deltify/Makefile @@ -1,7 +1,8 @@ .PATH:${.CURDIR}/../../lib PROG = deltify_test -SRCS = deltify.c error.c opentemp.c sha1.c deltify_test.c murmurhash2.c +SRCS = deltify.c error.c opentemp.c sha1.c deltify_test.c murmurhash2.c \ + object_parse.c inflate.c path.c pollfd.c CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib LDADD = -lz blob - 2ea8b5866c6983923940261d1e513e73e8ebdb41 blob + 213cea213945e44b6aa28f0953faf6657f8c5a41 --- regress/path/Makefile +++ regress/path/Makefile @@ -1,7 +1,7 @@ .PATH:${.CURDIR}/../../lib PROG = path_test -SRCS = error.c path.c sha1.c path_test.c +SRCS = error.c path.c sha1.c path_test.c object_parse.c inflate.c pollfd.c CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib LDADD = -lutil -lz