*** ./Makefile.ORIG Wed Apr 20 21:30:02 2016 --- ./Makefile Wed Apr 20 21:30:22 2016 *************** *** 161,166 **** --- 161,168 ---- LIBS += -lpthread -ldl -lrt CPPFLAGS += -D_LARGE_FILES -D__ppc__ LDFLAGS += -L/opt/freeware/lib -Wl,-blibpath:/opt/freeware/lib:/usr/lib:/lib -Wl,-bmaxdata:0x80000000 + SOURCE += oslib/strcasestr.c + T_ZIPF_OBJS += oslib/strcasestr.o endif ifeq ($(CONFIG_TARGET_OS), HP-UX) LIBS += -lpthread -ldl -lrt *** ./gettime.h.ORIG Mon Apr 30 12:13:17 2018 --- ./gettime.h Mon Apr 30 12:13:40 2018 *************** *** 1,6 **** --- 1,9 ---- #ifndef FIO_GETTIME_H #define FIO_GETTIME_H + #ifdef _AIX + #include + #endif #include #include "arch/arch.h" *** ./verify.c.ORIG Tue Jun 18 00:29:17 2019 --- ./verify.c Tue Jun 18 00:29:40 2019 *************** *** 240,245 **** --- 240,249 ---- unsigned int crc_len; }; + #ifndef asprintf + extern int asprintf(char **strp, const char *fmt, ...); + #endif + #define DUMP_BUF_SZ 255 static void dump_buf(char *buf, unsigned int len, unsigned long long offset,