1 /* 2 * Copyright (c) 2001 Sendmail, 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_unixware.h,v 1.7 2001/11/11 16:32:00 ca Exp $ 10 */ 11 12 #define SM_OS_NAME "unixware" 13 14 /* try LLONG tests in libsm/t-types.c? */ 15 #ifndef SM_CONF_TEST_LLONG 16 # define SM_CONF_TEST_LLONG 0 17 #endif /* !SM_CONF_TEST_LLONG */ 18 19 /* needs alarm(), our sleep() otherwise hangs. */ 20 #define SM_CONF_SETITIMER 0 21 22 #ifndef SM_CONF_SHM 23 # define SM_CONF_SHM 1 24 #endif /* SM_CONF_SHM */ 25 26 /* size_t seems to be signed */ 27 #define SM_CONF_BROKEN_SIZE_T 1 28 29 /* don't use flock() in mail.local.c */ 30 #ifndef LDA_USE_LOCKF 31 # define LDA_USE_LOCKF 1 32 #endif /* LDA_USE_LOCKF */ 33