DEFMAXLOCAL unused since 2007 'kill local/jobs distinction. Correctly this time...' https://github.com/openbsd/src/commit/f01cd4cc8e1908cec38b82298fe3fc96c7421321
RANLIBMAG unused since 2012 'more changes, discussed and tested by various people' https://github.com/openbsd/src/commit/1bae8e1fd6d14563435f62552acb95dc3149819a Index: config.h =================================================================== RCS file: /cvs/src/usr.bin/make/config.h,v retrieving revision 1.20 diff -u -p -r1.20 config.h --- config.h 18 Oct 2014 07:50:06 -0000 1.20 +++ config.h 7 Dec 2021 07:10:38 -0000 @@ -44,15 +44,10 @@ /* * DEFMAXJOBS - * DEFMAXLOCAL - * These control the default concurrency. On no occasion will more - * than DEFMAXJOBS targets be created at once (locally or remotely) - * DEFMAXLOCAL is the highest number of targets which will be - * created on the local machine at once. Note that if you set this - * to 0, nothing will ever happen... + * This controls the default concurrency. On no occasion will more + * than DEFMAXJOBS targets be created at once. */ #define DEFMAXJOBS 4 -#define DEFMAXLOCAL 1 /* * SYSVINCLUDE @@ -71,12 +66,6 @@ * # of ${VAR} */ #define SUNSHCMD - -#if !defined(__svr4__) && !defined(__SVR4) && !defined(__ELF__) -# ifndef RANLIBMAG -# define RANLIBMAG "__.SYMDEF" -# endif -#endif #ifdef HAS_EXTENDED_GETCWD #define dogetcwd() getcwd(NULL, 0)