aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Page <bill.page@newsynthesis.org>2016-02-14 19:37:28 -0800
committerGabriel Dos Reis <gdr@axiomatics.org>2016-02-14 19:37:28 -0800
commit3d46fd5b7318beb00cfb780389650fcfe4b45065 (patch)
tree62cf5f7f217139a77762429f01f9c058743d064b
parentb433b8c3a0b2a3089269be8c3149ac7cdcf449cc (diff)
downloadopen-axiom-3d46fd5b7318beb00cfb780389650fcfe4b45065.tar.gz
Fix typo in calculation of X_PRE_LIBS
The previous value set "-Xt" when it should have been "-lXt".
-rw-r--r--ChangeLog4
-rw-r--r--config/open-axiom.m42
-rwxr-xr-xconfigure2
3 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 26a253b3..457cba4b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-02-14 Bill Page <bill.page@newsynthesis.org>
+
+ * config/open-axiom.m4 (X_PRE_LIBS): Fix typo.
+
2015-07-09 Igor Pashev <pashev.igor@gmail.com>
* config/open-axiom.m4 (OPENAXIOM_HOST_COMPILERS): Make sure AC_PROG_CC
diff --git a/config/open-axiom.m4 b/config/open-axiom.m4
index 4c4a7221..54a90d48 100644
--- a/config/open-axiom.m4
+++ b/config/open-axiom.m4
@@ -1036,7 +1036,7 @@ AC_PATH_XTRA
## complication right now. Will fix later.
## But we can check for the existence of <X11/xpm.h>
## Also check for Xt headers
-X_PRE_LIBS="-lXpm -Xt $X_PRE_LIBS"
+X_PRE_LIBS="-lXpm -lXt $X_PRE_LIBS"
AC_SUBST(X_PRE_LIBS)
## If the system supports X11, then build graphics
diff --git a/configure b/configure
index 4c72008b..70634613 100755
--- a/configure
+++ b/configure
@@ -19001,7 +19001,7 @@ fi
## complication right now. Will fix later.
## But we can check for the existence of <X11/xpm.h>
## Also check for Xt headers
-X_PRE_LIBS="-lXpm -Xt $X_PRE_LIBS"
+X_PRE_LIBS="-lXpm -lXt $X_PRE_LIBS"
## If the system supports X11, then build graphics