Skip to content
Snippets Groups Projects
Select Git revision
  • cd147d7861f6f90d7f6256843957a251b2199053
  • master default
  • replace_gradle_witness
  • fix_nonlocalized_timestamp
  • fileStorage
  • implement-chunking
  • upgrade_roboletric_to_401
  • implement-mailbox-contact-sessions
  • 541-faster-retransmission-eta
  • add_special_purpose_contacts
  • mailbox-b
  • mailbox
  • mailbox-jd
  • implement_mailbox_connection_manager
  • 1343-vanniktech-emoji
  • 541-allow-retransmission-if-faster
  • asp-temp
  • fix_performance_test_db
  • 514-allow-retransmissions-using-lower-latency-transports
  • implement-SyncSession-writer-error-handling
  • add_special_purpose_contacts_refactored
  • beta-0.16.16
  • beta-0.16.10
  • beta-0.16.11
  • beta-0.16.12
  • beta-0.16.13
  • beta-0.16.14
  • beta-0.16.15
  • beta-0.16.9
  • beta-0.16.1
  • beta-0.16.2
  • beta-0.16.3
  • beta-0.16.4
  • beta-0.16.5
  • beta-0.16.6
  • beta-0.16.7
  • beta-0.16.8
37 results

h2-1.3.170.patch

Blame
  • Forked from briar / briar
    6461 commits behind the upstream repository.
    h2-1.3.170.patch 2.16 KiB
    Binary files h2-1.3.170/h2/bin/org/h2/build/Build$1.class and h2-1.3.170-briar/h2/bin/org/h2/build/Build$1.class differ
    Binary files h2-1.3.170/h2/bin/org/h2/build/Build$2.class and h2-1.3.170-briar/h2/bin/org/h2/build/Build$2.class differ
    Binary files h2-1.3.170/h2/bin/org/h2/build/BuildBase.class and h2-1.3.170-briar/h2/bin/org/h2/build/BuildBase.class differ
    Binary files h2-1.3.170/h2/bin/org/h2/build/Build.class and h2-1.3.170-briar/h2/bin/org/h2/build/Build.class differ
    diff -Bbur h2-1.3.170/h2/src/tools/org/h2/build/BuildBase.java h2-1.3.170-briar/h2/src/tools/org/h2/build/BuildBase.java
    --- h2-1.3.170/h2/src/tools/org/h2/build/BuildBase.java	2013-06-19 15:56:33.000000000 +0100
    +++ h2-1.3.170-briar/h2/src/tools/org/h2/build/BuildBase.java	2013-06-19 16:03:20.000000000 +0100
    @@ -838,6 +838,9 @@
          */
         protected void javac(StringList args, FileList files) {
             println("Compiling " + files.size() + " classes");
    +        print("Args:");
    +        for(String arg : args) print(" " + arg);
    +        println("");
             StringList params = new StringList();
             params.addAll(args);
             params.addAll(getPaths(files.keep(".java")));
    diff -Bbur h2-1.3.170/h2/src/tools/org/h2/build/Build.java h2-1.3.170-briar/h2/src/tools/org/h2/build/Build.java
    --- h2-1.3.170/h2/src/tools/org/h2/build/Build.java	2013-06-19 15:56:33.000000000 +0100
    +++ h2-1.3.170-briar/h2/src/tools/org/h2/build/Build.java	2013-06-19 16:05:10.000000000 +0100
    @@ -166,10 +166,11 @@
                 files = files("src/main");
             }
             StringList args = args();
    -        if (System.getProperty("version") != null) {
    +        String version = System.getProperty("version");
                 String bcp = System.getProperty("bcp");
                 // /System/Library/Frameworks/JavaVM.framework/Versions/1.4/Classes/classes.jar
    -            args = args.plus("-source", "1.5", "-target", "jsr14", "-bootclasspath", bcp);
    +        if (version != null && bcp != null) {
    +            args = args.plus("-source", "1.5", "-target", version, "-bootclasspath", bcp);
             }
             if (debugInfo) {
                 args = args.plus("-Xlint:unchecked", "-d", "temp", "-sourcepath", "src/main", "-classpath", classpath);