diff options
author | dgp <dgp@users.sourceforge.net> | 2007-05-18 19:21:58 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-05-18 19:21:58 (GMT) |
commit | 8a5f0dbbec9daac56f2e20b47a49e915fff54e47 (patch) | |
tree | 8c512864cf347e1bcba06e794f85487e64b7887e /unix/configure | |
parent | 0f1863c2c36d7a477e3e5a245cc8120fe5645206 (diff) | |
download | tk-8a5f0dbbec9daac56f2e20b47a49e915fff54e47.zip tk-8a5f0dbbec9daac56f2e20b47a49e915fff54e47.tar.gz tk-8a5f0dbbec9daac56f2e20b47a49e915fff54e47.tar.bz2 |
* unix/configure: autoconf-2.59 (FC6 fork)
* win/configure:
* README: Bump version number to 8.5a7
* generic/tk.h:
* library/tk.tcl:
* unix/configure.in:
* unix/tk.spec:
* win/configure.in:
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/unix/configure b/unix/configure index 8a2b396..244247c 100755 --- a/unix/configure +++ b/unix/configure @@ -1336,7 +1336,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu TK_VERSION=8.5 TK_MAJOR_VERSION=8 TK_MINOR_VERSION=5 -TK_PATCH_LEVEL="a6" +TK_PATCH_LEVEL="a7" VERSION=${TK_VERSION} LOCALES="cs de el en en_gb eo es es_ES fr it nl pl pt ru" @@ -8778,7 +8778,7 @@ ac_x_header_dirs=' /usr/openwin/share/include' if test "$ac_x_includes" = no; then - # Guess where to find include files, by looking for Intrinsic.h. + # Guess where to find include files, by looking for Xlib.h. # First, try using that file with no special directory specified. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ @@ -8786,7 +8786,7 @@ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -#include <X11/Intrinsic.h> +#include <X11/Xlib.h> _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 @@ -8813,7 +8813,7 @@ else sed 's/^/| /' conftest.$ac_ext >&5 for ac_dir in $ac_x_header_dirs; do - if test -r "$ac_dir/X11/Intrinsic.h"; then + if test -r "$ac_dir/X11/Xlib.h"; then ac_x_includes=$ac_dir break fi @@ -8827,18 +8827,18 @@ if test "$ac_x_libraries" = no; then # See if we find them without any special options. # Don't add to $LIBS permanently. ac_save_LIBS=$LIBS - LIBS="-lXt $LIBS" + LIBS="-lX11 $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -#include <X11/Intrinsic.h> +#include <X11/Xlib.h> int main () { -XtMalloc (0) +XrmInitialize () ; return 0; } |