This patch adds USES=guile[:options], a framework to permit the concurrent installation of different guile versions, allowing ports to specify which guile they need. lang/guile is now a meta-port, installing the default guile version; guile 3 is now shipped in lang/guile3. A new port lang/guile-aclocal holds the guile.m4 file from guile3 to permit ports written against guile1 or guile2 to avoid conflicts. PR: 260960 Reported by: Martin Neubauer <m.ne@gmx.net> Approved by: bofh Differential Revision: https://reviews.freebsd.org/D40194
19 lines
591 B
Plaintext
19 lines
591 B
Plaintext
--- configure.orig 2023-05-25 12:23:46 UTC
|
|
+++ configure
|
|
@@ -60073,6 +60073,15 @@ then :
|
|
|
|
fi
|
|
|
|
+ac_fn_c_check_func "$LINENO" "posix_spawn_file_actions_addclosefrom_np" "ac_cv_func_posix_spawn_file_actions_addclosefrom_np"
|
|
+if test "x$ac_cv_func_posix_spawn_file_actions_addclosefrom_np" = xyes
|
|
+then :
|
|
+ printf "%s\n" "#define HAVE_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSEFROM_NP 1" >>confdefs.h
|
|
+
|
|
+fi
|
|
+
|
|
+
|
|
+
|
|
|
|
# The newlib C library uses _NL_ prefixed locale langinfo constants.
|
|
ac_fn_check_decl "$LINENO" "_NL_NUMERIC_GROUPING" "ac_cv_have_decl__NL_NUMERIC_GROUPING" "#include <langinfo.h>
|