if we don't have rlim_t, assume it's long

This commit is contained in:
tg 2007-01-17 23:18:55 +00:00
parent 22ab30b556
commit af606537e2
3 changed files with 26 additions and 8 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $MirOS: src/bin/mksh/Build.sh,v 1.131 2007/01/17 23:04:19 tg Exp $
# $MirOS: src/bin/mksh/Build.sh,v 1.132 2007/01/17 23:18:55 tg Exp $
#-
# Env: CC, CFLAGS, CPP, CPPFLAGS, LDFLAGS, LIBS, NOWARN, NROFF, TARGET_OS
# CPPFLAGS recognised: MKSH_SMALL MKSH_NOPWNAM
@ -289,26 +289,37 @@ fi
#
# Environment: headers
#
ac_test sys_param_h '' '<sys/param.h>' <<'EOF'
ac_test sys_param_h '' '<sys/param.h>' <<-'EOF'
#include <sys/param.h>
int main(void) { return (0); }
EOF
ac_test sys_sysmacros_h '' '<sys/sysmacros.h>' <<'EOF'
ac_test sys_sysmacros_h '' '<sys/sysmacros.h>' <<-'EOF'
#include <sys/sysmacros.h>
int main(void) { return (0); }
EOF
ac_test libgen_h '' '<libgen.h>' <<'EOF'
ac_test libgen_h '' '<libgen.h>' <<-'EOF'
#include <libgen.h>
int main(void) { return (0); }
EOF
ac_test stdbool_h '' '<stdbool.h>' <<'EOF'
ac_test stdbool_h '' '<stdbool.h>' <<-'EOF'
#include <stdbool.h>
int main(void) { return (0); }
EOF
#
# Environment: types
#
ac_test rlim_t <<-'EOF'
#include <sys/types.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <unistd.h>
int main(void) { return ((int)(rlim_t)0); }
EOF
#
# Environment: signals
#

View File

@ -1,10 +1,11 @@
# $MirOS: src/bin/mksh/Makefile,v 1.24 2007/01/17 22:51:46 tg Exp $
# $MirOS: src/bin/mksh/Makefile,v 1.25 2007/01/17 23:18:55 tg Exp $
PROG= mksh
SRCS= alloc.c edit.c eval.c exec.c expr.c funcs.c histrap.c \
jobs.c lex.c main.c misc.c shf.c syn.c tree.c var.c
CPPFLAGS+= -DHAVE_ATTRIBUTE -DHAVE_ATTRIBUTE_BOUNDED -DHAVE_ATTRIBUTE_USED
CPPFLAGS+= -DHAVE_SYS_PARAM_H -DHAVE_LIBGEN_H -DHAVE_STDBOOL_H
CPPFLAGS+= -DHAVE_SYS_PARAM_H -DHAVE_SYS_SYSMACROS_H=0 -DHAVE_LIBGEN_H
CPPFLAGS+= -DHAVE_STDBOOL_H -DHAVE_RLIM_T
CPPFLAGS+= -DHAVE_SYS_SIGNAME -DHAVE_SYS_SIGLIST
CPPFLAGS+= -DHAVE_ARC4RANDOM -DHAVE_ARC4RANDOM_PUSH -DHAVE_SETLOCALE_CTYPE
CPPFLAGS+= -DHAVE_LANGINFO_CODESET -DHAVE_SETMODE -DHAVE_SETRESUGID

8
sh.h
View File

@ -8,7 +8,7 @@
/* $OpenBSD: c_test.h,v 1.4 2004/12/20 11:34:26 otto Exp $ */
/* $OpenBSD: tty.h,v 1.5 2004/12/20 11:34:26 otto Exp $ */
#define MKSH_SH_H_ID "$MirOS: src/bin/mksh/sh.h,v 1.103 2007/01/17 23:10:14 tg Exp $"
#define MKSH_SH_H_ID "$MirOS: src/bin/mksh/sh.h,v 1.104 2007/01/17 23:18:55 tg Exp $"
#define MKSH_VERSION "R29 2007/01/17"
#if HAVE_SYS_PARAM_H
@ -85,6 +85,12 @@
#include <values.h>
#endif
/* extra types */
#if !HAVE_RLIM_T
typedef long rlim_t;
#endif
#if !HAVE_STDBOOL_H
/* kludge, but enough for mksh */
typedef int bool;