]> granicus.if.org Git - graphviz/commitdiff
add status info for ltdl, shared, static
authorellson <devnull@localhost>
Wed, 22 Oct 2008 17:39:10 +0000 (17:39 +0000)
committerellson <devnull@localhost>
Wed, 22 Oct 2008 17:39:10 +0000 (17:39 +0000)
configure.ac
tclpkg/gv/Makefile.am
tclpkg/tcldot/Makefile.am

index 61170a092616bd59413ade8512a56bba8633cd93..3f17e91d3db055a23d548c5ede3cd4f3bfc43daf 100644 (file)
@@ -225,8 +225,10 @@ AC_ARG_ENABLE(static,
 if test "x$enable_static" = "xyes"; then
        AC_ENABLE_STATIC
        AC_DEFINE(ENABLE_STATIC,1,[Define if you want statically linked executables])
+        use_static="No (disabled by default)"
 else
        AC_DISABLE_STATIC
+        use_static="Yes"
 fi
 AM_CONDITIONAL(ENABLE_STATIC, [test "x$enable_static" = "xyes"])
 
@@ -235,7 +237,9 @@ AC_ARG_ENABLE(shared,
 if test "x$enable_shared" != "xno"; then
        AC_ENABLE_SHARED
        AC_DEFINE(ENABLE_SHARED,1,[Define if you want shared lib executables])
+        use_shared="Yes"
 else
+        use_shared="No (disabled)"
        AC_DISABLE_SHARED
 fi
 AM_CONDITIONAL(ENABLE_SHARED, [test "x$enable_shared" = "xyes"])
@@ -465,9 +469,12 @@ dnl libtool ltdl on-demand plugin loading
 AC_ARG_ENABLE(ltdl,
   [AC_HELP_STRING([--enable-ltdl], [support on-demand plugin loading])])
 if test "x$enable_ltdl" != "xno"; then
+  use_ltdl="No (disabled)"
+else
   AC_DEFINE(ENABLE_LTDL,1,[Define if you want on-demand plugin loading])
   AC_CONFIG_SUBDIRS(libltdl)
   AC_LIBTOOL_DLOPEN
+  use_ltdl="Yes"
   
   if test "x$DARWIN9" = "xyes"; then
      AC_LIBLTDL_CONVENIENCE
@@ -3042,8 +3049,11 @@ echo "  fontconfig:    $use_fontconfig"
 echo "  freetype:      $use_freetype"
 echo "  gts:           $use_gts"
 echo "  ipsepcola:     $use_ipsepcola"
+echo "  ltdl:          $use_ltdl"
 echo "  ortho:         $use_ortho"
 echo "  sfdp:          $use_sfdp"
+echo "  shared:        $use_shared"
+echo "  static:        $use_static"
 echo ""
 echo "commands:"
 echo "  dot:           Yes (always enabled)"
index 36f3ea3573f4a63dfba2d4397d85ae214d93c8f4..47a464a6f177457889902748881882d43118d36e 100644 (file)
@@ -19,7 +19,7 @@ AM_CPPFLAGS = \
        -I$(top_srcdir)/lib/cdt \
        -I$(top_srcdir)/lib/pathplan
 
-LIBS =  $(LIBS) -lc
+LIBS = -lc
 
 BASESOURCES = gv.cpp gv.i
 BASELIBS = $(top_builddir)/lib/gvc/libgvc.la \
index 729b4a07cce60d65766a9c75b46d7808438092fd..12682b557f63b0639a67efd51caa36bc520b11f6 100644 (file)
@@ -23,7 +23,7 @@ AM_CPPFLAGS = \
        -I$(top_srcdir)/lib/pathplan \
        -I$(top_srcdir)/tclpkg/tclhandle $(GD_INCLUDES) $(TCL_INCLUDES)
 
-LIBS =  $(LIBS) -lc
+LIBS = -lc
 
 AM_CFLAGS = $(TCL_CFLAGS)