components/sqlite-3/patches/sqlite3-04-tcl-cc.patch
author Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
Tue, 03 May 2016 17:42:42 -0700
changeset 5915 9a9d3be0766e
parent 5203 7d88e6574970
permissions -rw-r--r--
23210440 w3m fails to build on userland nightly (99)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5203
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     1
The value of TCL_CC in /usr/lib/tclConfig.sh is currently incorrect.
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     2
For now, just use the normal CC value that was passed into the
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     3
configure script.
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     4
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     5
This change will not be sent upstream and this patch can be removed
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     6
when the fix for CR #22378457 is integrated.
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     7
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     8
--- a/tea/configure.orig	2015-12-16 10:21:08.098424591 -0800
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     9
+++ b/tea/configure	2015-12-16 10:21:33.697578818 -0800
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    10
@@ -3386,7 +3386,7 @@
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    11
 
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    12
     { $as_echo "$as_me:${as_lineno-$LINENO}: checking platform" >&5
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    13
 $as_echo_n "checking platform... " >&6; }
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    14
-    hold_cc=$CC; CC="$TCL_CC"
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    15
+    hold_cc=$CC; CC="$CC"
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    16
     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    17
 /* end confdefs.h.  */
7d88e6574970 22377891 sqlite-3 should honor the supplied CC= value for configuration
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    18