summaryrefslogtreecommitdiff
path: root/usr.bin/make
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2022-01-05 02:00:56 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2022-01-05 02:00:56 +0000
commit551e71f752c770d58fb16102ccba0fd6960a46a4 (patch)
tree11ed0b4ffabb2f37bd6d52ad8199d8872f764d1d /usr.bin/make
parentac50c513f9a343677d0a99abcee4f23c64677149 (diff)
remove unused defines
ok gnezdo@
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/config.h17
1 files changed, 3 insertions, 14 deletions
diff --git a/usr.bin/make/config.h b/usr.bin/make/config.h
index 3dc913fd54e..f077d968124 100644
--- a/usr.bin/make/config.h
+++ b/usr.bin/make/config.h
@@ -1,7 +1,7 @@
#ifndef CONFIG_H
#define CONFIG_H
-/* $OpenBSD: config.h,v 1.20 2014/10/18 07:50:06 espie Exp $ */
+/* $OpenBSD: config.h,v 1.21 2022/01/05 02:00:55 jsg Exp $ */
/* $NetBSD: config.h,v 1.7 1996/11/06 17:59:03 christos Exp $ */
/*
@@ -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
@@ -72,12 +67,6 @@
*/
#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)
#else