gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r750 - in Extractor: . src/plugins


From: grothoff
Subject: [GNUnet-SVN] r750 - in Extractor: . src/plugins
Date: Fri, 6 May 2005 12:52:47 -0700 (PDT)

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
 
 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]