diff options
author | dos-reis <gdr@axiomatics.org> | 2010-11-27 12:23:40 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2010-11-27 12:23:40 +0000 |
commit | a68743eb3dbb06394a9eb1e61f03e815dd8539e5 (patch) | |
tree | 6f8c7d27a8d29c2844fb91382c1f52861efc2fbc /config | |
parent | bc3dd74e510c77a11ddc81a95e207023cfd629af (diff) | |
download | open-axiom-a68743eb3dbb06394a9eb1e61f03e815dd8539e5.tar.gz |
Diffstat (limited to 'config')
-rw-r--r-- | config/open-axiom.m4 | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/config/open-axiom.m4 b/config/open-axiom.m4 index 774a13f9..3e53c66b 100644 --- a/config/open-axiom.m4 +++ b/config/open-axiom.m4 @@ -824,20 +824,18 @@ if test x"$ac_cv_have_decl_openpty" = xyes; then \ AC_SEARCH_LIBS([openpty],[util]) fi -axiom_use_sman=1 +oa_use_sman=1 if test x"$ac_cv_have_decl_fork" = xyes \ -a x"$ac_cv_have_decl_wait" = xyes; then \ oa_c_runtime="$oa_c_runtime terminal_io" axiom_src_all="$axiom_src_all all-sman all-clef" axiom_src_subdirs="$axiom_src_subdirs clef sman" - OPENAXIOM_MAKEFILE([src/clef/Makefile]) - OPENAXIOM_MAKEFILE([src/sman/Makefile]) else - axiom_use_sman=0 + oa_use_sman=0 AC_MSG_NOTICE([Superman component is disabled.]) fi -AC_DEFINE_UNQUOTED([OPENAXIOM_USE_SMAN], [$axiom_use_sman], +AC_DEFINE_UNQUOTED([OPENAXIOM_USE_SMAN], [$oa_use_sman], [Whether to use the session manager as driver.]) axiom_src_all="all-input $axiom_src_all" @@ -891,12 +889,6 @@ if test -z "$no_x"; then oa_c_runtime="$oa_c_runtime graphics" axiom_src_all="$axiom_src_all all-graph" axiom_src_subdirs="$axiom_src_subdirs graph" - OPENAXIOM_MAKEFILE([src/graph/Makefile]) - OPENAXIOM_MAKEFILE([src/graph/Gdraws/Makefile]) - OPENAXIOM_MAKEFILE([src/graph/view2D/Makefile]) - OPENAXIOM_MAKEFILE([src/graph/view3D/Makefile]) - OPENAXIOM_MAKEFILE([src/graph/viewAlone/Makefile]) - OPENAXIOM_MAKEFILE([src/graph/viewman/Makefile]) else AC_MSG_NOTICE([The Garphics component is disabled.]) fi |