SF.net SVN: geany-plugins:[1707] trunk/geany-plugins/addons

hyperair at users.sourceforge.net hyperair at xxxxx
Fri Nov 5 18:34:06 UTC 2010


Revision: 1707
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1707&view=rev
Author:   hyperair
Date:     2010-11-05 18:34:06 +0000 (Fri, 05 Nov 2010)

Log Message:
-----------
Add hooks for ENABLE_ADDONS conditional in Makefile.am

Modified Paths:
--------------
    trunk/geany-plugins/addons/Makefile.am
    trunk/geany-plugins/addons/src/Makefile.am

Modified: trunk/geany-plugins/addons/Makefile.am
===================================================================
--- trunk/geany-plugins/addons/Makefile.am	2010-11-05 18:33:35 UTC (rev 1706)
+++ trunk/geany-plugins/addons/Makefile.am	2010-11-05 18:34:06 UTC (rev 1707)
@@ -1,4 +1,8 @@
+if ENABLE_ADDONS
 include $(top_srcdir)/build/vars.auxfiles.mk
+else
+include $(top_srcdir)/build/vars.docs.mk
+endif
 
 SUBDIRS = src
 plugin = addons

Modified: trunk/geany-plugins/addons/src/Makefile.am
===================================================================
--- trunk/geany-plugins/addons/src/Makefile.am	2010-11-05 18:33:35 UTC (rev 1706)
+++ trunk/geany-plugins/addons/src/Makefile.am	2010-11-05 18:34:06 UTC (rev 1707)
@@ -1,7 +1,10 @@
 include $(top_srcdir)/build/vars.build.mk
 
-geanyplugins_LTLIBRARIES = \
-	addons.la
+if ENABLE_ADDONS
+geanyplugins_LTLIBRARIES = addons.la
+else
+EXTRA_LTLIBRARIES = addons.la
+endif
 
 addons_la_SOURCES = \
 	addons.h \


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Plugins-Commits mailing list