]> granicus.if.org Git - graphviz/commitdiff
add --with-ortho support for the next time Emden wants to try it
authorellson <devnull@localhost>
Fri, 17 Oct 2008 21:34:10 +0000 (21:34 +0000)
committerellson <devnull@localhost>
Fri, 17 Oct 2008 21:34:10 +0000 (21:34 +0000)
configure.ac

index c5447c1d91396bffb5669008cb233e05c68499ca..b207e035d3b988bdc12b9a3fce6279b41cfb543b 100644 (file)
@@ -2663,6 +2663,21 @@ else
 fi
 AM_CONDITIONAL(WITH_CGRAPH, [test "x$use_cgraph" = "xYes"])
 
+dnl -----------------------------------
+dnl ORTHO 
+
+AC_ARG_WITH(ortho,
+  [AC_HELP_STRING([--with-ortho=no], [ORTHO features in neato layout engine])],
+  [], [with_ortho=no])
+
+if test "x$with_ortho" != "xyes"; then
+  use_ortho="No (disabled by default - experimental)"
+else
+  use_ortho="Yes"
+  AC_DEFINE_UNQUOTED(ORTHO,1,[Define if you want ORTHO])
+fi
+AM_CONDITIONAL(WITH_ORTHO, [test "x$use_ortho" = "xYes"])
+
 dnl -----------------------------------
 dnl DIGCOLA 
 
@@ -3022,14 +3037,15 @@ echo "graphviz-$VERSION will be compiled with the following:"
 echo ""
 echo "options:"
 echo "  cgraph:        $use_cgraph"
+echo "  codegens:      $use_codegens"
 echo "  digcola:       $use_digcola"
+echo "  expat:         $use_expat"
+echo "  fontconfig:    $use_fontconfig"
+echo "  freetype:      $use_freetype"
 echo "  gts:           $use_gts"
 echo "  ipsepcola:     $use_ipsepcola"
+echo "  ortho:         $use_ortho"
 echo "  sfdp:          $use_sfdp"
-echo "  codegens:      $use_codegens"
-echo "  fontconfig:    $use_fontconfig"
-echo "  freetype:      $use_freetype"
-echo "  expat:         $use_expat"
 echo ""
 echo "commands:"
 echo "  dot:           Yes (always enabled)"