Merge

Fri, 28 Mar 2014 13:23:06 -0700

author
asaha
date
Fri, 28 Mar 2014 13:23:06 -0700
changeset 1024
f0abd4607ac4
parent 963
6403ef94cb0d
parent 1022
19dd42ebf97c
child 1025
a14345c657e4

Merge

.hgtags file | annotate | diff | comparison | revisions
common/autoconf/generated-configure.sh file | annotate | diff | comparison | revisions
     1.1 --- a/.hgtags	Mon Mar 24 13:16:50 2014 -0700
     1.2 +++ b/.hgtags	Fri Mar 28 13:23:06 2014 -0700
     1.3 @@ -260,4 +260,17 @@
     1.4  839546caab1285c7699a9c2aa1467f57c9ea7f30 jdk8-b130
     1.5  0c38dfecab2ad9f9b5b5edf54b991602147cd040 jdk8-b131
     1.6  2a8f4c022aa03e7916223f3291517dbcc38e07cd jdk8-b132
     1.7 +c41935d79b8744af8b7b56cd4d4ab781027fb22e jdk8u5-b01
     1.8 +6f3357d3dbf83c1ef0098bcb853e3aa3b26f4cb8 jdk8u5-b02
     1.9 +794b4365b6884e9a15f0840792539f5821814127 jdk8u5-b03
    1.10 +c200d6cb184056e44afe7102913004b717896aa3 jdk8u5-b04
    1.11 +eb537d7c31e069ac10de0901727515743f7535d2 jdk8u5-b05
    1.12 +75cdae18810a479cc3c0fe8eb9055d968ae31c63 jdk8u5-b06
    1.13 +b1585984f29320737ca0da5af029b1225a75c476 jdk8u5-b07
    1.14 +a445d4130af79027fd9d6675b1ad7a8990225749 jdk8u5-b08
    1.15 +e5403ff707fbd828e56bf390931f236028f9617b jdk8u5-b09
    1.16 +fae51c73a06d71304c9dbff22984ee501812b972 jdk8u5-b10
    1.17 +dd3bd272ceedbd69fabafc531b6b1e056659f733 jdk8u5-b11
    1.18 +3e05b6ae0a1e2bd7352462e9bf8e7262246fb77f jdk8u5-b12
    1.19 +d81e301cae70f1f95f4bb976ec053c915dee503a jdk8u5-b13
    1.20  ae6a3aec6aa29509a0fd5f53709889b99b1e27da jdk8u20-b06
     2.1 --- a/THIRD_PARTY_README	Mon Mar 24 13:16:50 2014 -0700
     2.2 +++ b/THIRD_PARTY_README	Fri Mar 28 13:23:06 2014 -0700
     2.3 @@ -1399,13 +1399,13 @@
     2.4  
     2.5  -------------------------------------------------------------------------------
     2.6  
     2.7 -%% This notice is provided with respect to Little CMS 2.4, which may be 
     2.8 +%% This notice is provided with respect to Little CMS 2.5, which may be 
     2.9  included with JRE 8, JDK 8, and OpenJDK 8.
    2.10  
    2.11  --- begin of LICENSE ---
    2.12  
    2.13  Little CMS
    2.14 -Copyright (c) 1998-2010 Marti Maria Saguer
    2.15 +Copyright (c) 1998-2011 Marti Maria Saguer
    2.16  
    2.17  Permission is hereby granted, free of charge, to any person obtaining a copy
    2.18  of this software and associated documentation files (the "Software"), to deal
     3.1 --- a/common/autoconf/jdk-options.m4	Mon Mar 24 13:16:50 2014 -0700
     3.2 +++ b/common/autoconf/jdk-options.m4	Fri Mar 28 13:23:06 2014 -0700
     3.3 @@ -423,6 +423,12 @@
     3.4      AC_MSG_ERROR([Update version must have a value])
     3.5    elif test "x$with_update_version" != x; then
     3.6      JDK_UPDATE_VERSION="$with_update_version"
     3.7 +    # On macosx 10.7, it's not possible to set --with-update-version=0X due
     3.8 +    # to a bug in expr (which reduces it to just X). To work around this, we
     3.9 +    # always add a 0 to one digit update versions.
    3.10 +    if test "${#JDK_UPDATE_VERSION}" = "1"; then
    3.11 +      JDK_UPDATE_VERSION="0${JDK_UPDATE_VERSION}"
    3.12 +    fi
    3.13    fi
    3.14  
    3.15    AC_ARG_WITH(user-release-suffix, [AS_HELP_STRING([--with-user-release-suffix],

mercurial