You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
13 lines
540 B
Diff
13 lines
540 B
Diff
Fix:
|
|
configure:1959:67: error: implicitly declaring library function 'exit' with type 'void (int) __attribute__((noreturn))' [-Werror,-Wimplicit-function-declaration]
|
|
--- configure.orig 2000-05-04 16:04:15.000000000 -0500
|
|
+++ configure 2022-03-04 04:35:17.000000000 -0600
|
|
@@ -1952,6 +1952,7 @@
|
|
#line 1953 "configure"
|
|
#include "confdefs.h"
|
|
#include <ctype.h>
|
|
+#include <stdlib.h>
|
|
#define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
|
|
#define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
|
|
#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
|