diff options
Diffstat (limited to 'net/arla/patches/patch-bq')
-rw-r--r-- | net/arla/patches/patch-bq | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net/arla/patches/patch-bq b/net/arla/patches/patch-bq new file mode 100644 index 00000000000..a217cc15460 --- /dev/null +++ b/net/arla/patches/patch-bq @@ -0,0 +1,23 @@ +# $NetBSD: patch-bq,v 1.1 2002/08/20 17:47:45 wennmach Exp $ + +On NetBSD, comment out call to setgetprogname(). + +--- appl/themis/themis.c.orig Tue Aug 20 18:28:42 2002 ++++ appl/themis/themis.c Tue Aug 20 18:29:14 2002 +@@ -2285,7 +2285,16 @@ + char *file; + int optind = 0; + ++/* ++ * The setprogname(3) function was introduced in NetBSD 1.6. ++ * It is a function provided for compatibility, and in NetBSD, ++ * calling setprogname() from main() has no effect. ++ * In order to for this to work on older NetBSD systems, ++ * we just comment the call to setprogname() out. ++ */ ++#if !defined(__NetBSD__) + setprogname(argv[0]); ++#endif + + if (getarg (args, sizeof(args)/sizeof(*args), argc, argv, &optind)) + usage (1); |