diff options
author | das <das> | 2006-07-20 07:39:09 (GMT) |
---|---|---|
committer | das <das> | 2006-07-20 07:39:09 (GMT) |
commit | 07593be21734b6aee77bd4bc53e69bf33d8e9588 (patch) | |
tree | 3d8c5764bc9e4e8f6488a9c22ea21d0640306955 | |
parent | 012ac88ab78de5f4b8f0e7b196e1746bb75bdf9b (diff) | |
download | tcl-07593be21734b6aee77bd4bc53e69bf33d8e9588.zip tcl-07593be21734b6aee77bd4bc53e69bf33d8e9588.tar.gz tcl-07593be21734b6aee77bd4bc53e69bf33d8e9588.tar.bz2 |
cleanup quoting and whitespace
-rwxr-xr-x | unix/configure | 5 | ||||
-rw-r--r-- | unix/tcl.m4 | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/unix/configure b/unix/configure index 05db728..16ee904 100755 --- a/unix/configure +++ b/unix/configure @@ -7019,7 +7019,7 @@ _ACEOF SHLIB_LD_LIBS='${LIBS}' SHLIB_SUFFIX=".so" - SHLIB_LD="${CC} -shared" + SHLIB_LD="${CC} -shared" DL_OBJS="" DL_LIBS="-ldl" LDFLAGS="$LDFLAGS -Wl,--export-dynamic" @@ -13582,7 +13582,8 @@ echo $ECHO_N "checking whether to use nl_langinfo... $ECHO_C" >&6 if test "${tcl_cv_langinfo_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - cat >conftest.$ac_ext <<_ACEOF + + cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext diff --git a/unix/tcl.m4 b/unix/tcl.m4 index e009b9b..b4374a9 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -833,9 +833,9 @@ AC_DEFUN([SC_ENABLE_LANGINFO], [ fi AC_MSG_CHECKING([whether to use nl_langinfo]) if test "$langinfo_ok" = "yes"; then - AC_CACHE_VAL(tcl_cv_langinfo_h, + AC_CACHE_VAL(tcl_cv_langinfo_h, [ AC_TRY_COMPILE([#include <langinfo.h>], [nl_langinfo(CODESET);], - [tcl_cv_langinfo_h=yes],[tcl_cv_langinfo_h=no])) + [tcl_cv_langinfo_h=yes],[tcl_cv_langinfo_h=no])]) AC_MSG_RESULT([$tcl_cv_langinfo_h]) if test $tcl_cv_langinfo_h = yes; then AC_DEFINE(HAVE_LANGINFO, 1, [Do we have nl_langinfo()?]) @@ -1427,7 +1427,7 @@ dnl AC_CHECK_TOOL(AR, ar) SHLIB_LD_LIBS='${LIBS}' SHLIB_SUFFIX=".so" - SHLIB_LD="${CC} -shared" + SHLIB_LD="${CC} -shared" DL_OBJS="" DL_LIBS="-ldl" LDFLAGS="$LDFLAGS -Wl,--export-dynamic" |