1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-07 22:58:11 +00:00
freebsd-ports/net/kdenetwork11/files/patch-ab
1998-03-06 19:44:12 +00:00

46 lines
1016 B
Plaintext

*** kmail/kmacctlocal.cpp~ Fri Mar 6 19:51:06 1998
--- kmail/kmacctlocal.cpp Fri Mar 6 19:50:43 1998
***************
*** 13,16 ****
--- 13,22 ----
#include <stdio.h>
#include <errno.h>
+ #ifdef __FreeBSD__
+ #include <paths.h> /* defines _PATH_MAILDIR */
+ #endif
+ #ifndef _PATH_MAILDIR
+ #define _PATH_MAILDIR "/var/spool/mail"
+ #endif
***************
*** 42,47 ****
void KMAcctLocal::init(void)
{
! mLocation = "/var/spool/mail/";
mLocation.detach();
mLocation += getenv("USER");
}
--- 48,54 ----
void KMAcctLocal::init(void)
{
! mLocation = _PATH_MAILDIR;
mLocation.detach();
+ mLocation += "/";
mLocation += getenv("USER");
}
***************
*** 99,103 ****
void KMAcctLocal::readConfig(KConfig& config)
{
! QString defaultPath("/var/spool/mail/");
defaultPath += getenv("USER");
--- 106,111 ----
void KMAcctLocal::readConfig(KConfig& config)
{
! QString defaultPath(_PATH_MAILDIR);
! defaultPath += "/";
defaultPath += getenv("USER");