SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,27 @@
--- automake.in.orig Thu Jun 30 23:17:13 2005
+++ automake.in Sun Mar 18 17:53:50 2007
@@ -3898,7 +3898,7 @@ sub handle_configure ($$$@)
# Use $(install_sh), not $(mkdir_p) because the latter requires
# at least one argument, and $(mkinstalldirs) used to work
# even without arguments (e.g. $(mkinstalldirs) $(conditional_dir)).
- define_variable ('mkinstalldirs', '$(install_sh) -d', INTERNAL);
+ define_variable ('mkinstalldirs', '$(SHELL) $(install_sh) -d', INTERNAL);
}
reject_var ('CONFIG_HEADER',
@@ -4649,6 +4649,7 @@ sub scan_autoconf_traces ($)
_LT_AC_TAGCONFIG => 0,
m4_include => 1,
m4_sinclude => 1,
+ include => 1,
sinclude => 1,
);
@@ -4669,6 +4670,7 @@ sub scan_autoconf_traces ($)
my ($here, @args) = split (/::/);
my $where = new Automake::Location $here;
my $macro = $args[0];
+ next if ($macro eq "include");
prog_error ("unrequested trace `$macro'")
unless exists $traced{$macro};