diff options
author | cjh <cjh@FreeBSD.org> | 2002-11-23 20:37:29 +0800 |
---|---|---|
committer | cjh <cjh@FreeBSD.org> | 2002-11-23 20:37:29 +0800 |
commit | e08855bc3129bd08106c040ee811d2cbe36aa2d1 (patch) | |
tree | 83ba561accac520973d750afaf440e88d501b949 /korean/elm | |
parent | a0b5a31c995411c61ee0eb8ec6c1e7a6d9e7c44c (diff) | |
download | freebsd-ports-gnome-e08855bc3129bd08106c040ee811d2cbe36aa2d1.tar.gz freebsd-ports-gnome-e08855bc3129bd08106c040ee811d2cbe36aa2d1.tar.zst freebsd-ports-gnome-e08855bc3129bd08106c040ee811d2cbe36aa2d1.zip |
Fix build on -current.
Obtained from: bento
Diffstat (limited to 'korean/elm')
-rw-r--r-- | korean/elm/files/patch-utils:fastmail.c | 20 | ||||
-rw-r--r-- | korean/elm/files/patch-utils:newmail.c | 20 |
2 files changed, 40 insertions, 0 deletions
diff --git a/korean/elm/files/patch-utils:fastmail.c b/korean/elm/files/patch-utils:fastmail.c new file mode 100644 index 000000000000..621041501101 --- /dev/null +++ b/korean/elm/files/patch-utils:fastmail.c @@ -0,0 +1,20 @@ +--- utils/fastmail.c.orig Sat Nov 23 21:33:32 2002 ++++ utils/fastmail.c Sat Nov 23 21:35:03 2002 +@@ -105,7 +105,7 @@ + static void usage(); + + int debug = 0; +-FILE *debugfile = stderr; ++FILE *debugfile; + + + main(argc, argv) +@@ -123,6 +123,8 @@ + char references[SLEN]; + char *p; + int c, sendmail_available; ++ ++ debugfile = stderr; + + elm_msg_cat = catopen("elm2.4", 0); + diff --git a/korean/elm/files/patch-utils:newmail.c b/korean/elm/files/patch-utils:newmail.c new file mode 100644 index 000000000000..c241796d0cb2 --- /dev/null +++ b/korean/elm/files/patch-utils:newmail.c @@ -0,0 +1,20 @@ +--- utils/newmail.c.orig Sat Nov 23 21:35:27 2002 ++++ utils/newmail.c Sat Nov 23 21:35:59 2002 +@@ -238,7 +238,7 @@ + print_prefix = 0, /* force printing of prefix */ + current_folder = 0; /* struct pointer for looping */ + FILE *fd = NULL; /* fd to use to read folders */ +-FILE *debugfile = stderr; ++FILE *debugfile; + + #ifdef PIDCHECK + int parent_pid; /* See if sucide should be attempt */ +@@ -281,6 +281,8 @@ + #ifdef I_LOCALE + setlocale(LC_ALL, ""); + #endif ++ ++ debugfile = stderr; + + elm_msg_cat = catopen("elm2.4", 0); + |