summaryrefslogtreecommitdiff
path: root/makefiles/gmake/platform.mk
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-03-10 21:53:42 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-03-10 21:53:42 +0100
commitf5935479e83493555931caebf5e50763cba61d5d (patch)
tree443db324e4c6fbb75d8b60996a594e80c7411bc0 /makefiles/gmake/platform.mk
parentcdadda37b6b5cf3aaf923171d0faa1d41873770d (diff)
downloadwolfbones-f5935479e83493555931caebf5e50763cba61d5d.tar.gz
wolfbones-f5935479e83493555931caebf5e50763cba61d5d.tar.bz2
made gettext work on NetBSD
Diffstat (limited to 'makefiles/gmake/platform.mk')
-rw-r--r--makefiles/gmake/platform.mk8
1 files changed, 7 insertions, 1 deletions
diff --git a/makefiles/gmake/platform.mk b/makefiles/gmake/platform.mk
index c08aa91..4d5a1c9 100644
--- a/makefiles/gmake/platform.mk
+++ b/makefiles/gmake/platform.mk
@@ -57,6 +57,13 @@ else
LIBS_DL =
endif
+# the GNU internationalization support is sometimes in separate libarries
+ifeq "$(PLATFORM)" "NETBSD"
+LIBS_LT = -lintl
+else
+LIBS_LT =
+endif
+
# for testing, ps with all processes with as many information as possible
ifeq "$(PLATFORM)" "FREEBSD"
PS_ALL = ps aux
@@ -71,4 +78,3 @@ PS_ALL = ps -alef
endif
endif
endif
-