File dx-4.4.4-missing-sentinel.patch of Package dx
--- src/uipp/base/StartWebBrowser.C
+++ src/uipp/base/StartWebBrowser.C
@@ -147,7 +147,7 @@
if (child == 0) {
int grandchild = fork();
if (grandchild == 0) {
- int ret = execlp(webApp, webApp, URL, NULL);
+ int ret = execlp(webApp, webApp, URL, (char *)NULL);
if (!ret) fprintf(stderr, "Unable to start web browser.\n");
exit (0);
}