diff --git a/icc/ICCencapsulator.java b/icc/ICCencapsulator.java index ab197b3..155b696 100644 --- a/icc/ICCencapsulator.java +++ b/icc/ICCencapsulator.java @@ -409,7 +409,7 @@ public static void main(String[] args) doWork(new File_one_sh()); // one.sh } catch (FileNotFoundException e) { - System.out.println("Failed: out.sh"); + System.out.println(e.getMessage()); // ignore } diff --git a/openssl_source/zlib/1.3.1/000_HPUX32.patch b/openssl_source/zlib/1.3.1/000_HPUX32.patch new file mode 100755 index 0000000..53984cf --- /dev/null +++ b/openssl_source/zlib/1.3.1/000_HPUX32.patch @@ -0,0 +1,15 @@ +diff -urN zlib-1.2.12.orig/zutil.h zlib-1.2.12/zutil.h +--- zlib-1.2.12.orig/zutil.h 2022-03-28 09:39:42.000000000 +1000 ++++ zlib-1.2.12/zutil.h 2022-04-27 12:51:00.908632154 +1000 +@@ -42,6 +42,11 @@ + typedef ush FAR ushf; + typedef unsigned long ulg; + ++/* 32 bit HP/UX compiler we use won't handle the large constants below */ ++#if defined(__hpux) && !defined(__LP64__) ++# define Z_U8 0xffffffffffffffff ++#endif ++ + #if !defined(Z_U8) && !defined(Z_SOLO) && defined(STDC) + # include + # if (ULONG_MAX == 0xffffffffffffffff)