diff options
author | drochner <drochner@pkgsrc.org> | 2005-08-02 14:47:38 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2005-08-02 14:47:38 +0000 |
commit | 6127530c04fb26e54f96a3b5a6c0a8c04c3444c6 (patch) | |
tree | 50230e14e941f6cf5f205514bd597a4259bbff83 /graphics/feh | |
parent | 926f237c017b326f89a56363899f2f9c1b4e1ff9 (diff) | |
download | pkgsrc-6127530c04fb26e54f96a3b5a6c0a8c04c3444c6.tar.gz |
this shouldn't be a wprintf()
hopefully fixes build error seen in 1.6.2 bulk build
Diffstat (limited to 'graphics/feh')
-rw-r--r-- | graphics/feh/distinfo | 3 | ||||
-rw-r--r-- | graphics/feh/patches/patch-ad | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/graphics/feh/distinfo b/graphics/feh/distinfo index fbb7eb8333a..15ff1c53bb0 100644 --- a/graphics/feh/distinfo +++ b/graphics/feh/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.15 2005/07/27 17:44:17 drochner Exp $ +$NetBSD: distinfo,v 1.16 2005/08/02 14:47:38 drochner Exp $ SHA1 (feh-1.3.4.tar.gz) = cf02fd48325ba02467c7f791634a28e98edbe801 RMD160 (feh-1.3.4.tar.gz) = 7e27d31cf974b30fc321d4dbef2fd46fbd21d34c @@ -6,3 +6,4 @@ Size (feh-1.3.4.tar.gz) = 409530 bytes SHA1 (patch-aa) = 745c9ca77355a0beaacbe32bc33174e8dc057cbd SHA1 (patch-ab) = 1899f65deb3a5c3d9825b381298b752f0bec54cc SHA1 (patch-ac) = a0c76aebd0d38c990e12259d7ceb9e4d75920401 +SHA1 (patch-ad) = 7a3a5a5a88ffa65942606501181e6e9c09af5a56 diff --git a/graphics/feh/patches/patch-ad b/graphics/feh/patches/patch-ad new file mode 100644 index 00000000000..c6bbc2f022d --- /dev/null +++ b/graphics/feh/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1 2005/08/02 14:47:38 drochner Exp $ + +--- src/support.c.orig 2005-08-02 16:10:57.000000000 +0200 ++++ src/support.c +@@ -233,7 +233,7 @@ feh_wm_set_bg(char *fil, Imlib_Image im, + char *path; + path = estrjoin("/", home, ".fehbg", NULL); + if ((fp = fopen(path, "w")) == NULL) { +- wprintf("Can't open %s for write", path); ++ weprintf("Can't open %s for write", path); + } else { + fprintf(fp, "%s\n", fehbg); + fclose(fp); |