Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 732580 | Differences between
and this patch

Collapse All | Expand All

(-)a/.gitignore (+31 lines)
Line 0 Link Here
1
*~
2
*.la
3
*.lo
4
*.gmo
5
*.tar.bz2
6
.deps
7
.libs
8
.vscode
9
ChangeLog
10
INSTALL
11
Makefile
12
Makefile.in
13
aclocal.m4
14
autom4te.cache
15
compile
16
config.*
17
configure
18
configure.ac
19
depcomp
20
install-sh
21
intltool-*
22
libtool
23
ltmain.sh
24
m4
25
missing
26
panel-plugin/weather-config_ui.h
27
panel-plugin/weather.desktop
28
po/.intltool-merge-cache
29
po/Makefile.in.in
30
po/POTFILES
31
stamp-*
(-)a/Makefile.am (+2 lines)
Lines 1-5 Link Here
1
@SET_MAKE@
1
@SET_MAKE@
2
2
3
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
4
3
SUBDIRS =								\
5
SUBDIRS =								\
4
	panel-plugin							\
6
	panel-plugin							\
5
	po
7
	po
(-)a/configure.ac (-1 / +2 lines)
Lines 32-38 dnl ******************************** Link Here
32
AC_PROG_CC()
32
AC_PROG_CC()
33
AC_PROG_LD()
33
AC_PROG_LD()
34
AC_PROG_INSTALL()
34
AC_PROG_INSTALL()
35
AC_PROG_INTLTOOL()
35
AC_CONFIG_MACRO_DIRS([m4])
36
IT_PROG_INTLTOOL([0.35.0])
36
37
37
dnl **************************
38
dnl **************************
38
dnl *** Initialize libtool ***
39
dnl *** Initialize libtool ***
(-)a/panel-plugin/Makefile.am (+1 lines)
Lines 33-38 libverve_la_LDFLAGS = \ Link Here
33
	-export-symbols-regex '^xfce_panel_module_(preinit|init|construct)' \
33
	-export-symbols-regex '^xfce_panel_module_(preinit|init|construct)' \
34
	$(PLATFORM_LDFLAGS)
34
	$(PLATFORM_LDFLAGS)
35
35
36
36
# .desktop file
37
# .desktop file
37
#
38
#
38
# We need to let intltool merge the translated fields, so we add a
39
# We need to let intltool merge the translated fields, so we add a
(-)a/panel-plugin/verve-plugin.c (-1 / +1 lines)
Lines 33-39 Link Here
33
#include <gtk/gtk.h>
33
#include <gtk/gtk.h>
34
34
35
#include <libxfce4util/libxfce4util.h>
35
#include <libxfce4util/libxfce4util.h>
36
#include <libxfce4panel/xfce-panel-plugin.h>
36
#include <libxfce4panel/libxfce4panel.h>
37
#include <libxfce4ui/libxfce4ui.h>
37
#include <libxfce4ui/libxfce4ui.h>
38
38
39
#include "verve.h"
39
#include "verve.h"

Return to bug 732580