[Xfce4-commits] r23250 - in libxfce4mcs/trunk: . docs docs/tmpl examples libxfce4mcs

Benedikt Meurer benny at xfce.org
Sun Oct 1 11:07:24 UTC 2006


Author: benny
Date: 2006-10-01 11:07:17 +0000 (Sun, 01 Oct 2006)
New Revision: 23250

Added:
   libxfce4mcs/trunk/configure.in.in
Removed:
   libxfce4mcs/trunk/configure.ac
Modified:
   libxfce4mcs/trunk/
   libxfce4mcs/trunk/Makefile.am
   libxfce4mcs/trunk/autogen.sh
   libxfce4mcs/trunk/docs/Makefile.am
   libxfce4mcs/trunk/docs/libxfce4mcs-docs.sgml
   libxfce4mcs/trunk/docs/tmpl/mcs-channel.sgml
   libxfce4mcs/trunk/docs/tmpl/mcs-client.sgml
   libxfce4mcs/trunk/docs/tmpl/mcs-common.sgml
   libxfce4mcs/trunk/docs/tmpl/mcs-manager.sgml
   libxfce4mcs/trunk/docs/version.xml.in
   libxfce4mcs/trunk/examples/testclient.c
   libxfce4mcs/trunk/libxfce4mcs/Makefile.am
   libxfce4mcs/trunk/libxfce4mcs/mcs-channel.c
   libxfce4mcs/trunk/libxfce4mcs/mcs-channel.h
   libxfce4mcs/trunk/libxfce4mcs/mcs-client-enum-types.c
   libxfce4mcs/trunk/libxfce4mcs/mcs-client-enum-types.h
   libxfce4mcs/trunk/libxfce4mcs/mcs-client.c
   libxfce4mcs/trunk/libxfce4mcs/mcs-client.h
   libxfce4mcs/trunk/libxfce4mcs/mcs-common.c
   libxfce4mcs/trunk/libxfce4mcs/mcs-common.h
   libxfce4mcs/trunk/libxfce4mcs/mcs-manager.c
   libxfce4mcs/trunk/libxfce4mcs/mcs-manager.h
Log:
Update the build framework. Properly link with gobject. Bug #2330.




Property changes on: libxfce4mcs/trunk
___________________________________________________________________
Name: svn:ignore
   - Makefile
autom4te.cache
config.h
config.log
config.status
configure.lineno
libtool
libxfce4mcs.spec
stamp-h1
Makefile.in
aclocal.m4
compile
config.guess
config.h.in
config.sub
configure
depcomp
gtk-doc.make
install-sh
ltmain.sh
missing

   + Makefile
autom4te.cache
config.h
config.log
config.status
configure.in
configure.lineno
libtool
libxfce4mcs.spec
stamp-h1
Makefile.in
aclocal.m4
compile
config.guess
config.h.in
config.sub
configure
depcomp
gtk-doc.make
install-sh
ltmain.sh
missing


Modified: libxfce4mcs/trunk/Makefile.am
===================================================================
--- libxfce4mcs/trunk/Makefile.am	2006-10-01 10:43:22 UTC (rev 23249)
+++ libxfce4mcs/trunk/Makefile.am	2006-10-01 11:07:17 UTC (rev 23250)
@@ -4,10 +4,6 @@
 	libxfce4mcs							\
 	docs
 
-AUTOMAKE_OPTIONS =							\
-	1.8								\
-	dist-bzip2
-
 distclean-local:
 	rm -rf libxfce4mcs.spec *.cache *~
 
@@ -26,8 +22,7 @@
 	gtk-doc.make							\
 	libxfce4mcs.spec
 
-ACLOCAL_AMFLAGS = -I m4
+DISTCHECK_CONFIGURE_FLAGS =						\
+	--enable-gtk-doc
 
-DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
-
 # vi:set ts=8 sw=8 noet ai nocindent syntax=automake:


Property changes on: libxfce4mcs/trunk/Makefile.am
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev

Modified: libxfce4mcs/trunk/autogen.sh
===================================================================
--- libxfce4mcs/trunk/autogen.sh	2006-10-01 10:43:22 UTC (rev 23249)
+++ libxfce4mcs/trunk/autogen.sh	2006-10-01 11:07:17 UTC (rev 23250)
@@ -2,7 +2,7 @@
 #
 # $Id$
 #
-# Copyright (c) 2002-2005
+# Copyright (c) 2002-2006
 #         The Xfce development team. All rights reserved.
 #
 # Written for Xfce by Benedikt Meurer <benny at xfce.org>.
@@ -18,6 +18,11 @@
   exit 1
 }
 
+# substitute revision and linguas
+revision=`LC_ALL=C svn info $0 | awk '/^Revision: / {printf "%05d\n", $2}'`
+sed -e "s/@REVISION@/${revision}/g" \
+    < "configure.in.in" > "configure.in"
+
 exec xdt-autogen $@
 
 # vi:set ts=2 sw=2 et ai:


Property changes on: libxfce4mcs/trunk/autogen.sh
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev

Deleted: libxfce4mcs/trunk/configure.ac

Copied: libxfce4mcs/trunk/configure.in.in (from rev 23249, libxfce4mcs/trunk/configure.ac)
===================================================================
--- libxfce4mcs/trunk/configure.in.in	                        (rev 0)
+++ libxfce4mcs/trunk/configure.in.in	2006-10-01 11:07:17 UTC (rev 23250)
@@ -0,0 +1,215 @@
+dnl $Id$
+dnl
+dnl Copyright (c) 2002-2006
+dnl         The Xfce development team. All rights reserved.
+dnl
+dnl Written for Xfce by Benedikt Meurer <benny at xfce.org>, Jasper
+dnl Huijsmans <jasper at xfce.org> and Olivier Fourdan <fourdan at xfce.org>.
+dnl Based on the xsettings sample implementation by Owen Taylor.
+dnl
+
+dnl Version information
+m4_define([libxfce4mcs_verinfo], [3:1:0])
+m4_define([libxfce4mcs_version_major], [4])
+m4_define([libxfce4mcs_version_minor], [3])
+m4_define([libxfce4mcs_version_micro], [99])
+m4_define([libxfce4mcs_version_nano], [1])   dnl leave this empty to have no nano version
+m4_define([libxfce4mcs_version_build], [r at REVISION@])
+m4_define([libxfce4mcs_version_tag], [svn])
+m4_define([libxfce4mcs_version], [libxfce4mcs_version_major().libxfce4mcs_version_minor().libxfce4mcs_version_micro()ifelse(libxfce4mcs_version_tag(), [svn], [libxfce4mcs_version_tag()-libxfce4mcs_version_build()], [libxfce4mcs_version_tag()])])
+
+
+dnl # DO NOT MODIFY ANYTHING BELOW THIS LINE, UNLESS YOU KNOW WHAT
+dnl # YOU ARE DOING.
+
+
+dnl *******************************************
+dnl *** Debugging support for SVN snapshots ***
+dnl *******************************************
+m4_define([libxfce4mcs_debug_default], [ifelse(libxfce4mcs_version_tag(), [svn], [yes], [minimum])])
+
+dnl ***************************
+dnl *** Initialize autoconf ***
+dnl ***************************
+AC_COPYRIGHT([Copyright (c) 2002-2006
+        The Xfce development team. All rights reserved.
+
+Written for Xfce by Benedikt Meurer <benny at xfce.org>, Jasper
+Huijsmans <jasper at xfce.org> and Olivier Fourdan <fourdan at xfce.org>.
+Based on the xsettings sample implementation by Owen Taylor.])
+AC_INIT([libxfce4mcs], [libxfce4mcs_version()], [http://bugzilla.xfce.org/])
+AC_PREREQ([2.50])
+AC_CANONICAL_TARGET()
+AC_REVISION([$Id$])
+
+dnl ***************************
+dnl *** Initialize automake ***
+dnl ***************************
+AM_INIT_AUTOMAKE([1.8 dist-bzip2 tar-ustar])
+AM_CONFIG_HEADER([config.h])
+AM_MAINTAINER_MODE()
+
+dnl *******************************
+dnl *** Check for UNIX variants ***
+dnl *******************************
+AC_AIX()
+AC_ISC_POSIX()
+AC_MINIX()
+
+dnl ********************************
+dnl *** Check for basic programs ***
+dnl ********************************
+AC_PROG_CC()
+AC_PROG_LD()
+AC_PROG_INSTALL()
+
+dnl **************************************
+dnl *** Substitute version information ***
+dnl **************************************
+LIBXFCE4MCS_VERINFO=libxfce4mcs_verinfo()
+AC_SUBST([LIBXFCE4MCS_VERINFO])
+
+dnl **************************
+dnl *** Initialize libtool ***
+dnl **************************
+AC_DISABLE_STATIC()
+AC_PROG_LIBTOOL()
+
+dnl **********************************
+dnl *** Check for standard headers ***
+dnl **********************************
+AC_HEADER_STDC()
+AC_CHECK_HEADERS([fcntl.h limits.h])
+
+dnl ************************************
+dnl *** Check for standard functions ***
+dnl ************************************
+AC_FUNC_MMAP()
+
+dnl *******************************
+dnl *** Check for X11 installed ***
+dnl *******************************
+XDT_CHECK_LIBX11_REQUIRE()
+XDT_CHECK_LIBSM()
+
+dnl ******************************
+dnl *** Check for dependencies ***
+dnl ******************************
+XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.3.99.1])
+XDT_CHECK_PACKAGE([GOBJECT], [gobject-2.0], [2.6.0])
+
+dnl ***************************************
+dnl *** Check for optional dependencies ***
+dnl ***************************************
+XDT_CHECK_OPTIONAL_PACKAGE([LIBSTARTUP_NOTIFICATION],
+                           [libstartup-notification-1.0], [0.5],
+                           [startup-notification],
+                           [startup notification library], [yes])
+
+dnl *************************
+dnl *** Check for gtk-doc ***
+dnl *************************
+GTK_DOC_CHECK([1.0])
+
+dnl ***********************************
+dnl *** Check for debugging support ***
+dnl ***********************************
+AC_ARG_ENABLE([debug],
+AC_HELP_STRING([--enable-debug=@<:@no/minimum/yes/full@:>@], [Turn on debugging @<:@default=libxfce4mcs_debug_default@:>@]),
+  [], [enable_debug=libxfce4mcs_debug_default])
+AC_MSG_CHECKING([whether to enable debugging support])
+if test x"$enable_debug" = x"full" -o x"$enable_debug" = x"yes"; then
+  dnl Print the result
+  AC_MSG_RESULT([$enable_debug])
+
+  dnl Make sure we detect possible errors (if supported)
+  save_CFLAGS="$CFLAGS"
+  CFLAGS="$CFLAGS -Wall -Werror"
+  AC_MSG_CHECKING([whether $CC accepts -Wall -Werror])
+  AC_COMPILE_IFELSE(AC_LANG_SOURCE([int x;]), [
+    AC_MSG_RESULT([yes])
+    PLATFORM_CFLAGS="$PLATFORM_CFLAGS -Wall -Werror"
+  ], [
+    AC_MSG_RESULT([no])
+  ])
+  CFLAGS="$save_CFLAGS"
+
+  dnl Paranoia for --enable-debug=full
+  if test x"$enable_debug" = x"full"; then
+    dnl Enable extensive debugging
+    PLATFORM_CPPFLAGS="$PLATFORM_CPPFLAGS -DG_ENABLE_DEBUG"
+
+    dnl Use -O0 -g3 if the compiler supports it
+    save_CFLAGS="$CFLAGS"
+    CFLAGS="$CFLAGS -O0 -g3"
+    AC_MSG_CHECKING([whether $CC accepts -O0 -g3])
+    AC_COMPILE_IFELSE(AC_LANG_SOURCE([int x;]), [
+      AC_MSG_RESULT([yes])
+      PLATFORM_CFLAGS="$PLATFORM_CFLAGS -O0 -g3"
+    ], [
+      AC_MSG_RESULT([no])
+    ])
+    CFLAGS="$save_CFLAGS"
+  fi
+else
+  dnl Print the result
+  AC_MSG_RESULT([$enable_debug])
+
+  dnl Disable debugging (release build)
+  PLATFORM_CPPFLAGS="$PLATFORM_CPPFLAGS -DNDEBUG"
+
+  dnl Disable object cast checks
+  PLATFORM_CPPFLAGS="$PLATFORM_CPPFLAGS -DG_DISABLE_CAST_CHECKS"
+
+  dnl Disable all checks for --enable-debug=no
+  if test x"$enable_debug" = x"no"; then
+    PLATFORM_CPPFLAGS="$PLATFORM_CPPFLAGS -DG_DISABLE_ASSERT -DG_DISABLE_CHECKS"
+  fi
+fi
+
+dnl **************************************
+dnl *** Check for linker optimizations ***
+dnl **************************************
+AC_MSG_CHECKING([whether $LD accepts --as-needed])
+case `$LD --as-needed -v 2>&1 </dev/null` in
+*GNU* | *'with BFD'*)
+  LDFLAGS="$LDFLAGS -Wl,--as-needed"
+  AC_MSG_RESULT([yes])
+  ;;
+*)
+  AC_MSG_RESULT([no])
+  ;;
+esac
+AC_MSG_CHECKING([whether $LD accepts -O1])
+case `$LD -O1 -v 2>&1 </dev/null` in
+*GNU* | *'with BFD'*)
+  PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -Wl,-O1"
+  AC_MSG_RESULT([yes])
+  ;;
+*)
+  AC_MSG_RESULT([no])
+  ;;
+esac
+
+dnl *********************************
+dnl *** Substitute platform flags ***
+dnl *********************************
+AC_MSG_CHECKING([PLATFORM_CPPFLAGS])
+AC_MSG_RESULT([$PLATFORM_CPPFLAGS])
+AC_SUBST([PLATFORM_CPPFLAGS])
+AC_MSG_CHECKING([PLATFORM_CFLAGS])
+AC_MSG_RESULT([$PLATFORM_CFLAGS])
+AC_SUBST([PLATFORM_CFLAGS])
+AC_MSG_CHECKING([PLATFORM_LDFLAGS])
+AC_MSG_RESULT([$PLATFORM_LDFLAGS])
+AC_SUBST([PLATFORM_LDFLAGS])
+
+AC_OUTPUT([
+libxfce4mcs.spec
+Makefile
+docs/Makefile
+docs/version.xml
+libxfce4mcs/Makefile
+libxfce4mcs/libxfce4mcs-manager-1.0.pc
+libxfce4mcs/libxfce4mcs-client-1.0.pc
+])


Property changes on: libxfce4mcs/trunk/configure.in.in
___________________________________________________________________
Name: svn:keywords
   + Author Date Id Rev

Modified: libxfce4mcs/trunk/docs/Makefile.am
===================================================================
--- libxfce4mcs/trunk/docs/Makefile.am	2006-10-01 10:43:22 UTC (rev 23249)
+++ libxfce4mcs/trunk/docs/Makefile.am	2006-10-01 11:07:17 UTC (rev 23250)
@@ -1,4 +1,4 @@
-## Process this file with automake to produce Makefile.in
+# $Id$
 
 AUTOMAKE_OPTIONS = 1.6
 
@@ -45,7 +45,8 @@
 	$(GTK_CFLAGS)					\
 	$(LIBSM_CFLAGS)					\
 	$(LIBX11_CFLAGS)				\
-	$(LIBXFCE4UTIL_CFLAGS)				
+	$(LIBXFCE4UTIL_CFLAGS)				\
+	$(GOBJECT_CFLAGS)
 
 GTKDOC_LIBS =  						\
 	$(top_builddir)/libxfce4mcs/libxfce4mcs-manager.la \
@@ -57,3 +58,4 @@
 EXTRA_DIST +=						\
 	version.xml.in
 
+# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:


Property changes on: libxfce4mcs/trunk/docs/Makefile.am
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/docs/libxfce4mcs-docs.sgml
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/docs/tmpl/mcs-channel.sgml
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/docs/tmpl/mcs-client.sgml
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/docs/tmpl/mcs-common.sgml
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/docs/tmpl/mcs-manager.sgml
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/docs/version.xml.in
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/examples/testclient.c
___________________________________________________________________
Name: svn:keywords
   + Author Date Id Rev

Modified: libxfce4mcs/trunk/libxfce4mcs/Makefile.am
===================================================================
--- libxfce4mcs/trunk/libxfce4mcs/Makefile.am	2006-10-01 10:43:22 UTC (rev 23249)
+++ libxfce4mcs/trunk/libxfce4mcs/Makefile.am	2006-10-01 11:07:17 UTC (rev 23250)
@@ -1,6 +1,10 @@
+# $Id$
+
 INCLUDES =								\
 	-DG_LOG_DOMAIN=\"libxfce4mcs\"					\
-	-I$(top_srcdir)
+	-I$(top_builddir)						\
+	-I$(top_srcdir)							\
+	$(PLATFORM_CPPFLAGS)
 
 lib_LTLIBRARIES =							\
 	libxfce4mcs-manager.la						\
@@ -21,10 +25,10 @@
 	xgen-mcsh
 
 DISTCLEANFILES =							\
-	stamp-mcs-client-enum-types.h \
+	stamp-mcs-client-enum-types.h					\
 	$(mcs_built_sources)
 
-BUILT_SOURCES = \
+BUILT_SOURCES =								\
 	$(mcs_built_sources)
 
 mcs_headers = mcs-client.h mcs-manager.h mcs-common.h
@@ -73,30 +77,28 @@
 
 libxfce4mcs_manager_la_LDFLAGS =					\
 	-export-dynamic							\
-	-version-info @LIBXFCE4MCS_VERINFO@ 				\
 	-export-symbols-regex "^[^_].*"					\
-	@LIBSM_LDFLAGS@							\
-	@LIBX11_LDFLAGS@
+	-no-undefined							\
+	-version-info $(LIBXFCE4MCS_VERINFO) 				\
+	$(LIBSM_LDFLAGS)						\
+	$(LIBX11_LDFLAGS)						\
+	$(PLATFORM_LDFLAGS)
 
 libxfce4mcs_manager_la_LIBADD =						\
-	@LIBSM_LIBS@							\
-	@LIBX11_LIBS@							\
-	@LIBXFCE4UTIL_LIBS@							\
-	@LIBSTARTUP_NOTIFICATION_LIBS@
+	$(GOBJECT_LIBS)							\
+	$(LIBSM_LIBS)							\
+	$(LIBX11_LIBS)							\
+	$(LIBXFCE4UTIL_LIBS)						\
+	$(LIBSTARTUP_NOTIFICATION_LIBS)
 
 libxfce4mcs_manager_la_CFLAGS =						\
-	@LIBSM_CFLAGS@							\
-	@LIBX11_CFLAGS@							\
-	@LIBXFCE4UTIL_CFLAGS@						\
-	@LIBSTARTUP_NOTIFICATION_CFLAGS@
+	$(GOBJECT_CFLAGS)						\
+	$(LIBSM_CFLAGS)							\
+	$(LIBX11_CFLAGS)						\
+	$(LIBXFCE4UTIL_CFLAGS)						\
+	$(LIBSTARTUP_NOTIFICATION_CFLAGS)				\
+	$(PLATFORM_CFLAGS)
 
-if HAVE_CYGWIN
-libxfce4mcs_manager_la_LDFLAGS += -no-undefined
-libxfce4mcs_manager_la_LIBADD += @GOBJECT_LIBS@
-libxfce4mcs_manager_la_CFLAGS += @GOBJECT_CFLAGS@
-endif
-
-
 libxfce4mcs_clientincludedir = $(includedir)/xfce4/libxfce4mcs
 
 libxfce4mcs_clientinclude_HEADERS =					\
@@ -111,39 +113,37 @@
 	mcs-common.h  							\
 	mcs-client.c 							\
 	mcs-client.h							\
-	mcs-client-enum-types.c \
+	mcs-client-enum-types.c 					\
 	mcs-client-enum-types.h
 
 libxfce4mcs_client_la_LDFLAGS =						\
 	-export-dynamic							\
-	-version-info @LIBXFCE4MCS_VERINFO@ 				\
 	-export-symbols-regex "^[^_].*"					\
-	@LIBSM_LDFLAGS@							\
-	@LIBX11_LDFLAGS@
+	-no-undefined							\
+	-version-info $(LIBXFCE4MCS_VERINFO) 				\
+	$(LIBSM_LDFLAGS)						\
+	$(LIBX11_LDFLAGS)						\
+	$(PLATFORM_LDFLAGS)
 
 libxfce4mcs_client_la_LIBADD =						\
-	@LIBSM_LIBS@							\
-	@LIBX11_LIBS@							\
-	@LIBXFCE4UTIL_LIBS@							\
-	@LIBSTARTUP_NOTIFICATION_LIBS@
+	$(GOBJECT_LIBS)							\
+	$(LIBSM_LIBS)							\
+	$(LIBX11_LIBS)							\
+	$(LIBXFCE4UTIL_LIBS)						\
+	$(LIBSTARTUP_NOTIFICATION_LIBS)
 
 libxfce4mcs_client_la_CFLAGS =						\
-	-I$(top_srcdir)							\
-	@LIBSM_CFLAGS@							\
-	@LIBX11_CFLAGS@							\
-	@LIBXFCE4UTIL_CFLAGS@						\
-	@LIBSTARTUP_NOTIFICATION_CFLAGS@
+	$(GOBJECT_CFLAGS)						\
+	$(LIBSM_CFLAGS)							\
+	$(LIBX11_CFLAGS)						\
+	$(LIBXFCE4UTIL_CFLAGS)						\
+	$(LIBSTARTUP_NOTIFICATION_CFLAGS)				\
+	$(PLATFORM_CFLAGS)
 
-if HAVE_CYGWIN
-libxfce4mcs_client_la_LDFLAGS += -no-undefined
-libxfce4mcs_client_la_LIBADD += @GOBJECT_LIBS@
-libxfce4mcs_client_la_CFLAGS += @GOBJECT_CFLAGS@
-endif
-
-
 pkgconfigdir = $(libdir)/pkgconfig
 
 pkgconfig_DATA =							\
 	libxfce4mcs-manager-1.0.pc					\
 	libxfce4mcs-client-1.0.pc
 
+# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:


Property changes on: libxfce4mcs/trunk/libxfce4mcs/Makefile.am
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/libxfce4mcs/mcs-channel.c
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/libxfce4mcs/mcs-channel.h
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/libxfce4mcs/mcs-client-enum-types.c
___________________________________________________________________
Name: svn:keywords
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/libxfce4mcs/mcs-client-enum-types.h
___________________________________________________________________
Name: svn:keywords
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/libxfce4mcs/mcs-client.c
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/libxfce4mcs/mcs-client.h
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/libxfce4mcs/mcs-common.c
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/libxfce4mcs/mcs-common.h
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/libxfce4mcs/mcs-manager.c
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev


Property changes on: libxfce4mcs/trunk/libxfce4mcs/mcs-manager.h
___________________________________________________________________
Name: svn:keywords
   - Author Date Id Revision
   + Author Date Id Rev



More information about the Xfce4-commits mailing list