SF.net SVN: geany:[5128] trunk
frlan at users.sourceforge.net
frlan at xxxxx
Tue Aug 10 20:42:42 UTC 2010
Revision: 5128
http://geany.svn.sourceforge.net/geany/?rev=5128&view=rev
Author: frlan
Date: 2010-08-10 20:42:42 +0000 (Tue, 10 Aug 2010)
Log Message:
-----------
Applying a patch by Erik de Castro Lopo for checking against pkg-config when running autogen.sh.
Modified Paths:
--------------
trunk/ChangeLog
trunk/autogen.sh
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2010-08-10 16:53:40 UTC (rev 5127)
+++ trunk/ChangeLog 2010-08-10 20:42:42 UTC (rev 5128)
@@ -1,3 +1,10 @@
+2010-08-10 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+
+ * autogen.sh:
+ Applying a patch by Erik de Castro Lopo for checking against
+ pkg-config when running autogen.sh. Thanks for the patch.
+
+
2010-08-10 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* src/keybindings.c, src/keybindings.h, src/prefs.c, src/plugindata.h:
Modified: trunk/autogen.sh
===================================================================
--- trunk/autogen.sh 2010-08-10 16:53:40 UTC (rev 5127)
+++ trunk/autogen.sh 2010-08-10 20:42:42 UTC (rev 5128)
@@ -44,6 +44,14 @@
}
}
+(pkg-config --version) < /dev/null > /dev/null 2>&1 || {
+ echo
+ echo "You must have pkg-config installed to compile $package."
+ echo "Download the appropriate package for your distribution."
+ result="no"
+ DIE=1
+}
+
(automake --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "**Error**: You must have \`automake' (1.7 or later) installed."
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list