-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
jags: Use bundled ltdl; fix implicit func decl
Use bundled libtool dynamic loader instead of MacPosts copy. Closes: https://trac.macports.org/ticket/72052 Fix implicit declaration of function exit. Ignore expected implicit declaration of function strchr.
- Loading branch information
1 parent
629c582
commit aded4a4
Showing
2 changed files
with
21 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Fix: | ||
error: implicitly declaring library function 'exit' with type 'void (int) __attribute__((noreturn))' [-Werror,-Wimplicit-function-declaration] | ||
--- configure.orig 2023-03-04 11:06:39.000000000 -0600 | ||
+++ configure 2025-02-14 15:40:24.000000000 -0600 | ||
@@ -23371,6 +23371,7 @@ | ||
/* end confdefs.h. */ | ||
|
||
#include <math.h> | ||
+#include <stdlib.h> | ||
#include "confdefs.h" | ||
int main () { | ||
#ifdef HAVE_DECL_ISFINITE |