diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-11-23 15:17:29 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-11-23 15:17:29 (GMT) |
| commit | 2c42c39c0b023db443b15b4014b00fd8dba1a0ff (patch) | |
| tree | 510bc56c0194d101402c62b24c914eca4ec314ae | |
| parent | 35e2a431524d1a6898d902ea2da41a82396d4901 (diff) | |
| parent | 52b145e7f5f318eef9b60d3aa5927bb427fac1cb (diff) | |
| download | tcl-2c42c39c0b023db443b15b4014b00fd8dba1a0ff.zip tcl-2c42c39c0b023db443b15b4014b00fd8dba1a0ff.tar.gz tcl-2c42c39c0b023db443b15b4014b00fd8dba1a0ff.tar.bz2 | |
Fix [e653408972]: autoconf warning
| -rwxr-xr-x | unix/configure | 5 | ||||
| -rw-r--r-- | unix/configure.ac | 2 | ||||
| -rw-r--r-- | unix/tclConfig.h.in | 3 |
3 files changed, 2 insertions, 8 deletions
diff --git a/unix/configure b/unix/configure index 87c7948..a8985ff 100755 --- a/unix/configure +++ b/unix/configure @@ -8090,9 +8090,7 @@ printf "%s\n" "$ac_cv_c_bigendian" >&6; } no) ;; #( universal) - -printf "%s\n" "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h - + # ;; #( *) as_fn_error $? "unknown endianness @@ -11216,7 +11214,6 @@ DEFS=`sed -n "$ac_script" confdefs.h` CFLAGS="${CFLAGS} ${CPPFLAGS}"; CPPFLAGS="" - : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files diff --git a/unix/configure.ac b/unix/configure.ac index 33e7a32..1c20f8e 100644 --- a/unix/configure.ac +++ b/unix/configure.ac @@ -219,7 +219,7 @@ SC_TCL_64BIT_FLAGS # Tcl_UniChar strings to memcmp on big-endian systems. #-------------------------------------------------------------------- -AC_C_BIGENDIAN +AC_C_BIGENDIAN(,,,[#]) #-------------------------------------------------------------------- # Supply substitutes for missing POSIX library procedures, or diff --git a/unix/tclConfig.h.in b/unix/tclConfig.h.in index 8500afb..7ddfbe3 100644 --- a/unix/tclConfig.h.in +++ b/unix/tclConfig.h.in @@ -4,9 +4,6 @@ #ifndef _TCLCONFIG #define _TCLCONFIG -/* Define if building universal (internal helper macro) */ -#undef AC_APPLE_UNIVERSAL_BUILD - /* Is gettimeofday() actually declared in <sys/time.h>? */ #undef GETTOD_NOT_DECLARED |
