Patch ogg123/Makefile.am because automake will be run even though
we do not need it. Continue to patch ogg123/Makefile.in just the
same, so automake will not be required.
Effectively rename some patches, and change some:
- patch-aa to patch-configure.in
- patch-ab to patch-ogg123_buffer.c
- patch-ac to patch-ogg123_Makefile.in
- patch-ad to patch-ogg123_ogg123.c (with changes)
- patch-ae to patch-aclocal.m4 (with changes)
- patch-af to patch-ogg123_Makefile.am (with changes)
The maintainer requested this. He said that the history of these
files is not worth keeping.
Add $FreeBSD$ tags to the patches.
Change pkg-comment.
Submitted by: maintainer
PR: 26136
First, teapop fails to authentificate user if he logs in without
specifying his domain (pop_auth calls pop_string_find and tests its
result against being NULL, while NULL is returned only upon malloc()
failures. On empty domain logins pop_string_find returns empty
string). This makes APOP login method to always fail as teapop
erroneously interprets command APOP avn
d41d8cd98f00b204e9800998ecf8427e as an attempt of login for user
avn@d41d8cd98f00b204e9800998ecf8427e without supplying MD5 hash
value. Instead, return value should be tested against being empty
string, while positive test for NULL should cause pop3 server error
message to be printed.
Second, if configured with WITHOUT_APOP arguments to 'make install',
teapop incorrectly handles QUIT command while in authentification
state. It's because a part of switch statement became commented out
and there will be no branch for return value from
pop_wait_for_commands with command "QUIT" (it will return 3, not 4
when configured without APOP).
PR: 26181
Submitted by: Alexey V. Neyman <avn@any.ru>
a version from the author that will be merged in a future version.
Putting it in a single file like this will make it easy to get rid of
in the next release.
Also, clean up the config file a bit, including respect for ${X11BASE}
This kernel module lets users read BIG5 filenames on an NTFS. The author
is <huangant.bbs@bbs.cs.ntou.edu.tw>. The original patch is located at:
http://www.cis.nctu.edu.tw/~gis89501/bsd/ntfs/chinese_ntfs-4.3b2-ro.patch
It is slightly modified to accomodate port building.
It was tested on 4.3-BETA with Windows 2000 by the author, and 5.0-CURRENT
by me (also with 2000).
- changes MAINTAINER,
- fixes a bug in shared memory handling where SYSVSHM segments wouldn't
be destroyed on program exit,
- prefers memory sharing by mmap() over SYSVSHM,
- bumps PORTREVISION due to the fix above,
- contains miscellaneous clean-ups and autoconf-related changes.
PR: 25942
Submitted by: Christian Weisgerber <naddy@mips.inka.de>
Reviewed by: Theo van Klaveren <t.vanklaveren@student.utwente.nl>
From the announcement:
"This release should fix the final bugs we accidently got into 3.23.34
and a long security bug that has been in MySQL a long time!
The main fixed bugs are that UPDATE didn't always use keys when
updating on something not based on a primary key and that 'affected
rows' wasn't returned to the client if the mysqld server wasn't
compiled with support for transactions."