diff options
author | Eduardo Chappa <chappa@washington.edu> | 2013-08-18 01:59:52 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2013-08-18 01:59:52 -0600 |
commit | dd9bd7bac749b3908a406d78ce02fb7a39ef81c8 (patch) | |
tree | bcd3c72674a0e59ff76d2aa70451fff87de17ece /mapi | |
parent | c7f649c87f18773b00b955858992783e4d34e168 (diff) | |
download | alpine-dd9bd7bac749b3908a406d78ce02fb7a39ef81c8.tar.xz |
* Opening a folder updates recent count in maildrops.
* Fixes to configure script so that it will not require PAM for every system.
* Fix to configure script so that it will use CPPFLAGS instead of
CPPCFLAGS, and so the --with-ssl-include-dir option take effect
during the build. Fix by Ulf-Dietrich Braumann.
* Fix in WebAlpine: do not use deprecated dereference in pointer,
needs to use tcl_getstringresult() instead. Reported by Ulf-Dietrich
Braumann.
* Fix in configure script to detect location of tcl library; add
/usr/local in FreeBSD and fix a bug in configure script that used
$alpine_TCLINC instead of $alpine_TCLINC/tcl.h. Reported and fixed
by Werner Scheinast.
* Move SSL configurations from UW-IMAP to configure script.
Diffstat (limited to 'mapi')
-rw-r--r-- | mapi/ReadmeMapi32.txt | 2 | ||||
-rw-r--r-- | mapi/pmapi.c | 2 | ||||
-rw-r--r-- | mapi/pmapi.rc | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/mapi/ReadmeMapi32.txt b/mapi/ReadmeMapi32.txt index c19e7d43..f2b37381 100644 --- a/mapi/ReadmeMapi32.txt +++ b/mapi/ReadmeMapi32.txt @@ -7,7 +7,7 @@ alpine. This dll should work with a PC-Pine installation, but in the future will be made to work with Alpine. Registry access and Unicode support will have to change for that to happen. - pmapi32 for Alpine 2.10 + pmapi32 for Alpine 2.11 This distribution comes with two other files, instmapi.exe and pmapi32.dll, for use with Aline. It is recommended that these files diff --git a/mapi/pmapi.c b/mapi/pmapi.c index 7fa3b455..fe3fcc23 100644 --- a/mapi/pmapi.c +++ b/mapi/pmapi.c @@ -1952,7 +1952,7 @@ BOOL APIENTRY DllMain( now = time((time_t *)0); tm_now = localtime(&now); - fprintf(ms_global->dfd, "pmapi32.dll for Alpine Version 2.10r\n"); + fprintf(ms_global->dfd, "pmapi32.dll for Alpine Version 2.11r\n"); fprintf(ms_global->dfd, " Build date: %s\r\n", datestamp); fprintf(ms_global->dfd, " please report all bugs to alpine-contact@u.washington.edu\r\n"); diff --git a/mapi/pmapi.rc b/mapi/pmapi.rc index a648cd14..610e1cb8 100644 --- a/mapi/pmapi.rc +++ b/mapi/pmapi.rc @@ -117,14 +117,14 @@ BEGIN VALUE "Comments", "alpine info: http://www.washington.edu/alpine\0" VALUE "CompanyName", "University of Washington\0" VALUE "FileDescription", "Simple MAPI DLL for Alpine for Windows\0" - VALUE "FileVersion", "2.10\0" + VALUE "FileVersion", "2.11\0" VALUE "InternalName", "pmapi32\0" VALUE "LegalCopyright", "Copyright ? 2006-2009\0" VALUE "LegalTrademarks", "Apache License, Version 2.0\0" VALUE "OriginalFilename", "pmapi32.dll\0" VALUE "PrivateBuild", " \0" VALUE "ProductName", "Simple MAPI for Alpine for Windows\0" - VALUE "ProductVersion", "2.10\0" + VALUE "ProductVersion", "2.11\0" VALUE "SpecialBuild", " \0" END END |