Skip to content

Commit 0858c41

Browse files
Merge pull request #22 from IBM/build_error_fix
Build error fix
2 parents 3688bdf + b858cf7 commit 0858c41

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

icc/ICCencapsulator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ public static void main(String[] args)
409409
doWork(new File_one_sh()); // one.sh
410410
}
411411
catch (FileNotFoundException e) {
412-
System.out.println("Failed: out.sh");
412+
System.out.println(e.getMessage());
413413
// ignore
414414
}
415415

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
diff -urN zlib-1.2.12.orig/zutil.h zlib-1.2.12/zutil.h
2+
--- zlib-1.2.12.orig/zutil.h 2022-03-28 09:39:42.000000000 +1000
3+
+++ zlib-1.2.12/zutil.h 2022-04-27 12:51:00.908632154 +1000
4+
@@ -42,6 +42,11 @@
5+
typedef ush FAR ushf;
6+
typedef unsigned long ulg;
7+
8+
+/* 32 bit HP/UX compiler we use won't handle the large constants below */
9+
+#if defined(__hpux) && !defined(__LP64__)
10+
+# define Z_U8 0xffffffffffffffff
11+
+#endif
12+
+
13+
#if !defined(Z_U8) && !defined(Z_SOLO) && defined(STDC)
14+
# include <limits.h>
15+
# if (ULONG_MAX == 0xffffffffffffffff)

0 commit comments

Comments
 (0)