diff options
author | dscho <dscho> | 2003-02-09 16:37:43 +0000 |
---|---|---|
committer | dscho <dscho> | 2003-02-09 16:37:43 +0000 |
commit | f74a60769676297270e0ebfec1ab31eec70496a9 (patch) | |
tree | b2ee6247edae2bb00d5cd0ea005037762c58ce1c /configure.ac | |
parent | e7d21a7a184454eaa8bd4d04f8976fb021f45495 (diff) | |
download | libtdevnc-f74a60769676297270e0ebfec1ab31eec70496a9.tar.gz libtdevnc-f74a60769676297270e0ebfec1ab31eec70496a9.zip |
order of X libraries is not good for IRIX
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 0005191..6f186b7 100644 --- a/configure.ac +++ b/configure.ac @@ -27,7 +27,7 @@ if test "$X_CFLAGS" != "-DX_DISPLAY_MISSING"; then HAVE_XTEST="false", $X_LIBS $X_PRELIBS -lX11 -lXext $X_EXTRA_LIBS) if test $HAVE_XTEST = "true"; then - X_LIBS="$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS -lXext -lXtst" + X_LIBS="$X_LIBS $X_PRELIBS -lXtst -lXext -lX11 $X_EXTRA_LIBS" HAVE_X="true" fi fi |