50b731f1b7
Derivative of Redox OS (https://www.redox-os.org) adding: - AMD GPU driver (amdgpu) via LinuxKPI compat layer - ext4 filesystem support (ext4d scheme daemon) - ACPI fixes for AMD bare metal (x2APIC, DMAR, IVRS, MCFG) - Custom branding (hostname, os-release, boot identity) Build system is full upstream Redox with RBOS overlay in local/. Patches for kernel, base, and relibc are symlinked from local/patches/ and protected from make clean/distclean. Custom recipes live in local/recipes/ with symlinks into the recipes/ search path. Build: make all CONFIG_NAME=redbear-full Sync: ./local/scripts/sync-upstream.sh
18 lines
642 B
Diff
18 lines
642 B
Diff
diff -ruwN source/pcretest.c source-new/pcretest.c
|
|
--- source/pcretest.c 2017-06-13 10:49:46.000000000 -0600
|
|
+++ source-new/pcretest.c 2019-01-05 11:04:15.198224299 -0700
|
|
@@ -3168,7 +3168,7 @@
|
|
((stack_size = get_value((pcre_uint8 *)argv[op+1], &endptr)),
|
|
*endptr == 0))
|
|
{
|
|
-#if defined(_WIN32) || defined(WIN32) || defined(__minix) || defined(NATIVE_ZOS) || defined(__VMS)
|
|
+#if defined(_WIN32) || defined(WIN32) || defined(__minix) || defined(NATIVE_ZOS) || defined(__VMS) || defined(__redox__)
|
|
printf("PCRE: -S not supported on this OS\n");
|
|
exit(1);
|
|
#else
|
|
@@ -5770,4 +5770,3 @@
|
|
}
|
|
|
|
/* End of pcretest.c */
|
|
-
|