diff options
author | Kevin B Kenny <kennykb@acm.org> | 2013-07-06 22:33:54 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2013-07-06 22:33:54 (GMT) |
commit | 1526a1a8a3753ce86b6828ccc8fefdb73aaa0283 (patch) | |
tree | ce333d16450e5cbab15d190d313f6079ccde5ba9 /unix | |
parent | b25fa522e1058fec56b707fac19991c64ed40b3d (diff) | |
parent | 967d3768e09661265db16cfae7205d66aa0f4d48 (diff) | |
download | tcl-1526a1a8a3753ce86b6828ccc8fefdb73aaa0283.zip tcl-1526a1a8a3753ce86b6828ccc8fefdb73aaa0283.tar.gz tcl-1526a1a8a3753ce86b6828ccc8fefdb73aaa0283.tar.bz2 |
merge http://www.iana.org/time-zones/repository/releases/tzdata2013d.tar.gz
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tcl.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 638ef9c..b11e03a 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -2255,9 +2255,9 @@ AC_DEFUN([SC_PATH_X], [ not_really_there="" if test "$no_x" = ""; then if test "$x_includes" = ""; then - AC_TRY_CPP([#include <X11/XIntrinsic.h>], , not_really_there="yes") + AC_TRY_CPP([#include <X11/Xlib.h>], , not_really_there="yes") else - if test ! -r $x_includes/X11/Intrinsic.h; then + if test ! -r $x_includes/X11/Xlib.h; then not_really_there="yes" fi fi @@ -2265,11 +2265,11 @@ AC_DEFUN([SC_PATH_X], [ if test "$no_x" = "yes" -o "$not_really_there" = "yes"; then AC_MSG_CHECKING([for X11 header files]) found_xincludes="no" - AC_TRY_CPP([#include <X11/Intrinsic.h>], found_xincludes="yes", found_xincludes="no") + AC_TRY_CPP([#include <X11/Xlib.h>], found_xincludes="yes", found_xincludes="no") if test "$found_xincludes" = "no"; then dirs="/usr/unsupported/include /usr/local/include /usr/X386/include /usr/X11R6/include /usr/X11R5/include /usr/include/X11R5 /usr/include/X11R4 /usr/openwin/include /usr/X11/include /usr/sww/include" for i in $dirs ; do - if test -r $i/X11/Intrinsic.h; then + if test -r $i/X11/Xlib.h; then AC_MSG_RESULT([$i]) XINCLUDES=" -I$i" found_xincludes="yes" |