
Removed dmraid, iniparser, jam, libatasmart, libblockdev, libbytesize, libyaml, mozjs, ndctl, polkit, rpi-userland, sccache from base Removed docdir, sysconfdir and prefix quotes from autoconf build option and similar options from various packages in base Added apparch variables to base/{acpid,dmidecode,gnu-efi,pciutils,syslinux} Added udev rules build option to base/alsa-utils Discarded --offline option in base/cbindgen Upgraded base/cmake to 3.26.4 Added --without-x build option to base/dialog Upgraded base/gawk to 5.2.2 Upgraded base/glib to 2.76.3 Disabled tests and examples in base/gloox Upgraded base/gnupg2 to 2.2.41 Upgraded base/gnutls to 3.8.0 Upgraded base/gpgme to 1.20.0 Fixed make command option ordering in base/{hdparm,p7zip} Upgraded base/libgpg-error to 1.47 Upgraded base/libjpeg-turbo to 2.1.5.1 Upgraded base/libuv to 1.45.0 Discarded some build options to base/libxml2 Upgraded base/llvm to 15.0.7 Fixed subshell code in base/lua53 Removed --prefix= in several python package build files, added /usr as prefix in base/python3 Upgraded base/musl to 1.2.4 Upgraded base/nettle to 3.9 Upgraded base/nghttp2 to 1.53.0 Added --without-trust-paths to base/p11-kit Upgraded base/qpdf to 11.4.0 Discarded base/rpi-userland Upgraded base/rust to 1.69.0 Upgraded base/sqlite to 3420000 Added $CFLAGS to base/unzip Added -fPIC option to base/yasm Updated base build list
54 lines
1.7 KiB
Diff
54 lines
1.7 KiB
Diff
diff -Naurp ftjam-2.5.3rc2-orig/Jambase ftjam-2.5.3rc2/Jambase
|
|
--- ftjam-2.5.3rc2-orig/Jambase 2007-06-05 08:20:19.000000000 -0600
|
|
+++ ftjam-2.5.3rc2/Jambase 2008-07-21 19:26:02.000000000 -0600
|
|
@@ -813,7 +813,7 @@ else if $(UNIX)
|
|
LINKLIBS ?= ;
|
|
OPTIM ?= -O ;
|
|
RANLIB ?= ranlib ;
|
|
- YACC ?= yacc ;
|
|
+ YACC ?= bison -y ;
|
|
YACCGEN ?= .c ;
|
|
YACCFILES ?= y.tab ;
|
|
YACCFLAGS ?= -d ;
|
|
@@ -882,10 +882,10 @@ DC ?= dmd ;
|
|
SUFLIB ?= .a ;
|
|
SUFOBJ ?= .o ;
|
|
UNDEFFLAG ?= "-u _" ;
|
|
- YACC ?= ;
|
|
- YACCGEN ?= ;
|
|
- YACCFILES ?= ;
|
|
- YACCFLAGS ?= ;
|
|
+ YACC ?= bison -y ;
|
|
+ YACCGEN ?= .c ;
|
|
+ YACCFILES ?= y.tab ;
|
|
+ YACCFLAGS ?= -d ;
|
|
|
|
HDRPATTERN =
|
|
"^[ ]*#[ ]*include[ ]*[<\"]([^\">]*)[\">].*$" ;
|
|
diff -Naurp ftjam-2.5.3rc2-orig/jambase.c ftjam-2.5.3rc2/jambase.c
|
|
--- ftjam-2.5.3rc2-orig/jambase.c 2007-06-05 08:31:08.000000000 -0600
|
|
+++ ftjam-2.5.3rc2/jambase.c 2008-07-21 19:27:55.000000000 -0600
|
|
@@ -632,7 +632,7 @@ const char *jambase[] = {
|
|
"LINKLIBS ?= ;\n",
|
|
"OPTIM ?= -O ;\n",
|
|
"RANLIB ?= ranlib ;\n",
|
|
-"YACC ?= yacc ;\n",
|
|
+"YACC ?= bison -y ;\n",
|
|
"YACCGEN ?= .c ;\n",
|
|
"YACCFILES ?= y.tab ;\n",
|
|
"YACCFLAGS ?= -d ;\n",
|
|
@@ -695,10 +695,10 @@ const char *jambase[] = {
|
|
"SUFLIB ?= .a ;\n",
|
|
"SUFOBJ ?= .o ;\n",
|
|
"UNDEFFLAG ?= \"-u _\" ;\n",
|
|
-"YACC ?= ;\n",
|
|
-"YACCGEN ?= ;\n",
|
|
-"YACCFILES ?= ;\n",
|
|
-"YACCFLAGS ?= ;\n",
|
|
+"YACC ?= bison -y ;\n",
|
|
+"YACCGEN ?= .c ;\n",
|
|
+"YACCFILES ?= y.tab ;\n",
|
|
+"YACCFLAGS ?= -d ;\n",
|
|
"\n",
|
|
"HDRPATTERN =\n",
|
|
"\"^[ ]*#[ ]*include[ ]*[<\\\"]([^\\\">]*)[\\\">].*$\" ;\n",
|