From 7bd3eb3b1ad4209ac4cf4b46f849213d46bc33aa Mon Sep 17 00:00:00 2001 From: David Timber Date: Mon, 17 Aug 2020 18:16:49 +0930 Subject: Employ pthsem ... * Use uint8_t array for hardcoded binary data * Add proone-ipaddr-arr to hardcode DoT servers * Convert X509 data * Brought back M68k and ARC archs just in case * Add CLOCK_REALTIME in prne_mbedtls_entropy_proc_src_f for more entropy * Remove installation of signal handlers. Use sigwait() instead * Bugfix: prne_rnd_anum_str() returned null characters * Add prne_dbgpf() and prne_dbgperr() * prne_assert(): put errno into a register so it's visible in the core dump --- src/Makefile.am | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index cbd1fd1..2c320a2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -15,7 +15,8 @@ bin_PROGRAMS =\ proone-mask\ proone-print-all-data\ proone-resolv\ - proone-stress + proone-stress\ + proone-ipaddr-arr libproone_a_SOURCES =\ config.c\ @@ -28,8 +29,8 @@ libproone_a_SOURCES =\ iset.c\ imap.c\ mbedtls.c\ - worker.c\ - resolv_worker.c + pth.c\ + resolv.c proone_LDFLAGS = -static proone_LDADD = libproone.a @@ -60,6 +61,8 @@ proone_resolv_LDADD = libproone.a proone_resolv_LDFLAGS = proone_resolv_SOURCES = proone-resolv.c +proone_ipaddr_arr_SOURCES = proone-ipaddr-arr.c + proone_stress_LDADD = libproone.a proone_stress_LDFLAGS = -static proone_stress_SOURCES = proone-stress.c -- cgit