-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
globals.h
73 lines (61 loc) · 2.27 KB
/
globals.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
* Copyright (c) 1998 Denis Perchine <[email protected]>
* Copyright (c) 2004 Szombathelyi György <[email protected]>
* Maintained by Adriaan de Groot <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License version 2 as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
**/
#ifndef _KU_GLOBALS_H_
#define _KU_GLOBALS_H_
#define _KU_VERSION "3.9"
#include "ku_config.h"
#ifdef HAVE_PATHS_H
#include <paths.h>
#endif
#define KU_PROPERTY(Type,Name) \
const Type &get##Name() const ; \
void set##Name(Type data)
#define KU_PROPERTY_IMPL(Class,Type,Name) \
const Type &Class::get##Name() const { return d->Name; } \
void Class::set##Name(Type data) { d->Name = data; }
#define KU_BACKUP_EXT ".bak"
#define KU_CREATE_EXT ".new"
#ifdef HAVE_PATHS_H
#define SHELL_FILE _PATH_SHELLS
#define MAIL_SPOOL_DIR _PATH_MAILDIR
#else
#define SHELL_FILE "/etc/shells"
#define MAIL_SPOOL_DIR "/var/spool/mail"
#endif
#if defined(__FreeBSD__) || defined(__bsdi__)
#include <pwd.h>
#define PASSWORD_FILE _PATH_MASTERPASSWD
#define PASSWORD_FILE_MASK S_IRUSR | S_IWUSR
#define PWMKDB _PATH_PWD_MKDB" -p "PASSWORD_FILE
#define SKELDIR "/usr/share/skel"
#define SKEL_FILE_PREFIX "dot"
#define CRONTAB_DIR "/var/cron/tabs"
#else
#define PASSWORD_FILE "/etc/passwd"
#define PASSWORD_FILE_MASK S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH
#define PWMKDB "cd /var/yp; make 2>&1 >> /var/log/kuser"
#define GRMKDB "cd /var/yp; make 2>&1 >> /var/log/kuser"
#define SKELDIR "/etc/skel"
#define SKEL_FILE_PREFIX ""
#define CRONTAB_DIR "/var/spool/cron"
#endif
#define GROUP_FILE "/etc/group"
#define GROUP_FILE_MASK S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH
#endif // _KU_GLOBALS_H_