diff options
author | hobbs <hobbs> | 2005-05-07 00:02:57 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-05-07 00:02:57 (GMT) |
commit | e83bb99ade2a54b86b4b484d3a3fc819e6e0d1b8 (patch) | |
tree | c22f5c7f989086059773ee21bc6bb12fcc6964d4 /unix/configure.in | |
parent | 65b0befd37a990632c03983541a806bc3e9eb1e9 (diff) | |
download | tk-e83bb99ade2a54b86b4b484d3a3fc819e6e0d1b8.zip tk-e83bb99ade2a54b86b4b484d3a3fc819e6e0d1b8.tar.gz tk-e83bb99ade2a54b86b4b484d3a3fc819e6e0d1b8.tar.bz2 |
* unix/configure: regen
* unix/configure.in: add AC_C_BIGENDIAN check
* unix/tcl.m4: correct Solaris 10 (5.10) check and add support for
x86_64 Solaris cc builds.
Diffstat (limited to 'unix/configure.in')
-rw-r--r-- | unix/configure.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/unix/configure.in b/unix/configure.in index 48baeee..841f948 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tk installation dnl to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.83.2.13 2004/11/25 00:26:23 hobbs Exp $ +# RCS: @(#) $Id: configure.in,v 1.83.2.14 2005/05/07 00:03:05 hobbs Exp $ AC_INIT(../generic/tk.h) AC_PREREQ(2.13) @@ -109,6 +109,12 @@ SC_TCL_EARLY_FLAGS SC_TCL_64BIT_FLAGS +#-------------------------------------------------------------------- +# Check endianness because we can optimize some operations +#-------------------------------------------------------------------- + +AC_C_BIGENDIAN + #------------------------------------------------------------------------ # If Tcl and Tk are installed in different places, adjust the library # search path to reflect this. |