[Xfce4-commits] [apps/orage] 01/02: 4.12.0.1 Fixed bug 11807 wrong plugin module name

noreply at xfce.org noreply at xfce.org
Fri Apr 10 11:15:41 CEST 2015


This is an automated email from the git hooks/post-receive script.

juha pushed a commit to branch master
in repository apps/orage.

commit d60ed2175fe8d9531e91266c9a3c309b0d537ec5
Author: Juha Kautto <juha at xfce.org>
Date:   Fri Apr 10 12:12:08 2015 +0300

    4.12.0.1 Fixed bug 11807 wrong plugin module name
    
    Module name has constraints, it needs to start with lib. Fixed.
---
 configure.in.in          |    2 +-
 panel-plugin/Makefile.am |   12 ++++++------
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index 60962c0..9eabbfe 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -9,7 +9,7 @@ dnl Written for Xfce by Juha Kautto <juha at xfce.org>
 dnl
 
 dnl Version information
-m4_define([orage_version], [4.12.0.0-git])
+m4_define([orage_version], [4.12.0.1-git])
 
 m4_define([gtk_minimum_version], [2.14.0])
 m4_define([xfce_minimum_version], [4.8.0])
diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index 6108445..e3538c0 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -1,26 +1,26 @@
 if HAVE_LIBXFCE4PANEL
-plugin_LTLIBRARIES = orageclock.la
+plugin_LTLIBRARIES = liborageclock.la
 endif
 
 plugindir = $(libdir)/xfce4/panel/plugins
 
-orageclock_la_CFLAGS =					\
+liborageclock_la_CFLAGS =					\
 	-DPACKAGE_DATA_DIR=\"$(datadir)\"				\
 	-DPACKAGE_LOCALE_DIR=\"$(localedir)\"			\
 	@LIBXFCE4PANEL_CFLAGS@
 
-orageclock_la_LDFLAGS =					\
+liborageclock_la_LDFLAGS =					\
 	-avoid-version							\
 	-module									\
 	-no-undefined 							\
 	-export-symbols-regex '^xfce_panel_module_(preinit|init|construct)' \
 	$(PLATFORM_LDFLAGS)
 
-orageclock_la_LIBADD =					\
+liborageclock_la_LIBADD =					\
 	@LIBXFCE4PANEL_LIBS@                            \
 	-lX11
 
-orageclock_la_SOURCES = 				\
+liborageclock_la_SOURCES = 				\
 	oc_config.c								\
 	timezone_selection.c					\
 	timezone_selection.h					\
@@ -32,7 +32,7 @@ orageclock_la_SOURCES = 				\
 	../src/functions.h
 
 if HAVE_CYGWIN
-orageclock_la_LDFLAGS +=                 \
+liborageclock_la_LDFLAGS +=                 \
 	-no-undefined
 endif
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list