1 /*
2  * Copyright (c) 2001 Proofpoint, Inc. and its suppliers.
3  *	All rights reserved.
4  *
5  * By using this file, you agree to the terms and conditions set
6  * forth in the LICENSE file which can be found at the top level of
7  * the sendmail distribution.
8  *
9  *	$Id: sm_os_openunix.h,v 1.6 2013-11-22 20:51:34 ca Exp $
10  */
11 
12 #define SM_OS_NAME	"openunix"
13 
14 /* needs alarm(), our sleep() otherwise hangs. */
15 #define SM_CONF_SETITIMER	0
16 
17 /* long long seems to work */
18 #define SM_CONF_LONGLONG	1
19 
20 /* don't use flock() in mail.local.c */
21 #define LDA_USE_LOCKF	1
22 
23 #ifndef SM_CONF_SHM
24 # define SM_CONF_SHM	1
25 #endif /* SM_CONF_SHM */
26