mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
Build and install dynamic library in addition to static library. Fix permissions in extracted directory for easier development. Fix implicit declaration of functions. Fix undefined symbols in i386 build by not declaring functions inline. Modernize checksums.
13 lines
528 B
Diff
13 lines
528 B
Diff
Fix:
|
|
conftest.c:26:7: error: implicitly declaring library function 'exit' with type 'void (int) __attribute__((noreturn))' [-Werror,-Wimplicit-function-declaration]
|
|
--- configure.orig 2006-05-01 12:14:51.000000000 -0500
|
|
+++ configure 2021-07-29 11:48:19.000000000 -0500
|
|
@@ -2892,6 +2892,7 @@
|
|
cat >>conftest.$ac_ext <<_ACEOF
|
|
/* end confdefs.h. */
|
|
#include <ctype.h>
|
|
+#include <stdlib.h>
|
|
#if ((' ' & 0x0FF) == 0x020)
|
|
# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
|
|
# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
|