blob: 03ae92f5717e5340b1a59bad2866f943defe5b9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
$NetBSD: patch-af,v 1.4 1998/08/07 11:13:57 agc Exp $
--- config_f.h.orig Fri Apr 26 15:17:30 1996
+++ config_f.h Tue Aug 4 10:15:41 1998
@@ -65,7 +65,11 @@
* if you don't have <nl_types.h>, you don't want
* to define this.
*/
-#undef NLS_CATALOGS
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
+# define NLS_CATALOGS
+#else
+# undef NLS_CATALOGS
+#endif
/*
* LOGINFIRST Source ~/.login before ~/.cshrc
|