diff options
author | Bill Page <bill.page@newsynthesis.org> | 2016-02-14 19:37:28 -0800 |
---|---|---|
committer | Gabriel Dos Reis <gdr@axiomatics.org> | 2016-02-14 19:37:28 -0800 |
commit | 3d46fd5b7318beb00cfb780389650fcfe4b45065 (patch) | |
tree | 62cf5f7f217139a77762429f01f9c058743d064b /configure | |
parent | b433b8c3a0b2a3089269be8c3149ac7cdcf449cc (diff) | |
download | open-axiom-3d46fd5b7318beb00cfb780389650fcfe4b45065.tar.gz |
Fix typo in calculation of X_PRE_LIBS
The previous value set "-Xt" when it should have been "-lXt".
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |