summaryrefslogtreecommitdiff
path: root/thunarx
diff options
context:
space:
mode:
authorBenedikt Meurer <benny@xfce.org>2005-09-22 21:39:22 +0000
committerBenedikt Meurer <benny@xfce.org>2005-09-22 21:39:22 +0000
commitb2406d5ed8808c866fa374eb642effc4a028bcd7 (patch)
treea804f1d935133aeacad5e4fa239ca9a52775fa45 /thunarx
parentfebc177d81c27ef079984244270a324968909828 (diff)
downloadthunar-b2406d5ed8808c866fa374eb642effc4a028bcd7.tar.gz
2005-09-22 Benedikt Meurer <benny@xfce.org>
* thunar-vfs/thunar-vfs-*.c: Documentation tweaks. * configure.in.in, docs/reference/Makefile.am, docs/reference/thunar-vfs/: Prepare Thunar-VFS reference manual. * thunar/thunar-list-model.c(thunar_list_model_get_statusbar_text): Use ngettext() for the statusbar text. * thunar/thunar-launcher.c(thunar_launcher_update): Use ngettext() for the "Open in n New Windows" menu label. * thunar/thunar-launcher.c(thunar_launcher_open_new_windows): Use ngettext() for the question whether to open n separate windows. * thunar/thunar-launcher.c(thunar_launcher_open_uris): Use ngettext() to format the error message when opening multiple URIs at once failes. * po/*.po: Update po files. * configure.in.in, examples/open-terminal-here/Makefile.am, thunar-vfs/Makefile.am, thunar/Makefile.am, thunarx/Makefile.am: Don't add debugging and visibility flags to CFLAGS, CPPFLAGS and LDFLAGS, but use PLATFORM_CFLAGS, PLATFORM_CPPFLAGS and PLATFORM_LDFLAGS instead to avoid trouble with certain conftests when checking the distribution. (Old svn revision: 17769)
Diffstat (limited to 'thunarx')
-rw-r--r--thunarx/Makefile.am9
1 files changed, 6 insertions, 3 deletions
diff --git a/thunarx/Makefile.am b/thunarx/Makefile.am
index 2e0c4f09..56dbb188 100644
--- a/thunarx/Makefile.am
+++ b/thunarx/Makefile.am
@@ -3,7 +3,8 @@
INCLUDES = \
-I$(top_srcdir) \
-DG_LOG_DOMAIN=\"thunarx\" \
- -DTHUNARX_COMPILATION
+ -DTHUNARX_COMPILATION \
+ $(PLATFORM_CPPFLAGS)
libthunarx_built_sources = \
thunarx-alias.h \
@@ -36,12 +37,14 @@ libthunarx_1_la_SOURCES = \
thunarx-property-page-provider.c
libthunarx_1_la_CFLAGS = \
- $(GTK_CFLAGS)
+ $(GTK_CFLAGS) \
+ $(PLATFORM_CFLAGS)
libthunarx_1_la_LDFLAGS = \
-export-dynamic \
-export-symbols-regex "^[^_].*" \
- -version-info $(THUNAR_VERINFO)
+ -version-info $(THUNAR_VERINFO) \
+ $(PLATFORM_LDFLAGS)
libthunarx_1_la_LIBADD = \
$(GTK_LIBS)