blob: eda36041128539363949a59d934a1143de0a5df2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
$NetBSD: patch-av,v 1.1 2006/03/19 22:10:38 joerg Exp $
--- src/gui.c.orig 2006-03-16 22:33:23.000000000 +0000
+++ src/gui.c
@@ -782,6 +782,14 @@ create_about_tab(GtkWidget *vbox)
g_free(buf);
gtk_box_pack_start(GTK_BOX(vbox), label, TRUE, TRUE, 0);
#endif
+#if defined(__DragonFly__)
+ buf = g_strdup_printf(
+ _("DragonFly system dependent code was contributed by:\n"
+ "Joerg Sonnenberger <joerg@bec.de>"));
+ label = gtk_label_new(buf);
+ g_free(buf);
+ gtk_box_pack_start(GTK_BOX(vbox), label, TRUE, TRUE, 0);
+#endif
#if defined(__NetBSD__)
buf = g_strdup_printf(
_("NetBSD system dependent code was contributed by:\n"
|