Author: grothoff Date: 2005-05-06 12:52:42 -0700 (Fri, 06 May 2005) New Revision: 750
Modified: Extractor/ChangeLog Extractor/configure.ac Extractor/src/plugins/Makefile.am Log: build updates Modified: Extractor/ChangeLog =================================================================== --- Extractor/ChangeLog 2005-05-06 18:59:19 UTC (rev 749) +++ Extractor/ChangeLog 2005-05-06 19:52:42 UTC (rev 750) @@ -1,3 +1,7 @@ +Fri May 6 14:54:58 EST 2005 + Added flag to disable building of printable extractors + (important for systems with not that much memory). + Fri May 6 06:02:02 EST 2005 Added Python binding. Modified: Extractor/configure.ac =================================================================== --- Extractor/configure.ac 2005-05-06 18:59:19 UTC (rev 749) +++ Extractor/configure.ac 2005-05-06 19:52:42 UTC (rev 750) @@ -227,6 +227,26 @@ fi + +printable=1 +AC_MSG_CHECKING([whether to enable printable extractors]) +AC_ARG_ENABLE(printable, + [AC_HELP_STRING([--enable-printable],[Enable printable support]) + AC_HELP_STRING([--disable-printable],[Disable printable support])], + [case "$enableval" in + no) AC_MSG_RESULT(no) + printable=0 + ;; + *) AC_MSG_RESULT(yes) + printable=1 + ;; + esac], + [ AC_MSG_RESULT(yes) + printable=1]) +AM_CONDITIONAL(HAVE_PRINTABLE, test x$printable != x0) + + + AC_SUBST(CPPFLAGS) AC_SUBST(LDFLAGS) AC_SUBST(XTRA_CPPLIBS) Modified: Extractor/src/plugins/Makefile.am =================================================================== --- Extractor/src/plugins/Makefile.am 2005-05-06 18:59:19 UTC (rev 749) +++ Extractor/src/plugins/Makefile.am 2005-05-06 19:52:42 UTC (rev 750) @@ -14,8 +14,12 @@ thumbdir=thumbnail endif -SUBDIRS = . oo printable hash $(oledir) rpm pdf $(thumbdir) +if HAVE_PRINTABLE + printdir=printable +endif +SUBDIRS = . oo $(printdir) hash $(oledir) rpm pdf $(thumbdir) + PLUGINFLAGS = -export-dynamic -avoid-version -module _______________________________________________ GNUnet-SVN mailing list GNUnet-SVN@gnu.org http://lists.gnu.org/mailman/listinfo/gnunet-svn