8.0.2 bump (bz 1669571).

Also:
- Drop the -static subpackage.
- Drop the -jpl-configure, -pc, and -Use-system-js-query patches.
- Add -unbundle-libstemmer patch.
- Add a check script.
- Build the PDF instead of using the one provided by upstream.
This commit is contained in:
Jerry James 2019-03-25 18:59:06 -06:00
commit c176a2a7f6
11 changed files with 254 additions and 349 deletions

View file

@ -91,7 +91,7 @@ class JavaConfig {
home + filesep + "lib" + filesep + architecture + filesep + "client";
/* Convert the collon delimited paths to LDFLAGS format */
/* Convert the colon-delimited paths to LDFLAGS format */
paths = value.split(":");
for (int i = 0; i < paths.length; i++) {
@ -105,6 +105,8 @@ class JavaConfig {
value = value + " -L" + paths[i];
}
}
value = value + " -Wl,-rpath," + home + filesep + "lib" + architecture +
filesep + "server";
return value;
}