summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2008-04-20 17:46:12 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2008-04-20 17:46:12 +0000
commit8d1299338e033e1de539dae36856e365855fabc1 (patch)
treeb986c627fc9e6d125187cc105b0fdab5abdcf5bf
parent7abe3450b3500bc1f1cc55ccea28d91f12dad178 (diff)
downloadmana-client-8d1299338e033e1de539dae36856e365855fabc1.tar.gz
mana-client-8d1299338e033e1de539dae36856e365855fabc1.tar.bz2
mana-client-8d1299338e033e1de539dae36856e365855fabc1.tar.xz
mana-client-8d1299338e033e1de539dae36856e365855fabc1.zip
Fixed installing of dejavusans.ttf font.
-rw-r--r--ChangeLog2
-rw-r--r--data/Makefile.am2
-rw-r--r--data/fonts/Makefile.am5
-rw-r--r--src/gui/gui.cpp4
4 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 9d0c7b19..26288963 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
* src/main.cpp: Added --data parameter to be used to specify where to
get the data from when using --skipupdate.
+ * configure.ac, data/Makefile.am, data/fonts/Makefile.am: Fixed
+ installing of dejavusans.ttf font.
2008-04-19 Yohann Ferreira <bertram@cegetel.net>
diff --git a/data/Makefile.am b/data/Makefile.am
index 5a28f7c1..62672207 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -1,4 +1,4 @@
-SUBDIRS = graphics help icons
+SUBDIRS = fonts graphics help icons
tmwdatadir = $(pkgdatadir)/data
diff --git a/data/fonts/Makefile.am b/data/fonts/Makefile.am
new file mode 100644
index 00000000..331f6c8b
--- /dev/null
+++ b/data/fonts/Makefile.am
@@ -0,0 +1,5 @@
+fontsdir = $(pkgdatadir)/data/fonts
+
+fonts_DATA = dejavusans.ttf
+
+EXTRA_DIST = $(fonts_DATA)
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp
index db0d1905..d9c8f1ce 100644
--- a/src/gui/gui.cpp
+++ b/src/gui/gui.cpp
@@ -111,14 +111,14 @@ Gui::Gui(Graphics *graphics):
// Set global font
std::string path = resman->getPath("fonts/dejavusans.ttf");
- if (path != "")
+ if (!path.empty())
{
mGuiFont = new TrueTypeFont(path.c_str(), 11);
}
// Set speech font
path = resman->getPath("fonts/dejavusans.ttf");
- if (path != "")
+ if (!path.empty())
{
speechFont = new TrueTypeFont(path.c_str(), 11);
}