Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion icc/ICCencapsulator.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down
15 changes: 15 additions & 0 deletions openssl_source/zlib/1.3.1/000_HPUX32.patch
Original file line number Diff line number Diff line change
@@ -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 <limits.h>
# if (ULONG_MAX == 0xffffffffffffffff)