pidgin/purple-plugin-pack

Parents 86b4ff1a95cb
Children 5d02ebd4577e
--with-plugins lives again... and if you do --with-plugins= (with no argument) all plugins will be assumed
--- a/plugin_pack.py Tue Nov 18 01:43:57 2008 -0500
+++ b/plugin_pack.py Tue Nov 18 01:57:42 2008 -0500
@@ -360,7 +360,10 @@
# add our --with-plugins option
print 'AC_ARG_WITH(plugins,'
print ' AC_HELP_STRING([--with-plugins], [what plugins to build]),'
- print ' ,WITH_PLUGINS=all)'
+ print ' ,with_plugins=all)'
+ print 'if test -z $with_plugins ; then'
+ print '\twith_plugins=all'
+ print 'fi'
# determine and add our output files
print 'PP_DIST_DIRS="%s"' % (string.join(uniqdirs, ' '))
@@ -373,7 +376,7 @@
print
# setup a second call to determine the plugins to be built
- print 'PP_BUILD=`$PYTHON $srcdir/plugin_pack.py build_dirs $DEPENDENCIES $WITH_PLUGINS`'
+ print 'PP_BUILD=`$PYTHON $srcdir/plugin_pack.py build_dirs $DEPENDENCIES $with_plugins`'
print
print 'PP_BUILD_DIRS=`echo $PP_BUILD | sed \'s/,/\ /g\'`'
print 'AC_SUBST(PP_BUILD_DIRS)'