diff -pruN 2.6.12-118/debian/changelog 2.6.12-119/debian/changelog
--- 2.6.12-118/debian/changelog	2022-07-12 21:17:09.000000000 +0000
+++ 2.6.12-119/debian/changelog	2022-07-31 16:00:02.000000000 +0000
@@ -1,3 +1,9 @@
+gcl (2.6.12-119) unstable; urgency=medium
+
+  * Version_2.6.13pre119
+
+ -- Camm Maguire <camm@debian.org>  Sun, 31 Jul 2022 12:00:02 -0400
+
 gcl (2.6.12-118) unstable; urgency=medium
 
   * Bug fix: "emacs dependency should be &quot;emacs | emacsen&quot;",
diff -pruN 2.6.12-118/debian/patches/series 2.6.12-119/debian/patches/series
--- 2.6.12-118/debian/patches/series	2021-12-25 16:38:16.000000000 +0000
+++ 2.6.12-119/debian/patches/series	2022-07-31 16:00:02.000000000 +0000
@@ -132,3 +132,4 @@ Version_2.6.13pre111
 Version_2.6.13pre112
 Version_2.6.13pre113
 Version_2.6.13pre114
+Version_2_6_13pre119
diff -pruN 2.6.12-118/debian/patches/Version_2_6_13pre119 2.6.12-119/debian/patches/Version_2_6_13pre119
--- 2.6.12-118/debian/patches/Version_2_6_13pre119	1970-01-01 00:00:00.000000000 +0000
+++ 2.6.12-119/debian/patches/Version_2_6_13pre119	2022-07-31 16:00:02.000000000 +0000
@@ -0,0 +1,58 @@
+Description: <short summary of the patch>
+ TODO: Put a short summary on the line above and replace this paragraph
+ with a longer explanation of this change. Complete the meta-information
+ with other relevant fields (see below for details). To make it easier, the
+ information below has been extracted from the changelog. Adjust it or drop
+ it.
+ .
+ gcl (2.6.12-119) unstable; urgency=medium
+ .
+   * Version_2.6.13pre119
+Author: Camm Maguire <camm@debian.org>
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: <vendor|upstream|other>, <url of original patch>
+Bug: <url in upstream bugtracker>
+Bug-Debian: https://bugs.debian.org/<bugnumber>
+Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
+Forwarded: <no|not-needed|url proving that it has been forwarded>
+Reviewed-By: <name and email of someone who approved the patch>
+Last-Update: 2022-07-31
+
+--- gcl-2.6.12.orig/h/alpha-linux.h
++++ gcl-2.6.12/h/alpha-linux.h
+@@ -20,3 +20,5 @@
+ #define imb() __asm__ __volatile__ ("call_pal %0 #imb" : : "i" (PAL_imb) : "memory")
+ #define CLEAR_CACHE imb()
+ 
++/*FIXME probe broken in recent kernels, no access*/
++#define DEFINED_REAL_MAXPAGE (1UL<<18) /*FIXME brk probe broken*/
+--- gcl-2.6.12.orig/xgcl-2/sysdef.lisp
++++ gcl-2.6.12/xgcl-2/sysdef.lisp
+@@ -41,14 +41,18 @@
+ 
+ 
+ (defun compile-xgcl()
+-  #+m68k(progn (trace si::readdir si::opendir si::closedir si::pathname-match-p)
+-	       (print (directory "*.c"))
+-	       (untrace si::readdir si::opendir si::closedir si::pathname-match-p))
++  #+(or m68k sh4)
++  (progn (trace si::readdir si::opendir si::closedir si::pathname-match-p)
++	 (print (directory "*.c"))
++	 (untrace si::readdir si::opendir si::closedir si::pathname-match-p))
+   (mapc (lambda (x) 
+ 	  (let ((x (concatenate 'string compiler::*cc* " -I../h " (namestring x))))
+ 	    (unless (zerop (system x))
+ 	      (error "compile failure: ~s~%" x))))
+-	(directory "*.c"))
++	(or (directory "*.c")
++	    #+(or m68k sh4)
++	    (progn (print "qemu/readdir issue still present")
++		   (mapcar (lambda (x) (truename (merge-pathnames ".c" x))) '("XStruct-4" "general-c" "Xutil-2" "Events" "XStruct-2")))))
+   (mapc (lambda (x)
+ 	  (compile-file (format nil "~a.lsp" x) :system-p t)) *files*))
+ 
