[Goodies-commits] r2556 - in thunar-svn-plugin/trunk: . thunar-svn-plugin

Peter de Ridder peter at xfce.org
Thu Mar 15 22:55:53 CET 2007


Author: peter
Date: 2007-03-15 21:55:52 +0000 (Thu, 15 Mar 2007)
New Revision: 2556

Modified:
   thunar-svn-plugin/trunk/configure.in.in
   thunar-svn-plugin/trunk/thunar-svn-plugin/Makefile.am
Log:
Added check for the required svn libraries in configure


Modified: thunar-svn-plugin/trunk/configure.in.in
===================================================================
--- thunar-svn-plugin/trunk/configure.in.in	2007-03-14 20:07:53 UTC (rev 2555)
+++ thunar-svn-plugin/trunk/configure.in.in	2007-03-15 21:55:52 UTC (rev 2556)
@@ -73,6 +73,24 @@
 XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.6.0])
 XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.6.0])
 XDT_CHECK_PACKAGE([GOBJECT], [gobject-2.0], [2.6.0])
+AC_CHECK_LIB([svn_subr-1], [main], ,
+[
+	echo "*** The required library 'svn_subr-1' was not found on your system."
+	echo "*** Please install libsvn (atleast version 1.4)."
+	exit 1
+])
+AC_CHECK_LIB([svn_fs-1], [main], ,
+[
+	echo "*** The required library 'svn_fs-1' was not found on your system."
+	echo "*** Please install libsvn (atleast version 1.4)."
+	exit 1
+])
+AC_CHECK_LIB([svn_wc-1], [main], ,
+[
+	echo "*** The required library 'svn_wc-1' was not found on your system."
+	echo "*** Please install libsvn (atleast version 1.4)."
+	exit 1
+])
 
 dnl ***********************************
 dnl *** Check for debugging support ***

Modified: thunar-svn-plugin/trunk/thunar-svn-plugin/Makefile.am
===================================================================
--- thunar-svn-plugin/trunk/thunar-svn-plugin/Makefile.am	2007-03-14 20:07:53 UTC (rev 2555)
+++ thunar-svn-plugin/trunk/thunar-svn-plugin/Makefile.am	2007-03-15 21:55:52 UTC (rev 2556)
@@ -31,9 +31,6 @@
 	-avoid-version							\
 	-export-dynamic							\
 	-module								\
-	-lsvn_subr-1							\
-	-lsvn_fs-1							\
-	-lsvn_wc-1							\
 	$(PLATFORM_LDFLAGS)						\
 	$(THUNARX_LDFLAGS)						\
 	$(THUNAR_VFS_LDFLAGS)						\




More information about the Goodies-commits mailing list