Thu Nov 18 13:23:56 2021 UTC ()
mk: According to Boyd Lynn Gerber, UnixWare lacks IPv6, although the
header files misleadingly pretend it has IPv6.


(nia)
diff -r1.34 -r1.35 pkgsrc/mk/platform/UnixWare.mk

cvs diff -r1.34 -r1.35 pkgsrc/mk/platform/UnixWare.mk (expand / switch to unified diff)

--- pkgsrc/mk/platform/UnixWare.mk 2016/03/10 16:58:19 1.34
+++ pkgsrc/mk/platform/UnixWare.mk 2021/11/18 13:23:56 1.35
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: UnixWare.mk,v 1.34 2016/03/10 16:58:19 jperkin Exp $ 1# $NetBSD: UnixWare.mk,v 1.35 2021/11/18 13:23:56 nia Exp $
2# 2#
3# Variable definitions for the UnixWare 7 operating system. 3# Variable definitions for the UnixWare 7 operating system.
4 4
5ECHO_N?= ${ECHO} -n 5ECHO_N?= ${ECHO} -n
6IMAKE_MAKE?= /usr/ccs/bin/make # program which gets invoked by imake 6IMAKE_MAKE?= /usr/ccs/bin/make # program which gets invoked by imake
7PKGLOCALEDIR?= lib 7PKGLOCALEDIR?= lib
8PS?= /usr/bin/ps 8PS?= /usr/bin/ps
9# XXX: default from defaults/mk.conf. Verify/correct for this platform 9# XXX: default from defaults/mk.conf. Verify/correct for this platform
10# and remove this comment. 10# and remove this comment.
11SU?= /usr/bin/su 11SU?= /usr/bin/su
12TYPE?= /usr/bin/type 12TYPE?= /usr/bin/type
13 13
14CPP_PRECOMP_FLAGS?= # unset 14CPP_PRECOMP_FLAGS?= # unset
@@ -21,31 +21,27 @@ NOLOGIN?= ${FALSE} @@ -21,31 +21,27 @@ NOLOGIN?= ${FALSE}
21ROOT_CMD?= ${SU} - root -c 21ROOT_CMD?= ${SU} - root -c
22ROOT_GROUP?= root 22ROOT_GROUP?= root
23ROOT_USER?= root 23ROOT_USER?= root
24SERIAL_DEVICES?= /dev/null 24SERIAL_DEVICES?= /dev/null
25ULIMIT_CMD_datasize?= ulimit -d `ulimit -H -d` 25ULIMIT_CMD_datasize?= ulimit -d `ulimit -H -d`
26ULIMIT_CMD_stacksize?= ulimit -s `ulimit -H -s` 26ULIMIT_CMD_stacksize?= ulimit -s `ulimit -H -s`
27ULIMIT_CMD_memorysize?= ulimit -v `ulimit -H -v` 27ULIMIT_CMD_memorysize?= ulimit -v `ulimit -H -v`
28USERADD?= /usr/sbin/useradd 28USERADD?= /usr/sbin/useradd
29 29
30_OPSYS_SYSTEM_RPATH?= /usr/lib 30_OPSYS_SYSTEM_RPATH?= /usr/lib
31_OPSYS_LIB_DIRS?= /usr/lib 31_OPSYS_LIB_DIRS?= /usr/lib
32_OPSYS_INCLUDE_DIRS?= /usr/include 32_OPSYS_INCLUDE_DIRS?= /usr/include
33 33
34.if exists(/usr/include/netinet/in6.h) 
35_OPSYS_HAS_INET6= yes # IPv6 is standard 
36.else 
37_OPSYS_HAS_INET6= no # IPv6 is not standard 34_OPSYS_HAS_INET6= no # IPv6 is not standard
38.endif 
39_OPSYS_HAS_JAVA= no # Java is not standard 35_OPSYS_HAS_JAVA= no # Java is not standard
40_OPSYS_HAS_MANZ= no # no MANZ for gzipping of man pages 36_OPSYS_HAS_MANZ= no # no MANZ for gzipping of man pages
41_OPSYS_HAS_OSSAUDIO= no # libossaudio is available 37_OPSYS_HAS_OSSAUDIO= no # libossaudio is available
42_OPSYS_PERL_REQD= # no base version of perl required 38_OPSYS_PERL_REQD= # no base version of perl required
43_OPSYS_PTHREAD_AUTO= no # -lpthread needed for pthreads 39_OPSYS_PTHREAD_AUTO= no # -lpthread needed for pthreads
44_OPSYS_SHLIB_TYPE= ELF # shared lib type 40_OPSYS_SHLIB_TYPE= ELF # shared lib type
45_PATCH_CAN_BACKUP= yes # native patch(1) can make backups 41_PATCH_CAN_BACKUP= yes # native patch(1) can make backups
46_PATCH_BACKUP_ARG?= -b -V simple -z # switch to patch(1) for backup suffix 42_PATCH_BACKUP_ARG?= -b -V simple -z # switch to patch(1) for backup suffix
47# 43#
48# The native linker for UnixWare doesn't really support an option to pass 44# The native linker for UnixWare doesn't really support an option to pass
49# rpath directives, but pretend it does anyway since the wrapper scripts 45# rpath directives, but pretend it does anyway since the wrapper scripts
50# will correctly convert it into the proper LD_RUN_PATH variable. 46# will correctly convert it into the proper LD_RUN_PATH variable.
51# 47#