diff options
author | marcus <marcus@FreeBSD.org> | 2002-12-02 11:51:56 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2002-12-02 11:51:56 +0800 |
commit | 12387b66f76769fec4ffe4016799ed0ae47d3ca8 (patch) | |
tree | 72c2d01addc18c28fea250be2206cf9eeb421133 /net-im | |
parent | 59399a2b9f700e293098c240c90f1b1c11c751e9 (diff) | |
download | freebsd-ports-gnome-12387b66f76769fec4ffe4016799ed0ae47d3ca8.tar.gz freebsd-ports-gnome-12387b66f76769fec4ffe4016799ed0ae47d3ca8.tar.zst freebsd-ports-gnome-12387b66f76769fec4ffe4016799ed0ae47d3ca8.zip |
Fix build with bison 1.75.
Reported by: bento
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gtkyahoo/files/patch-rcfile.y | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/net-im/gtkyahoo/files/patch-rcfile.y b/net-im/gtkyahoo/files/patch-rcfile.y new file mode 100644 index 000000000000..59e9ae6b5cd8 --- /dev/null +++ b/net-im/gtkyahoo/files/patch-rcfile.y @@ -0,0 +1,42 @@ +--- rcfile.y.orig Sun Dec 1 22:51:31 2002 ++++ rcfile.y Sun Dec 1 22:53:42 2002 +@@ -253,11 +253,13 @@ + | config_options idle_time_option + | config_options show_notify_messages_option + | config_options display_real_names_option ++ ; + + contact_options: /* empty */ + | contact_options name_option + | contact_options event_option + | contact_options email_option ++ ; + + name_option: NAME QSTRING { + DBG_Print("rcfile", "[RC] Got contact name (%s)\n", $2); +@@ -278,17 +280,14 @@ + if ( images.status.away ) + free(images.status.away); + images.status.away = strdup($2); } +- ; + | IMAGE_STATUS_IDLE QSTRING { + if ( images.status.idle ) + free(images.status.idle); + images.status.idle = strdup($2); } +- ; + | IMAGE_STATUS_HERE QSTRING { + if ( images.status.here ) + free(images.status.here); + images.status.here = strdup($2); } +- ; + | IMAGE_STATUS_OFFLINE QSTRING { + if ( images.status.offline ) + free(images.status.offline); +@@ -327,7 +326,6 @@ + DBG_Print("rcfile", "[RC] Set proxy host to '%s'\n", $2); + proxy_host = strdup($2); } + } +- ; + | PROXY_PORT INTEGER { + if (config_match) { + proxy_port = $2; |