summaryrefslogtreecommitdiffstats
path: root/unix/configure.ac
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-08-13 08:36:38 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-08-13 08:36:38 (GMT)
commiteb22eb72e1e8f75c0bf2e51ccf08028d61829b8e (patch)
treee1a7e939b71f9f9054727245e6362c4fb9054d1e /unix/configure.ac
parent8fec18a134926a2dcc9135bf68b6ffdb07580d76 (diff)
parentf7fe93c2fe07938bed28a767a138bf2277e18bea (diff)
downloadtcl-eb22eb72e1e8f75c0bf2e51ccf08028d61829b8e.zip
tcl-eb22eb72e1e8f75c0bf2e51ccf08028d61829b8e.tar.gz
tcl-eb22eb72e1e8f75c0bf2e51ccf08028d61829b8e.tar.bz2
AC_PREREQ([2.69]). Fix some indenting
Diffstat (limited to 'unix/configure.ac')
-rw-r--r--unix/configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/configure.ac b/unix/configure.ac
index d2a5771..e31d52a 100644
--- a/unix/configure.ac
+++ b/unix/configure.ac
@@ -4,7 +4,7 @@ dnl generate the file "configure", which is run during Tcl installation
dnl to configure the system for the local environment.
AC_INIT([tcl],[8.7])
-AC_PREREQ([2.72])
+AC_PREREQ([2.69])
dnl This is only used when included from macosx/configure.ac
m4_ifdef([SC_USE_CONFIG_HEADERS], [
@@ -404,7 +404,7 @@ AC_CACHE_CHECK([for socklen_t], tcl_cv_type_socklen_t, [
#include <sys/types.h>
#include <sys/socket.h>
]], [[
- socklen_t foo;
+ socklen_t foo;
]])],[tcl_cv_type_socklen_t=yes],[tcl_cv_type_socklen_t=no])])
if test $tcl_cv_type_socklen_t = no; then
AC_DEFINE(socklen_t, int, [Define as int if socklen_t is not available])