$NetBSD: patch-aa,v 1.3 2010/02/16 15:30:50 wiz Exp $

--- src/network-light/upnp.c.orig	2009-08-26 14:54:42.000000000 +0000
+++ src/network-light/upnp.c
@@ -25,7 +25,11 @@
 #include <stdio.h>
 #include <locale.h>
 #include <string.h>
+#if defined(__NetBSD__) || defined(__DragonFly__)
+#include <uuid.h>
+#else
 #include <uuid/uuid.h>
+#endif
 #include <glib/gstdio.h>
 
 #include "gui.h"
@@ -317,9 +321,19 @@ static void init_uuid ()
         uuid_t uuid_context;
         xmlNode *uuid_node;
         char *udn;
-
+#if defined(__NetBSD__) || defined(__DragonFly__)
+	char *myuuidstr;
+#endif
+
+#if defined(__NetBSD__) || defined(__DragonFly__)
+        uuid_create(&uuid_context, 0);
+        uuid_to_string(&uuid_context, &myuuidstr, 0);
+        strncpy(uuid, myuuidstr, sizeof(uuid));
+        free(myuuidstr);
+#else
         uuid_generate (uuid_context);
         uuid_unparse (uuid_context, uuid);
+#endif
 
         uuid_node = xml_util_get_element ((xmlNode *) doc->doc,
                                           "root",
