summaryrefslogtreecommitdiff
path: root/examples
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 /examples
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 'examples')
-rw-r--r--examples/open-terminal-here/Makefile.am9
1 files changed, 6 insertions, 3 deletions
diff --git a/examples/open-terminal-here/Makefile.am b/examples/open-terminal-here/Makefile.am
index c486a139..fc50b8f1 100644
--- a/examples/open-terminal-here/Makefile.am
+++ b/examples/open-terminal-here/Makefile.am
@@ -3,7 +3,8 @@
INCLUDES = \
-I$(top_builddir) \
-I$(top_srcdir) \
- -DG_LOG_DOMAIN=\"OpenTerminalHere\"
+ -DG_LOG_DOMAIN=\"OpenTerminalHere\" \
+ $(PLATFORM_CPPFLAGS)
extensionsdir = $(libdir)/thunarx-$(THUNAR_VERSION_API)
extensions_LTLIBRARIES = \
@@ -13,7 +14,8 @@ open_terminal_here_la_SOURCES = \
open-terminal-here.c
open_terminal_here_la_CFLAGS = \
- $(GTK_CFLAGS)
+ $(GTK_CFLAGS) \
+ $(PLATFORM_CFLAGS)
open_terminal_here_la_DEPENDENCIES = \
$(top_builddir)/thunarx/libthunarx-$(THUNAR_VERSION_API).la
@@ -25,7 +27,8 @@ open_terminal_here_la_LIBADD = \
open_terminal_here_la_LDFLAGS = \
-avoid-version \
-export-dynamic \
- -module
+ -module \
+ $(PLATFORM_LDFLAGS)
EXTRA_DIST = \
README