diff options
40 files changed, 2370 insertions, 360 deletions
diff --git a/inputmethod/canna-canuum/Makefile b/inputmethod/canna-canuum/Makefile index 54ab34506a1..2006137ab41 100644 --- a/inputmethod/canna-canuum/Makefile +++ b/inputmethod/canna-canuum/Makefile @@ -1,6 +1,5 @@ -# $NetBSD: Makefile,v 1.14 2015/08/18 07:31:10 wiz Exp $ +# $NetBSD: Makefile,v 1.15 2015/10/18 03:58:31 tsutsui Exp $ -PKGREVISION= 4 CANNA_MODULE= canuum .include "../../inputmethod/canna/Makefile.common" @@ -9,13 +8,10 @@ MAINTAINER= pkgsrc-users@NetBSD.org INSTALLATION_DIRS= ${PKGMANDIR}/ja_JP.EUC/man1 -CONFIGURE_DIRS= . canuum -BUILD_DIRS= canuum +CONFIGURE_DIRS= ${WRKSRC}/canuum INSTALL_MAKE_FLAGS+= INSTUGIDFLAGS= -SPECIAL_PERMS+= bin/canuum ${SETUID_ROOT_PERMS} - .include "../../mk/curses.buildlink3.mk" SUBST_CLASSES+= fix_curs SUBST_STAGE.fix_curs= post-patch diff --git a/inputmethod/canna-dict/Makefile b/inputmethod/canna-dict/Makefile index 1cdf8b7d0db..6e4b348b9dd 100644 --- a/inputmethod/canna-dict/Makefile +++ b/inputmethod/canna-dict/Makefile @@ -1,6 +1,5 @@ -# $NetBSD: Makefile,v 1.14 2013/07/12 10:44:55 jperkin Exp $ +# $NetBSD: Makefile,v 1.15 2015/10/18 03:58:31 tsutsui Exp $ -PKGREVISION= 3 CANNA_MODULE= dict MAKE_JOBS_SAFE= no @@ -15,7 +14,6 @@ CANNA_CMD_SED_SCRIPT+= \ -e 's|\(${cmd} = \).*/\(.*\)|\1${CANNASERVERBINDIR}/bin/\2|' .endfor -CONFIGURE_DIRS= ${DICT_WRKSRC} DICT_WRKSRC= ${WRKSRC}/dic/ideo CANNA_DICTDIR= ${PREFIX}/libdata/canna @@ -23,6 +21,9 @@ PKG_GROUPS= ${CANNA_GROUP} PKG_USERS= ${CANNA_USER}:${CANNA_GROUP} post-patch: + ${MV} ${WRKSRC}/Imakefile ${WRKSRC}/Imakefile.orig + ${SED} -e 's|\(SUBDIRS = \).*|\1 canna lib/RKindep dic/ideo|' \ + ${WRKSRC}/Imakefile.orig > ${WRKSRC}/Imakefile @${MV} ${WRKSRC}/Canna.conf ${WRKSRC}/Canna.conf.orig @${SED} -e 's|\(DicDir.*=\).*|\1${IMDICTDIR}/canna|' \ ${WRKSRC}/Canna.conf.orig > ${WRKSRC}/Canna.conf @@ -72,4 +73,5 @@ REQD_DIRS_PERMS+= ${CANNA_DICTDIR} ${CANNA_USER} ${CANNA_GROUP} 0775 SPECIAL_PERMS+= ${CANNA_DICTDIR}/${d} ${CANNA_USER} ${CANNA_GROUP} 0664 .endfor +.include "../../inputmethod/canna-lib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/inputmethod/canna-lib/Makefile b/inputmethod/canna-lib/Makefile index a1c60a6a953..a50d41c7389 100644 --- a/inputmethod/canna-lib/Makefile +++ b/inputmethod/canna-lib/Makefile @@ -1,6 +1,5 @@ -# $NetBSD: Makefile,v 1.14 2012/10/06 14:25:10 asau Exp $ +# $NetBSD: Makefile,v 1.15 2015/10/18 03:58:31 tsutsui Exp $ -PKGREVISION= 3 CANNA_MODULE= lib .include "../../inputmethod/canna/Makefile.common" @@ -15,7 +14,7 @@ post-patch: ${WRKSRC}/Imakefile.orig > ${WRKSRC}/Imakefile .for f in forcpp kpdic @${MV} ${WRKSRC}/cmd/${f}/Imakefile ${WRKSRC}/cmd/${f}/Imakefile.orig - @${SED} -e '/InstallProgram/d' ${WRKSRC}/cmd/${f}/Imakefile.orig \ + @${SED} -e '/^#define TargetName/a\${.newline}#define DontInstallProgram' ${WRKSRC}/cmd/${f}/Imakefile.orig \ > ${WRKSRC}/cmd/${f}/Imakefile .endfor diff --git a/inputmethod/canna-lib/PLIST b/inputmethod/canna-lib/PLIST index 44715e01f3d..e336530ee11 100644 --- a/inputmethod/canna-lib/PLIST +++ b/inputmethod/canna-lib/PLIST @@ -1,24 +1,26 @@ -@comment $NetBSD: PLIST,v 1.8 2009/06/14 18:01:29 joerg Exp $ +@comment $NetBSD: PLIST,v 1.9 2015/10/18 03:58:31 tsutsui Exp $ include/canna/RK.h include/canna/jrkanji.h include/canna/keydef.h include/canna/mfdef.h +include/canna/pubconf.h +include/canna/sysdep.h lib/libRKC.a lib/libRKC.so lib/libRKC.so.1 -lib/libRKC.so.1.1 +lib/libRKC.so.1.2 lib/libRKC16.a lib/libRKC16.so lib/libRKC16.so.1 -lib/libRKC16.so.1.1 +lib/libRKC16.so.1.2 lib/libcanna.a lib/libcanna.so lib/libcanna.so.1 -lib/libcanna.so.1.1 +lib/libcanna.so.1.2 lib/libcanna16.a lib/libcanna16.so lib/libcanna16.so.1 -lib/libcanna16.so.1.1 +lib/libcanna16.so.1.2 man/ja_JP.EUC/man3/RkBgnBun.3 man/ja_JP.EUC/man3/RkCloseRoma.3 man/ja_JP.EUC/man3/RkCvtEuc.3 diff --git a/inputmethod/canna-lib/buildlink3.mk b/inputmethod/canna-lib/buildlink3.mk index b840c1510e5..b0a51e6ed87 100644 --- a/inputmethod/canna-lib/buildlink3.mk +++ b/inputmethod/canna-lib/buildlink3.mk @@ -1,11 +1,11 @@ -# $NetBSD: buildlink3.mk,v 1.7 2009/03/20 19:24:46 joerg Exp $ +# $NetBSD: buildlink3.mk,v 1.8 2015/10/18 03:58:31 tsutsui Exp $ BUILDLINK_TREE+= Canna-lib .if !defined(CANNA_LIB_BUILDLINK3_MK) CANNA_LIB_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.Canna-lib+= Canna-lib>=3.6pl4 +BUILDLINK_API_DEPENDS.Canna-lib+= Canna-lib>=3.7pl3 BUILDLINK_PKGSRCDIR.Canna-lib?= ../../inputmethod/canna-lib .endif # CANNA_LIB_BUILDLINK3_MK diff --git a/inputmethod/canna-server/Makefile b/inputmethod/canna-server/Makefile index 8c9fba44496..79f0fc4dd9c 100644 --- a/inputmethod/canna-server/Makefile +++ b/inputmethod/canna-server/Makefile @@ -1,6 +1,5 @@ -# $NetBSD: Makefile,v 1.23 2013/07/12 10:44:55 jperkin Exp $ +# $NetBSD: Makefile,v 1.24 2015/10/18 03:58:31 tsutsui Exp $ -PKGREVISION= 5 CANNA_MODULE= server .include "../../inputmethod/canna/Makefile.common" @@ -27,7 +26,7 @@ RCD_SCRIPTS= canna post-patch: ${MV} ${WRKSRC}/Imakefile ${WRKSRC}/Imakefile.orig - ${SED} -e 's|\(SUBDIRS = \).*|\1 canna lib server cmd doc|' \ + ${SED} -e 's|\(SUBDIRS = \).*|\1 canna lib/RK lib/RKindep server cmd doc|' \ -e 's|\(SERVERDIR = \).*|\1 server cmd doc|' \ ${WRKSRC}/Imakefile.orig > ${WRKSRC}/Imakefile ${MV} ${WRKSRC}/Canna.conf ${WRKSRC}/Canna.conf.orig diff --git a/inputmethod/canna-server/PLIST b/inputmethod/canna-server/PLIST index 31d34b1c5a1..21367ba5e43 100644 --- a/inputmethod/canna-server/PLIST +++ b/inputmethod/canna-server/PLIST @@ -1,9 +1,10 @@ -@comment $NetBSD: PLIST,v 1.8 2014/03/11 14:05:02 jperkin Exp $ +@comment $NetBSD: PLIST,v 1.9 2015/10/18 03:58:31 tsutsui Exp $ bin/addwords bin/canlisp bin/cannacheck bin/cannastat bin/catdic +bin/chkconc bin/chmoddic bin/cpdic bin/crfreq diff --git a/inputmethod/canna/Makefile b/inputmethod/canna/Makefile index e07800f4cc5..ae0dd02828f 100644 --- a/inputmethod/canna/Makefile +++ b/inputmethod/canna/Makefile @@ -1,14 +1,13 @@ -# $NetBSD: Makefile,v 1.11 2010/02/20 10:39:01 obache Exp $ +# $NetBSD: Makefile,v 1.12 2015/10/18 03:58:31 tsutsui Exp $ META_PACKAGE= yes .include "Makefile.common" PKGNAME:= Canna-${CANNA_VERSION} -PKGREVISION= 2 -DEPENDS+= Canna-server>=${CANNA_VERSION}nb2:../../inputmethod/canna-server -DEPENDS+= Canna-dict>=${CANNA_VERSION}nb1:../../inputmethod/canna-dict +DEPENDS+= Canna-server>=${CANNA_VERSION}:../../inputmethod/canna-server +DEPENDS+= Canna-dict>=${CANNA_VERSION}:../../inputmethod/canna-dict CANNA_MODULE= meta-package diff --git a/inputmethod/canna/Makefile.common b/inputmethod/canna/Makefile.common index c71eeffad15..6066666c837 100644 --- a/inputmethod/canna/Makefile.common +++ b/inputmethod/canna/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.22 2015/06/29 11:06:47 ryoon Exp $ +# $NetBSD: Makefile.common,v 1.23 2015/10/18 03:58:31 tsutsui Exp $ # # Canna common makefile. # @@ -8,14 +8,15 @@ # used by inputmethod/canna-server/Makefile # "Pkgsrc" version. -CANNA_VERSION= 3.6pl4 +CANNA_VERSION= 3.7pl3 DISTNAME= Canna${CANNA_VERSION:S|.||:S|pl|p|} PKGNAME= Canna-${CANNA_MODULE}-${CANNA_VERSION} CATEGORIES= japanese inputmethod -MASTER_SITES= ${MASTER_SITE_OSDN:=canna/6059/} +MASTER_SITES= ${MASTER_SITE_OSDN:=canna/9565/} +EXTRACT_SUFX= .tar.bz2 -MAINTAINER= tech-pkg-ja@jp.NetBSD.org +MAINTAINER= tsutsui@NetBSD.org HOMEPAGE= http://canna.osdn.jp/ COMMENT= Kana-Kanji conversion system (${CANNA_MODULE}) diff --git a/inputmethod/canna/distinfo b/inputmethod/canna/distinfo index bc0943882dd..0a258ba2d67 100644 --- a/inputmethod/canna/distinfo +++ b/inputmethod/canna/distinfo @@ -1,22 +1,23 @@ -$NetBSD: distinfo,v 1.11 2012/07/03 17:44:39 joerg Exp $ +$NetBSD: distinfo,v 1.12 2015/10/18 03:58:31 tsutsui Exp $ -SHA1 (Canna36p4.tar.gz) = 4edc22e2e4e5c6db42daa2083fabb53aa1ae8168 -RMD160 (Canna36p4.tar.gz) = 7f8bb7f5d87e6b939ff2b84edf58072c75a5d09d -Size (Canna36p4.tar.gz) = 1455672 bytes -SHA1 (patch-aa) = 6bb6da1cc2a458ebbcfe09fe19a371d7e8aea7da -SHA1 (patch-ab) = b203ad0cb1285ffed0037e0eced3ae298bec5eb9 -SHA1 (patch-ac) = a81a07db87d3b501dedd423e148a8e7e1d1804c4 -SHA1 (patch-ad) = d4b5720c206f81124e0d53e71590de86f66c524c -SHA1 (patch-ae) = 9e8de536052d76d8aeeab2d443dc42450ae53947 -SHA1 (patch-af) = 2700fc8395895176c16562af66ea5bf0b13d4e10 -SHA1 (patch-ag) = cb435e54334ead8dba6a9ac9f14368d69d6e3a7c -SHA1 (patch-ah) = 5d2f01fa4810dafa7a83d02edaec36fc274173fe -SHA1 (patch-ai) = b44d683b2c1d489746f1174f8ae6d06ddca66a59 -SHA1 (patch-aj) = 30d19c8ef9c1129e5214cb9a8a1d8b2b636b0361 -SHA1 (patch-ak) = 18b408344b8b617142ced8804990e87b7ae27f56 -SHA1 (patch-al) = f6025d6fb7a3247ef44b0a50ae13b67ef3dad2d9 -SHA1 (patch-am) = 756aed6fc81a9d75a55d123c8dc00c0932b8df7f -SHA1 (patch-an) = ef892b0837e7b3b5b569a7a9a518df2379c43f1c -SHA1 (patch-ao) = c577319f50df6624333726cd62b48d869989d881 -SHA1 (patch-ap) = 3f514037c4d67b2e18b27285370fe2ea84d977cc -SHA1 (patch-dic_phono_Imakefile) = 3192d7c6e38caf2e5e8378283d673df29c2dc430 +SHA1 (Canna37p3.tar.bz2) = e39eece7c70c669dd46dd74b26121a60a2496fde +RMD160 (Canna37p3.tar.bz2) = 33e5eb9e2dc144835db838612897e652acbc60ed +SHA512 (Canna37p3.tar.bz2) = 82846f2393aa2654dd2c97a93178098b8bd11e5409b584447f1b6fdf303adacc9802e2293cafd98b68af8b69622625ed00aa9712bf270feaa119adfdf4211158 +Size (Canna37p3.tar.bz2) = 1263065 bytes +SHA1 (patch-Canna.conf) = 81b46285a2b91c07b8497dc6669eb26552391a6c +SHA1 (patch-Imakefile) = a70dee63ce9ce392b29b76df70479fee45e1a2b9 +SHA1 (patch-canna_widedef.h) = c52cbbe5b55fc4fca6a501eef50fbf5bb878e514 +SHA1 (patch-canuum_Imakefile) = 5f4e7970a92d514ec538e4591eaa4f46843654a3 +SHA1 (patch-canuum_canna.c) = a543a720fba9e2f770d6397d6b05352cfa58f300 +SHA1 (patch-canuum_config.h.in) = 98547954e459bd85e5b03fc86f34fb5d1e3eed4b +SHA1 (patch-canuum_configure) = c08efb73bb7d93d8c539873c1337be54ed864902 +SHA1 (patch-canuum_configure.in) = a1a6a821b9e9f9baef450ad340cb57a6f20a6989 +SHA1 (patch-canuum_jhlp.c) = 1d15186608f116cc4fb3e6a9691bb1b701d8b0ec +SHA1 (patch-canuum_printf.c) = c05ef114fae689855989d5d5eded2f734c62e12e +SHA1 (patch-canuum_termcap.c) = 958015b3bf4e9f89703e198c1ed28d51ae3f8c4e +SHA1 (patch-canuum_termio.c) = df9e68c8fb564ee4c4367acf6b042c253d17e525 +SHA1 (patch-cmd_cmd.tmpl) = f6ec97c273aa84eb84bdd24cbe16aaf7e696e041 +SHA1 (patch-dic_phono_Imakefile) = 4e1210517317b57796cad5b350de41e1f0d8157d +SHA1 (patch-lib_RKC_convert.c) = f196cfa3db3ef163c1869ca6bfd3f22170997aef +SHA1 (patch-lib_RK_dd.c) = 8055a2a3902e7d4d0cc1d782295c2879311750ec +SHA1 (patch-lib_RK_ncache.c) = f322d8b0c23e3b00b6d605ec2a044ac637a3cbfe diff --git a/inputmethod/canna/patches/patch-Canna.conf b/inputmethod/canna/patches/patch-Canna.conf new file mode 100644 index 00000000000..805bdb80c69 --- /dev/null +++ b/inputmethod/canna/patches/patch-Canna.conf @@ -0,0 +1,82 @@ +$NetBSD: patch-Canna.conf,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ + +- Handle pkgsrc environments +- Enable IPv6 support +- Fix shlib options + +--- Canna.conf.orig 2004-05-19 15:48:47.000000000 +0000 ++++ Canna.conf +@@ -109,12 +109,12 @@ + # define DefErrDir $(cannaPrefix)/log + # define DefLibCannaDir $(cannaExecPrefix)/lib + #else +-# define DefCannaPrefix /usr/local/canna ++# define DefCannaPrefix ${PREFIX} + # ifdef ObsoleteInstallDir + # define DefErrDir /usr/spool/canna + # define DefLibCannaDir /usr/lib + # else +-# define DefErrDir /var/log ++# define DefErrDir ${CANNA_SPOOL} + # define DefLibCannaDir $(cannaExecPrefix)/lib + # endif + #endif +@@ -148,7 +148,7 @@ XCOMM cannaLibDir = /var/lib/canna + XCOMM cannaLibDir = /var/db/canna + cannaLibDir = DefCannaLibDir + XCOMM cannaManDir = $(cannaPrefix)/share/man +-cannaManDir = $(cannaPrefix)/man ++cannaManDir = $(cannaPrefix)/$(PKGMANDIR) + cannaIncDir = $(cannaPrefix)/include/canna + + libCannaDir = DefLibCannaDir +@@ -158,7 +158,7 @@ ErrDir = DefErrDir + #define SupportOldWchar 1 + + /* IPv6を用いる場合は1と定義してください */ +-#define UseInet6 0 /* requires newer IPv6 implementation */ ++#define UseInet6 1 /* requires newer IPv6 implementation */ + + /* 3.2系から3.6系までの形式の辞書を作る場合はこれを定義してください */ + /* #define DIC_3_6_COMPAT */ +@@ -169,8 +169,8 @@ ErrDir = DefErrDir + #define ModernElfLink NO /* experimental */ + + +-cannaOwner = bin +-cannaGroup = bin ++cannaOwner = ${CANNA_USER} ++cannaGroup = ${CANNA_GROUP} + + #ifdef InstallAsUser + cannaOwnerGroup = +@@ -235,7 +235,7 @@ cannaLight = 1 + * コマンド類をリンクする時は、次を YES にしてくだい。 + */ + /* #define UseInstalledLibCanna YES */ +-#define UseInstalledLibCanna NO ++#define UseInstalledLibCanna YES + + DicDir = $(cannaLibDir)/dic + +@@ -279,9 +279,9 @@ DicDir = $(cannaLibDir)/dic + + #if UseInstalledLibCanna + DEPCANNALIB = $(libCannaDir)/CannaDepLibraryName(canna) +-CANNALIB = -L$(libCannaDir) -lcanna $(DLLIB) ++CANNALIB = -Wl,-rpath,$(libCannaDir) -L$(libCannaDir) -lcanna $(DLLIB) + DEPCANNALIB16 = $(libCannaDir)/CannaDepLibraryName(canna16) +-CANNALIB16 = -L$(libCannaDir) -lcanna16 $(DLLIB) ++CANNALIB16 = -Wl,-rpath,$(libCannaDir) -L$(libCannaDir) -lcanna16 $(DLLIB) + #else + DEPCANNALIB = $(CANNASRC)/CannaDepLibraryName(canna) + CANNALIB = -L$(CANNASRC) -lcanna $(DLLIB) +@@ -330,7 +330,7 @@ UILIB_DEFINES = $(cannaDsoRevDef) $(CANN + SCRIPTS_DEFINES = $(CANNA_DEFINES) + + #ifdef JAPANESEMAN +-JMNLOCALE = ja ++JMNLOCALE = ja_JP.EUC + #endif + + /* USE_OBSOLETE_STYLE_FILENAME を定義するための定義 */ diff --git a/inputmethod/canna/patches/patch-ab b/inputmethod/canna/patches/patch-Imakefile index fda4bd146b6..0346d0ebc1e 100644 --- a/inputmethod/canna/patches/patch-ab +++ b/inputmethod/canna/patches/patch-Imakefile @@ -1,7 +1,10 @@ -$NetBSD: patch-ab,v 1.1 2003/05/31 07:24:41 uebayasi Exp $ ---- Imakefile.orig Thu Dec 5 22:39:41 2002 -+++ Imakefile Thu Dec 5 22:40:03 2002 -@@ -60,7 +60,7 @@ +$NetBSD: patch-Imakefile,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ + +Explicitly install man pages. + +--- Imakefile.orig 2004-05-19 15:39:22.000000000 +0000 ++++ Imakefile +@@ -166,7 +166,7 @@ instserver:: for i in $(SERVERDIR) ;\ do \ (cd $$i ; echo "installing" "in $(CURRENT_DIR)/$$i..."; \ @@ -10,7 +13,7 @@ $NetBSD: patch-ab,v 1.1 2003/05/31 07:24:41 uebayasi Exp $ done instclient:: -@@ -68,7 +68,7 @@ +@@ -174,7 +174,7 @@ instclient:: for i in $(CLIENTDIR) ;\ do \ (cd $$i ; echo "installing" "in $(CURRENT_DIR)/$$i..."; \ diff --git a/inputmethod/canna/patches/patch-aa b/inputmethod/canna/patches/patch-aa deleted file mode 100644 index c4689b93a53..00000000000 --- a/inputmethod/canna/patches/patch-aa +++ /dev/null @@ -1,110 +0,0 @@ -$NetBSD: patch-aa,v 1.3 2008/05/20 18:53:17 tnn Exp $ - ---- Canna.conf.orig 2003-09-22 12:27:12.000000000 +0200 -+++ Canna.conf -@@ -133,18 +133,18 @@ - /* rootにならずにインストールする時はこれを定義して下さい */ - /* #define InstallAsUser */ - /* 従来と互換のディレクトリ構造にする場合はこれを定義してください */ --#define ObsoleteInstallDir -+/* #define ObsoleteInstallDir */ - #ifdef InstallAsUser - # define DefCannaPrefix $(HOME)/canna - # define DefErrDir $(cannaPrefix)/log - # define DefLibCannaDir $(cannaExecPrefix)/lib - #else --# define DefCannaPrefix /usr/local/canna -+# define DefCannaPrefix ${PREFIX} - # ifdef ObsoleteInstallDir - # define DefErrDir /usr/spool/canna - # define DefLibCannaDir /usr/lib - # else --# define DefErrDir /var/log -+# define DefErrDir ${CANNA_SPOOL} - # define DefLibCannaDir $(cannaExecPrefix)/lib - # endif - #endif -@@ -164,7 +164,7 @@ XCOMM cannaLibDir = /var/lib/canna - XCOMM cannaLibDir = /var/db/canna - cannaLibDir = DefCannaLibDir - XCOMM cannaManDir = $(cannaPrefix)/share/man --cannaManDir = $(cannaPrefix)/man -+cannaManDir = $(cannaPrefix)/$(PKGMANDIR) - cannaIncDir = $(cannaPrefix)/include/canna - - libCannaDir = DefLibCannaDir -@@ -173,10 +173,10 @@ ErrDir = DefErrDir - /* 次の3行は変更しないでください */ - wcharDefinition = -DCANNA_WCHAR - Wlib = --JapaneseLocale = japanese -+JapaneseLocale = ja_JP.eucJP - --cannaOwner = bin --cannaGroup = bin -+cannaOwner = ${CANNA_USER} -+cannaGroup = ${CANNA_GROUP} - - #ifdef InstallAsUser - cannaOwnerGroup = -@@ -249,7 +249,7 @@ dontHaveRename = 0 - * コマンド類をリンクする時は、次を YES にしてくだい。 - */ - /* #define UseInstalledLibCanna YES */ --#define UseInstalledLibCanna NO -+#define UseInstalledLibCanna YES - - DicDir = $(cannaLibDir)/dic - -@@ -294,18 +294,18 @@ DicDir = $(cannaLibDir)/dic - DEPCANNALIB = $(libCannaDir)/libcanna.a - #endif - # endif -- CANNALIB = -L$(libCannaDir) -lcanna $(DLLIB) -+ CANNALIB = -Wl,-rpath,$(libCannaDir) -L$(libCannaDir) -lcanna $(DLLIB) - #else /* ! UseInstalledLibCanna */ - # if DoSharedLib -- DEPCANNALIB = $(CANNASRC)/libcanna.$(sharedLibExtension) -+ DEPCANNALIB = $(libCannaDir)/libcanna.$(sharedLibExtension) - # else - #ifdef __EMX__ -- DEPCANNALIB = $(CANNASRC)/canna.a -+ DEPCANNALIB = $(libCannaDir)/canna.a - #else -- DEPCANNALIB = $(CANNASRC)/libcanna.a -+ DEPCANNALIB = $(libCannaDir)/libcanna.a - #endif - # endif -- CANNALIB = -L$(CANNASRC) -lcanna $(DLLIB) -+ CANNALIB = -Wl,-rpath,$(libCannaDir) -L$(CANNASRC) -lcanna $(DLLIB) - #endif /* UseInstalledLibCanna */ - - #if UseInstalledLibCanna -@@ -314,14 +314,14 @@ DicDir = $(cannaLibDir)/dic - # else - DEPCANNALIB16 = $(libCannaDir)/libcanna16.a - # endif -- CANNALIB16 = -L$(libCannaDir) -lcanna16 $(DLLIB) -+ CANNALIB16 = -Wl,-rpath,$(libCannaDir) -L$(libCannaDir) -lcanna16 $(DLLIB) - #else /* ! UseInstalledLibCanna */ - # if DoSharedLib -- DEPCANNALIB16 = $(CANNASRC)/libcanna16.$(sharedLibExtension) -+ DEPCANNALIB16 = $(libCannaDir)/libcanna16.$(sharedLibExtension) - # else -- DEPCANNALIB16 = $(CANNASRC)/libcanna16.a -+ DEPCANNALIB16 = $(libCannaDir)/libcanna16.a - # endif -- CANNALIB16 = -L$(CANNASRC) -lcanna16 $(DLLIB) -+ CANNALIB16 = -Wl,-rpath,$(libCannaDir) -L$(CANNASRC) -lcanna16 $(DLLIB) - #endif /* UseInstalledLibCanna */ - - /* -@@ -338,7 +338,7 @@ DicDir = $(cannaLibDir)/dic - SCRIPTS_DEFINES = - - #ifdef JAPANESEMAN --JMNLOCALE = ja -+JMNLOCALE = ja_JP.EUC - #endif - - /* USE_OBSOLETE_STYLE_FILENAME を定義するための定義 */ diff --git a/inputmethod/canna/patches/patch-ac b/inputmethod/canna/patches/patch-ac deleted file mode 100644 index 5d5f35c4f3b..00000000000 --- a/inputmethod/canna/patches/patch-ac +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-ac,v 1.2 2005/01/13 12:18:42 minskim Exp $ - ---- dic/phono/Imakefile.orig 2002-10-19 03:27:40.000000000 -0500 -+++ dic/phono/Imakefile -@@ -27,9 +27,9 @@ - - ROMAJI_DIC_DEF = -DSHIFT - -- DICDIR = $(cannaLibDir)/dic -- SAMPLEDIR = $(cannaLibDir)/sample -- SAMPLESRCDIR = $(cannaLibDir)/sample/src -+ DICDIR = $(DicDir) -+ SAMPLEDIR = $(DicDir)/sample -+ SAMPLESRCDIR = $(DicDir)/sample/src - - KPDEF = default.kpdef jdaemon.kpdef just.kpdef kaisoku.kpdef kana.kpdef \ - lan5.kpdef matsu.kpdef newjis.kpdef romaji.kpdef sokuon.kpdef \ diff --git a/inputmethod/canna/patches/patch-ad b/inputmethod/canna/patches/patch-ad deleted file mode 100644 index 2679255fdf7..00000000000 --- a/inputmethod/canna/patches/patch-ad +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-ad,v 1.1 2003/05/31 07:24:42 uebayasi Exp $ ---- dic/ideo/pubdic/Imakefile.orig Thu Dec 5 23:43:40 2002 -+++ dic/ideo/pubdic/Imakefile Thu Dec 5 23:43:52 2002 -@@ -9,7 +9,7 @@ - CANNAROOT = ../../.. - CANNACMDDIR = $(CANNAROOT)/cmd - MERGE = $(CANNACMDDIR)/mergewd/mergeword -- INCLUDES = -I$(CANNAROOT)/include -+ INCLUDES = -I$(CANNAROOT)/canna - #endif - TARGETS = iroha.t - PUBDICS = a.p k.p s.p t.p n.p h.p m.p y.p r.p w.p x.p diff --git a/inputmethod/canna/patches/patch-af b/inputmethod/canna/patches/patch-af deleted file mode 100644 index 8a8dfc610f5..00000000000 --- a/inputmethod/canna/patches/patch-af +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-af,v 1.1 2003/05/31 07:24:42 uebayasi Exp $ - ---- lib/RKC/convert.c.orig Wed May 22 22:02:57 1996 -+++ lib/RKC/convert.c -@@ -32,7 +32,7 @@ - #ifndef WIN - #include "sglobal.h" - #endif --#include "IRproto.h" -+#include "../server/IRproto.h" - - #include <errno.h> - #include <sys/types.h> diff --git a/inputmethod/canna/patches/patch-ag b/inputmethod/canna/patches/patch-ag deleted file mode 100644 index 4511c95bbb3..00000000000 --- a/inputmethod/canna/patches/patch-ag +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ag,v 1.1 2005/12/30 15:16:21 joerg Exp $ - ---- cmd/cannastat/cannastat.c.orig 2005-12-30 14:28:41.000000000 +0000 -+++ cmd/cannastat/cannastat.c -@@ -95,8 +95,6 @@ static IRwReq cRreq ; - static IRReq iRreq ; - static long cur_time ; - --extern int errno; -- - static int - *TotalReqCount, OldTotalReqCount[ OLD_MAXREQUESTNO ], - ProtoCount, diff --git a/inputmethod/canna/patches/patch-ah b/inputmethod/canna/patches/patch-ah deleted file mode 100644 index 650d07f02d6..00000000000 --- a/inputmethod/canna/patches/patch-ah +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ah,v 1.1 2005/12/30 15:16:21 joerg Exp $ - ---- cmd/cshost/cshost.c.orig 2005-12-30 14:37:58.000000000 +0000 -+++ cmd/cshost/cshost.c -@@ -70,8 +70,6 @@ static IRReq iRreq ; - static int ServerFD ; - static int ProtocolVersion ; - --extern int errno; -- - main(argc, argv) - int argc ; - char **argv ; diff --git a/inputmethod/canna/patches/patch-ai b/inputmethod/canna/patches/patch-ai deleted file mode 100644 index ebc49f6c74f..00000000000 --- a/inputmethod/canna/patches/patch-ai +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ai,v 1.1 2005/12/30 15:16:21 joerg Exp $ - ---- server/WaitFor.c.orig 2005-12-30 14:38:44.000000000 +0000 -+++ server/WaitFor.c -@@ -78,8 +78,6 @@ extern void CheckConnections(); - extern void EstablishNewConnections(); - extern void CheckSignal pro((void)); - --extern int errno; -- - static int - _anyset(src) - long *src; diff --git a/inputmethod/canna/patches/patch-aj b/inputmethod/canna/patches/patch-aj deleted file mode 100644 index e555b027caa..00000000000 --- a/inputmethod/canna/patches/patch-aj +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-aj,v 1.1 2005/12/30 15:16:21 joerg Exp $ - ---- server/connection.c.orig 2005-12-30 14:39:13.000000000 +0000 -+++ server/connection.c -@@ -69,8 +69,6 @@ static char rcs_id[] = "$Id: connection. - #include "net.h" - #include "IR.h" - --extern int errno; -- - long *AllSockets; /* select on this */ - long *AllClients; /* available clients */ - long *LastSelectMask ; /* mask returned from last select call */ diff --git a/inputmethod/canna/patches/patch-ak b/inputmethod/canna/patches/patch-ak deleted file mode 100644 index 9aec5a04230..00000000000 --- a/inputmethod/canna/patches/patch-ak +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-ak,v 1.1 2005/12/30 15:16:21 joerg Exp $ - ---- server/convert.c.orig 2005-12-30 14:39:52.000000000 +0000 -+++ server/convert.c -@@ -57,7 +57,6 @@ static char rcs_id[] = "@(#) 102.1 $Id: - #define IR_INT_INVAL(x) ((unsigned int)x > IR_INT_MAX) - - extern void CheckSignal pro((void)); --extern int errno; - - #ifdef DEBUGPROTO - static void diff --git a/inputmethod/canna/patches/patch-al b/inputmethod/canna/patches/patch-al deleted file mode 100644 index 86e2b8b83f8..00000000000 --- a/inputmethod/canna/patches/patch-al +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-al,v 1.1 2005/12/30 15:16:21 joerg Exp $ - ---- server/wconvert.c.orig 2005-12-30 14:40:19.000000000 +0000 -+++ server/wconvert.c -@@ -84,7 +84,6 @@ static char rcs_id[] = "@(#) 102.1 $Id: - #include "IR.h" - - extern void CheckSignal pro((void)); --extern int errno; - - typedef struct { - #ifdef __STDC__ diff --git a/inputmethod/canna/patches/patch-am b/inputmethod/canna/patches/patch-am deleted file mode 100644 index 714866e54d3..00000000000 --- a/inputmethod/canna/patches/patch-am +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-am,v 1.1 2005/12/30 15:16:21 joerg Exp $ - ---- server/misc.c.orig 2005-12-30 14:40:43.000000000 +0000 -+++ server/misc.c -@@ -75,8 +75,6 @@ extern void CheckConnections(); - void - FatalError(); - --extern int errno; -- - #ifdef DEBUG - #define LOGFILE "/tmp/canna.log" - static FILE *ServerLogFp = (FILE *)0; diff --git a/inputmethod/canna/patches/patch-an b/inputmethod/canna/patches/patch-an deleted file mode 100644 index d19339a2063..00000000000 --- a/inputmethod/canna/patches/patch-an +++ /dev/null @@ -1,22 +0,0 @@ -$NetBSD: patch-an,v 1.2 2011/12/07 16:05:59 roy Exp $ - ---- canuum/canna.c.orig 2005-12-30 14:56:11.000000000 +0000 -+++ canuum/canna.c -@@ -92,8 +92,6 @@ static char rcsid[] = "$Id: canna.c,v 1. - #define PARTIALREDRAW 1 - #define NOREDRAW 0 - --extern int errno; -- - static int maxmodelen; - static int maxwidth = 0; - -@@ -1268,7 +1266,7 @@ - cannakeyentry(key_end, CANNA_KEY_End); - #endif - -- resetterm(); -+ reset_shell_mode(); - #endif - - if (terminalname = malloc(strlen(term) + 1)) { diff --git a/inputmethod/canna/patches/patch-ap b/inputmethod/canna/patches/patch-ap deleted file mode 100644 index b3273be54aa..00000000000 --- a/inputmethod/canna/patches/patch-ap +++ /dev/null @@ -1,30 +0,0 @@ -$NetBSD: patch-ap,v 1.1 2011/12/07 16:05:59 roy Exp $ - ---- canuum/termio.c.orig 2011-12-07 13:20:41.000000000 +0000 -+++ canuum/termio.c 2011-12-07 15:58:50.000000000 +0000 -@@ -175,7 +175,6 @@ - void - closeTermData () - { -- resetterm (); - reset_shell_mode (); - } - -@@ -195,7 +194,7 @@ - set_scroll_region (start, end) - int start, end; - { -- tputs (tparm (change_scroll_region, start, end), 1, putchar); -+ tputs (tparm (change_scroll_region, start, end, 0, 0, 0, 0, 0, 0, 0), 1, putchar); - } - - void -@@ -223,7 +222,7 @@ - throw_cur_raw (col, row) - int col, row; - { -- tputs (tparm (cursor_address, row, col), 1, putchar); -+ tputs (tparm (cursor_address, row, col, 0, 0, 0, 0, 0, 0, 0), 1, putchar); - } - - void diff --git a/inputmethod/canna/patches/patch-ae b/inputmethod/canna/patches/patch-canna_widedef.h index 6fdc672a2d0..e0d6fcf44e9 100644 --- a/inputmethod/canna/patches/patch-ae +++ b/inputmethod/canna/patches/patch-canna_widedef.h @@ -1,10 +1,12 @@ -$NetBSD: patch-ae,v 1.1 2005/12/29 15:29:12 joerg Exp $ +$NetBSD: patch-canna_widedef.h,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ ---- canna/widedef.h.orig 2003-09-12 14:32:52.000000000 +0000 +DragonFly wchar_t support. + +--- canna/widedef.h.orig 2003-12-27 17:15:20.000000000 +0000 +++ canna/widedef.h -@@ -66,7 +66,10 @@ - #endif /* !nec_ews_svr2 */ - #endif /* HAVE_WCHAR_OPERATION */ +@@ -36,7 +36,10 @@ + # include <machine/ansi.h> + #endif -#if (defined(__FreeBSD__) && __FreeBSD_version < 500000) \ +#if defined(__DragonFly__) diff --git a/inputmethod/canna/patches/patch-canuum_Imakefile b/inputmethod/canna/patches/patch-canuum_Imakefile new file mode 100644 index 00000000000..d111862bf89 --- /dev/null +++ b/inputmethod/canna/patches/patch-canuum_Imakefile @@ -0,0 +1,25 @@ +$NetBSD: patch-canuum_Imakefile,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ + +Disable obsolete libspt because posix_openpt(3) or openpty(3) is enough for us. + +--- canuum/Imakefile.orig 2004-05-19 15:39:22.000000000 +0000 ++++ canuum/Imakefile +@@ -17,9 +17,15 @@ TERMCAP_LIB = -ltermcap + INSTUGIDFLAGS = + CANNASRC = $(CANNAROOT)/lib/canna16 + DEFINES = -DCANNA -DJAPANESE $(SIGNAL_DEFINES) -DHAVE_CONFIG_H \ +- -DCONFIG_TERMINFO -DUSE_LIBSPT +- INCLUDES = -I$(CANNAROOT)/include -I. `libspt-config --cflags` +-SYS_LIBRARIES = $(TERMCAP_LIB) `libspt-config --libs` ++ -DCONFIG_TERMINFO ++ INCLUDES = -I$(CANNAROOT)/include -I. ++SYS_LIBRARIES = $(TERMCAP_LIB) ++ ++XCOMM XXX required only for openpty(3) ++#if (defined(LinuxArchitecture) && \ ++ (LinuxCLibMajorVersion == 6) && (LinuxCLibMinorVersion < 1)) ++SYS_LIBRARIES += -lutil ++#endif + + SRCS = header.c printf.c termio.c termcap.c \ + screen.c cursor.c jhlp.c xutoj.c canna.c diff --git a/inputmethod/canna/patches/patch-canuum_canna.c b/inputmethod/canna/patches/patch-canuum_canna.c new file mode 100644 index 00000000000..a558a383eaa --- /dev/null +++ b/inputmethod/canna/patches/patch-canuum_canna.c @@ -0,0 +1,47 @@ +$NetBSD: patch-canuum_canna.c,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ + +- Appease prototype warnings. +- Remove unnecessary ops. + +--- canuum/canna.c.orig 2003-09-17 08:50:52.000000000 +0000 ++++ canuum/canna.c +@@ -52,4 +52,16 @@ static char rcsid[] = "$Id: canna.c,v 1. + #endif + ++#ifdef HAVE_CONFIG_H ++# include <config.h> ++#endif ++ ++#if STDC_HEADERS ++# include <string.h> ++#else ++# if HAVE_STRINGS_H ++# include <strings.h> ++# endif ++#endif /* STDC_HEADERS */ ++ + #include "commonhd.h" + #include "sdefine.h" +@@ -95,6 +107,4 @@ static char rcsid[] = "$Id: canna.c,v 1. + #define NOREDRAW 0 + +-extern int errno; +- + static int maxmodelen; + static int maxwidth = 0; +@@ -1239,8 +1249,6 @@ int flag; + + #ifdef TERMINFO +- int fd, res; + +- fd = open("/dev/null", O_WRONLY, &res); +- setupterm(term, fd, (int *)0); ++ setupterm(term, 0, NULL); + + cannakeyentry(key_f1, CANNA_KEY_F1); +@@ -1271,5 +1279,4 @@ int flag; + #endif + +- resetterm(); + #endif + diff --git a/inputmethod/canna/patches/patch-canuum_config.h.in b/inputmethod/canna/patches/patch-canuum_config.h.in new file mode 100644 index 00000000000..c4816167618 --- /dev/null +++ b/inputmethod/canna/patches/patch-canuum_config.h.in @@ -0,0 +1,51 @@ +$NetBSD: patch-canuum_config.h.in,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ + +Check openpty(3), posix_openpt(3), and ptsname(3). + +--- canuum/config.h.in.orig 2004-05-19 15:48:58.000000000 +0000 ++++ canuum/config.h.in +@@ -83,6 +83,9 @@ + /* Define to 1 if you have the `killpg' function. */ + #undef HAVE_KILLPG + ++/* Define to 1 if you have the <libutil.h> header file. */ ++#undef HAVE_LIBUTIL_H ++ + /* Define to 1 if you have the <malloc.h> header file. */ + #undef HAVE_MALLOC_H + +@@ -98,6 +101,15 @@ + /* Define to 1 if you have the `memset' function. */ + #undef HAVE_MEMSET + ++/* Define to 1 if you have the openpty function. */ ++#undef HAVE_OPENPTY ++ ++/* Define to 1 if you have the posix_openpt function. */ ++#undef HAVE_POSIX_OPENPT ++ ++/* Define to 1 if you have the ptsname function. */ ++#undef HAVE_PTSNAME ++ + /* Define to 1 if you have the <ncurses.h> header file. */ + #undef HAVE_NCURSES_H + +@@ -200,12 +212,18 @@ + /* Define to 1 if you have the <unistd.h> header file. */ + #undef HAVE_UNISTD_H + ++/* Define to 1 if you have the <util.h> header file. */ ++#undef HAVE_UTIL_H ++ + /* Define to 1 if you have the `vsyslog' function. */ + #undef HAVE_VSYSLOG + + /* Define to 1 if you have the `wait3' function. */ + #undef HAVE_WAIT3 + ++/* Define to 1 if you have the util library (-lutil). */ ++#undef HAVE_LIBUTIL ++ + /* Define to the address where bug reports for this package should be sent. */ + #undef PACKAGE_BUGREPORT + diff --git a/inputmethod/canna/patches/patch-canuum_configure b/inputmethod/canna/patches/patch-canuum_configure new file mode 100644 index 00000000000..07be0d61f83 --- /dev/null +++ b/inputmethod/canna/patches/patch-canuum_configure @@ -0,0 +1,76 @@ +$NetBSD: patch-canuum_configure,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ + +Check openpty(3), posix_openpt(3), and ptsname(3). + +--- canuum/configure.orig 2004-05-19 15:48:55.000000000 +0000 ++++ canuum/configure +@@ -1001,6 +1001,46 @@ fi + + + ++echo $ac_n "checking for openpty in -lutil""... $ac_c" 1>&6 ++echo "configure:1006: checking for openpty in -lutil" >&5 ++ac_lib_var=`echo util'_'openpty | sed 'y%./+-%__p_%'` ++if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ ac_save_LIBS="$LIBS" ++LIBS="-lutil $LIBS" ++cat > conftest.$ac_ext <<EOF ++#line 1014 "configure" ++#include "confdefs.h" ++/* Override any gcc2 internal prototype to avoid an error. */ ++/* We use char because int might match the return type of a gcc2 ++ builtin and then its argument prototype would still apply. */ ++char openpty(); ++ ++int main() { ++openpty() ++; return 0; } ++EOF ++if { (eval echo configure:1025: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++ rm -rf conftest* ++ eval "ac_cv_lib_$ac_lib_var=yes" ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_lib_$ac_lib_var=no" ++fi ++rm -f conftest* ++LIBS="$ac_save_LIBS" ++ ++fi ++if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 ++ HAVE_LIBUTIL='have_libutil' ++else ++ echo "$ac_t""no" 1>&6 ++fi ++ + + # If we find X, set shell vars x_includes and x_libraries to the + # paths, otherwise set no_x=yes. +@@ -1421,7 +1461,7 @@ for ac_hdr in fcntl.h sgtty.h syslog.h u + sys/file.h sys/ioctl.h sys/time.h sys/types.h sys/param.h \ + malloc.h strings.h memory.h \ + curses.h ncurses.h term.h termio.h \ +- termcap.h sgtty.h sys/termio.h termios.h ++ termcap.h sgtty.h sys/termio.h termios.h libutil.h util.h + + do + ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` +@@ -2079,10 +2119,11 @@ fi + for ac_func in random drand48 fchmod getopt \ + gethostname select socket closesocket setsockopt send recv \ + FD_SET \ +- getdtablesize getrlimit syslog vsyslog setenv snprintf ++ getdtablesize getrlimit syslog vsyslog setenv snprintf \ ++ ptsname posix_openpt openpty + do + echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 +-echo "configure:2086: checking for $ac_func" >&5 ++echo "configure:2127: checking for $ac_func" >&5 + if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else diff --git a/inputmethod/canna/patches/patch-canuum_configure.in b/inputmethod/canna/patches/patch-canuum_configure.in new file mode 100644 index 00000000000..9f7ad4f2d26 --- /dev/null +++ b/inputmethod/canna/patches/patch-canuum_configure.in @@ -0,0 +1,49 @@ +$NetBSD: patch-canuum_configure.in,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ + +Check openpty(3), posix_openpt(3), and ptsname(3). + +--- canuum/configure.in.orig 2003-03-24 04:15:22.000000000 +0000 ++++ canuum/configure.in +@@ -378,6 +378,8 @@ AC_CHECK_LIB(socket, connect) + AC_CHECK_LIB(bind, getservbyname) + AC_CHECK_LIB(nsl, gethostbyname) + ])dnl not CANNA ++dnl libutil only needed by uum with openpty... (determine later) ++AC_CHECK_LIB(util, openpty, [HAVE_LIBUTIL='have_libutil']) + + dnl + dnl Checks for header files. +@@ -390,7 +392,7 @@ AC_CHECK_HEADERS(fcntl.h sgtty.h syslog. + sys/file.h sys/ioctl.h sys/time.h sys/types.h sys/param.h \ + malloc.h strings.h memory.h \ + curses.h ncurses.h term.h termio.h \ +- termcap.h sgtty.h sys/termio.h termios.h ++ termcap.h sgtty.h sys/termio.h termios.h libutil.h util.h + ) + dnl If you don't use ansidecl.h, use this (and modify Wnn/jserver/error.c) + dnl AC_CHECK_HEADERS(stdarg.h varargs.h, break) +@@ -508,7 +510,8 @@ dnl AC_FUNC_WAIT3 + AC_CHECK_FUNCS(random drand48 fchmod getopt \ + gethostname select socket closesocket setsockopt send recv \ + FD_SET \ +- getdtablesize getrlimit syslog vsyslog setenv snprintf) ++ getdtablesize getrlimit syslog vsyslog setenv snprintf \ ++ ptsname posix_openpt openpty) + dnl for bcopy/index -> memcpy/strchr conversion (preparation): + AC_CHECK_FUNCS(bcopy bzero bcmp index rindex \ + memcpy memmove memset strchr strrchr) +@@ -520,6 +523,14 @@ AC_CHECK_FUNCS(mkdir vasprintf, , + [JS_SUPPORTOBJS="${JS_SUPPORTOBJS} ${ac_func}.o"]) + AC_SUBST(JS_SUPPORTOBJS) + ++dnl ++dnl File Existence ++dnl Checking file at compile time may bring false result when cross- ++dnl compiling. So, one have to check generated config.h and edit it ++dnl if necessary after running configure. ++dnl ++dnl AC_CHECK_FILE(/dev/ptmx, AC_DEFINE(HAVE_DEV_PTMX, 1, [/dev/ptmx found]),) ++AC_CHECK_FILES(/dev/ptmx,,) + + dnl + dnl Creating Makefiles. diff --git a/inputmethod/canna/patches/patch-canuum_jhlp.c b/inputmethod/canna/patches/patch-canuum_jhlp.c new file mode 100644 index 00000000000..bc76f9de459 --- /dev/null +++ b/inputmethod/canna/patches/patch-canuum_jhlp.c @@ -0,0 +1,1743 @@ +$NetBSD: patch-canuum_jhlp.c,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ + +Pull various fixes include support for openpty(3), posix_openpt(3), +and ptsname(3) etc. from the latest FreeWnn-1.1.1-a023 + +--- canuum/jhlp.c.orig 2004-04-26 21:48:37.000000000 +0000 ++++ canuum/jhlp.c +@@ -11,9 +11,11 @@ + * 1987, 1988, 1989, 1990, 1991, 1992 + * Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999 + * Copyright ASTEC, Inc. 1987, 1988, 1989, 1990, 1991, 1992 +- * Copyright FreeWnn Project 1999, 2000, 2002 ++ * Copyright FreeWnn Project 1999, 2000, 2002, 2003, 2006, 2009, 2013 ++ * Copyright Canna Project 2002 ++ * Copyright Taketo Kabe 2003 + * +- * Maintainer: FreeWnn Project <freewnn@tomo.gr.jp> ++ * Maintainer: FreeWnn Project + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by +@@ -31,7 +33,7 @@ + */ + + #ifndef lint +-static char *rcs_id = "jhlp.c,v 1.13 2002/08/26 09:27:21 aono Exp"; ++static char *rcs_id = "jhlp.c,v 1.26 2013/09/02 11:01:40 itisango Exp"; + #endif /* lint */ + + #ifdef HAVE_CONFIG_H +@@ -39,6 +41,7 @@ static char *rcs_id = "jhlp.c,v 1.13 200 + #endif + + #include <stdio.h> ++#include <sys/types.h> + #include <setjmp.h> + #include <signal.h> + #if STDC_HEADERS +@@ -54,12 +57,20 @@ static char *rcs_id = "jhlp.c,v 1.13 200 + #endif /* STDC_HEADERS */ + #include <errno.h> + #include <sys/ioctl.h> ++#include <sys/stat.h> + #ifdef HAVE_SYS_PARAM_H + # include <sys/param.h> + #endif +-#include <sys/stat.h> +-#include <sys/time.h> +-#include <sys/types.h> ++#if TIME_WITH_SYS_TIME ++# include <sys/time.h> ++# include <time.h> ++#else ++# if HAVE_SYS_TIME_H ++# include <sys/time.h> ++# else ++# include <time.h> ++# endif /* HAVE_SYS_TIME_H */ ++#endif /* TIME_WITH_SYS_TIME */ + #if HAVE_FCNTL_H + # include <fcntl.h> + #endif +@@ -67,56 +78,68 @@ static char *rcs_id = "jhlp.c,v 1.13 200 + #ifdef HAVE_UNISTD_H + # include <unistd.h> + #endif ++#if HAVE_SYS_WAIT_H ++# include <sys/wait.h> ++#endif ++#ifdef HAVE_LIBUTIL_H ++# include <libutil.h> ++#endif ++#ifdef HAVE_UTIL_H ++#include <util.h> ++#endif + #ifdef UX386 + #include <sys/kdef.h> + #endif + +-#include "commonhd.h" +-#include "sdefine.h" +-#include "sheader.h" +-#include "wnn_config.h" +-#include "wnn_os.h" +- +- +-jmp_buf kk_env; +- +- +-#ifdef HAVE_WAIT3 +-# include <sys/wait.h> +-#endif /* HAVE_WAIT3 */ +- +-#ifdef USE_LIBSPT +-# include <libspt.h> ++/* Solaris 2.x needs termio.h , so include both. */ ++#if HAVE_TERMIOS_H ++# include <termios.h> ++#endif ++#if HAVE_TERMIO_H ++# include <termio.h> + #endif + + #if defined(HAVE_TERMIOS_H) +-# include <termios.h> +-# define USE_TERMIOS ++/* # include <termios.h> */ ++# define USE_TERMIOS 1 + #elif defined(HAVE_TERMIO_H) +-# include <termio.h> +-# define USE_TERMIO ++/* # include <termio.h> */ ++# define USE_TERMIO 1 + #elif defined(HAVE_SYS_TERMIO_H) +-# include <sys/termio.h> +-# define USE_TERMIO ++# include <sys/termio.h> ++# define USE_TERMIO 1 + #elif defined(HAVE_SGTTY_H) +-# include <sgtty.h> +-# define USE_SGTTY ++# include <sgtty.h> ++# define USE_SGTTY + #else +-# error "No termio header." +-#endif ++# error "No termio header." ++#endif /* HAVE_TERMIOS_H */ + +-#ifdef linux +-/* # define USE_LINUX_TERM */ ++#ifdef USE_LIBSPT ++# include <libspt.h> + #endif + ++/* ++ * Enable old Linux specific code. ++ * We hope you don't have to use this #define ... ++ * (We will remove this #define and related code in near future.) ++ */ ++/* #define USE_LINUX_TERM */ ++ ++ ++#include "sdefine.h" ++ ++#include "commonhd.h" ++#include "sheader.h" ++#include "wnn_config.h" ++#include "wnn_os.h" ++ + #ifdef nec_ews_svr2 +-#include <sys/jtermio.h> ++# include <sys/jtermio.h> + #endif /* nec_ews_svr2 */ +- + #if defined(uniosu) + # include <sys/pty.h> + #endif /* defined(uniosu) */ +- + #ifdef SVR4 + #include <sys/stropts.h> + #include <sys/euc.h> +@@ -132,11 +155,12 @@ jmp_buf kk_env; + + #define ERROR -1 + ++jmp_buf kk_env; + #ifdef TIOCSSIZE + struct ttysize pty_rowcol; + #endif /* TIOCSSIZE */ + +-int ttyfd; ++int ttyfd; /* master tty */ + + char *tname; /* terminal name */ + char *cmdnm = "csh"; /* char *cmdnm = "csh"; */ +@@ -145,28 +169,33 @@ int child_id; + char *prog; + #ifdef USE_LIBSPT + spt_handle *spth = NULL; +-int need_utmp_clear = 0; + #endif ++int need_utmp_clear = 0; + +-extern char *optarg; +-extern int optind; +- +-extern char *ttyname (); +- +-static void save_signals (); +-static void restore_signals (); +- +-static RETSIGTYPE terminate_handler (); +-static void do_end (), open_pty (), open_ttyp (), do_main (), exec_cmd (), parse_options (), setsize (), get_rubout (), usage (), change_size (), default_usage (); +-static void j_term_save (), j_term_restore (), j_term_p_init (int); ++static void save_signals (void); ++static void restore_signals (void); ++static RETSIGTYPE terminate_handler (int); ++static void do_end (void); ++static void open_pty (void); ++static void open_pty_traditional (void); ++static void open_ttyp (void); ++static void do_main (void); ++static void exec_cmd (char **); ++static void parse_options (int, char **); ++static void setsize (void); ++static void get_rubout (void); ++static void usage (char *); ++static void change_size (void); ++static void default_usage (void); ++static void j_term_save (void); ++static void j_term_restore (void); ++static void j_term_p_init (int); ++static unsigned char keyin0 (void); ++static void uum_err (char *); + +-/** メイン */ + int +-main (argc, argv) +- int argc; +- char **argv; ++main (int argc, char **argv) + { +- + char *name; + char *p; + char nlspath[64]; +@@ -174,7 +203,7 @@ main (argc, argv) + char *server_env; + char errprefix[1024] = "error"; + int i; +- extern char *get_server_env (); ++ extern char *get_server_env (char *); + + prog = argv[0]; + flow_control = FLOW_CONTROL; +@@ -344,7 +373,7 @@ main (argc, argv) + } + + j_term_save (); +- /* do_end() is allowed after here */ ++ /* do_end () is allowed from here */ + save_signals (); + + #ifdef TERMCAP +@@ -377,6 +406,9 @@ main (argc, argv) + + ttyfd = 0; + open_pty (); ++/* It is normal to open tty here, before fork(). ++ Don't know why linux is different. ++ So temporally comment it out to make it as other OSes. */ + #ifndef USE_LINUX_TERM + open_ttyp (); + #endif +@@ -387,7 +419,7 @@ main (argc, argv) + switch (init_uum ()) + { /* initialize of kana-kanji henkan */ + case -1: +- terminate_handler (); ++ terminate_handler (-1); + break; + case -2: + epilogue (); +@@ -399,7 +431,7 @@ main (argc, argv) + + if (j_term_init () == ERROR) + { +- err ("term initialize fault."); ++ uum_err ("term initialize fault."); + } + + #ifndef CANNA +@@ -415,7 +447,7 @@ main (argc, argv) + } + flush (); + } +-#endif /* !CANNA */ ++#endif /* CANNA */ + + puteustring (MSG_GET (1), + /* +@@ -434,6 +466,7 @@ main (argc, argv) + #endif /* defined(uniosu) */ + + do_main (); ++ return 0; + } + + /* +@@ -441,7 +474,7 @@ main (argc, argv) + */ + + static int +-do_h_opt () ++do_h_opt (void) + { + henkan_off_flag = 1; + defined_by_option |= OPT_WAKING_UP_MODE; +@@ -449,7 +482,7 @@ do_h_opt () + } + + static int +-do_H_opt () ++do_H_opt (void) + { + henkan_off_flag = 0; + defined_by_option |= OPT_WAKING_UP_MODE; +@@ -458,42 +491,42 @@ do_H_opt () + + #ifdef JAPANESE + int +-do_u_opt () ++do_u_opt (void) + { + pty_c_flag = J_EUJIS; + return 0; + } + + int +-do_j_opt () ++do_j_opt (void) + { + pty_c_flag = J_JIS; + return 0; + } + + int +-do_s_opt () ++do_s_opt (void) + { + pty_c_flag = J_SJIS; + return 0; + } + + int +-do_U_opt () ++do_U_opt (void) + { + tty_c_flag = J_EUJIS; + return 0; + } + + int +-do_J_opt () ++do_J_opt (void) + { + tty_c_flag = J_JIS; + return 0; + } + + int +-do_S_opt () ++do_S_opt (void) + { + tty_c_flag = J_SJIS; + return 0; +@@ -502,28 +535,28 @@ do_S_opt () + + #ifdef CHINESE + int +-do_b_opt () ++do_b_opt (void) + { + pty_c_flag = C_BIG5; + return 0; + } + + int +-do_t_opt () ++do_t_opt (void) + { + pty_c_flag = C_ECNS11643; + return 0; + } + + int +-do_B_opt () ++do_B_opt (void) + { + tty_c_flag = C_BIG5; + return 0; + } + + int +-do_T_opt () ++do_T_opt (void) + { + tty_c_flag = C_ECNS11643; + return 0; +@@ -532,14 +565,14 @@ do_T_opt () + + #ifdef KOREAN + int +-do_u_opt () ++do_u_opt (void) + { + pty_c_flag = K_EUKSC; + return 0; + } + + int +-do_U_opt () ++do_U_opt (void) + { + tty_c_flag = K_EUKSC; + return 0; +@@ -547,14 +580,14 @@ do_U_opt () + #endif /* KOREAN */ + + static int +-do_P_opt () ++do_P_opt (void) + { + sleep (20); + return 0; + } + + static int +-do_x_opt () ++do_x_opt (void) + { + flow_control = 0; + defined_by_option |= OPT_FLOW_CTRL; +@@ -562,7 +595,7 @@ do_x_opt () + } + + static int +-do_X_opt () ++do_X_opt (void) + { + flow_control = 1; + defined_by_option |= OPT_FLOW_CTRL; +@@ -570,7 +603,7 @@ do_X_opt () + } + + static int +-do_k_opt () ++do_k_opt (void) + { + strncpy(uumkey_name_in_uumrc, optarg, PATHNAMELEN-1); + uumkey_name_in_uumrc[PATHNAMELEN-1] = '\0'; +@@ -583,7 +616,7 @@ do_k_opt () + } + + static int +-do_c_opt () ++do_c_opt (void) + { + strncpy(convkey_name_in_uumrc, optarg, PATHNAMELEN-1); + convkey_name_in_uumrc[PATHNAMELEN-1] = '\0'; +@@ -596,7 +629,7 @@ do_c_opt () + } + + static int +-do_r_opt () ++do_r_opt (void) + { + strncpy(rkfile_name_in_uumrc, optarg, PATHNAMELEN-1); + rkfile_name_in_uumrc[PATHNAMELEN-1] = '\0'; +@@ -609,14 +642,14 @@ do_r_opt () + } + + static int +-do_l_opt () ++do_l_opt (void) + { + conv_lines = atoi (optarg); + return 0; + } + + static int +-do_D_opt () ++do_D_opt (void) + { + strncpy(def_servername, optarg, PATHNAMELEN-1); + def_servername[PATHNAMELEN-1] = '\0'; +@@ -629,7 +662,7 @@ do_D_opt () + } + + static int +-do_n_opt () ++do_n_opt (void) + { + strncpy(username, optarg, PATHNAMELEN-1); + username[PATHNAMELEN-1] = '\0'; +@@ -641,13 +674,13 @@ do_n_opt () + } + + static int +-do_v_opt () ++do_v_opt (void) + { + defined_by_option |= OPT_VERBOSE; + return 0; + } + +-static int (*do_opt[]) () = ++static int (*do_opt[]) (void) = + { + do_h_opt, /* 'h' : waking_up_in_henkan_mode */ + do_H_opt, /* 'H' : waking_up_no_henkan_mode */ +@@ -693,43 +726,31 @@ parse_options (argc, argv) + /** tty に対する ioctl のセット */ + + #ifdef USE_SGTTY +-#if defined(BSD43) || defined(DGUX) /* should be "defined(LPASS8)"? */ +-# define SET_PASS8 +-#endif ++# if defined(BSD43) || defined(DGUX) /* should be "defined(LPASS8)"? */ ++# define SET_PASS8 1 ++# endif ++ + struct sgttyb savetmio; +-struct sgttyb ttyb_def = +-{ B9600, B9600, 0x7f, 0x15, EVENP | ODDP | ECHO | CRMOD }; ++struct sgttyb ttyb_def = { B9600, B9600, 0x7f, 0x15, ++ EVENP | ODDP | ECHO | CRMOD }; + int local_mode_def = LCRTBS | LCRTERA | LCRTKIL | LCTLECH | LPENDIN | LDECCTQ; +- + /* added later */ + struct tchars tcharsv; + struct ltchars ltcharsv; + struct sgttyb ttyb; + int local_mode; +-#ifdef SET_PASS8 ++# ifdef SET_PASS8 + static int local_mode_sv; +-#endif +- ++# endif + + static void +-get_rubout () ++get_rubout (void) + { +-#ifdef nodef +- if (savetmio.sg_erase == UNDEF_STTY) +- { +- rubout_code = RUBOUT; +- } +- else +- { +-#endif +- rubout_code = savetmio.sg_erase; +-#ifdef nodef +- } +-#endif ++ rubout_code = savetmio.sg_erase; + } + + int +-j_term_init () ++j_term_init (void) + { + struct sgttyb buf; + +@@ -737,43 +758,42 @@ j_term_init () + buf.sg_flags |= RAW; + buf.sg_flags &= ~ECHO; + ioctl (ttyfd, TIOCSETP, &buf); +-#ifdef SET_PASS8 ++# ifdef SET_PASS8 + ioctl (ttyfd, TIOCLSET, &local_mode); +-#endif ++# endif + + return 0; + } + + static void +-j_term_save () ++j_term_save (void) + { + ioctl (ttyfd, TIOCGETC, &tcharsv); + ioctl (ttyfd, TIOCGLTC, <charsv); + if (ioctl (ttyfd, TIOCGETP, &ttyb)) + ttyb = ttyb_def; + savetmio = ttyb; +-#ifdef SET_PASS8 ++# ifdef SET_PASS8 + if (ioctl (ttyfd, TIOCLGET, &local_mode_sv)) + local_mode_sv = local_mode_def; +- local_mode = local_mode_sv | LPASS8; /* set PASS8 */ +-#else /* !SET_PASS8 */ ++ local_mode = local_mode_sv | LPASS8; /* set PASS8 */ ++# else /* !SET_PASS8 */ + if (ioctl (ttyfd, TIOCLGET, &local_mode)) + local_mode = local_mode_def; +-#endif /* !SET_PASS8 */ ++# endif /* !SET_PASS8 */ + } + + static void +-j_term_restore () ++j_term_restore (void) + { + ioctl (ttyfd, TIOCSETP, &savetmio); +-#ifdef SET_PASS8 ++# ifdef SET_PASS8 + ioctl (ttyfd, TIOCLSET, &local_mode_sv); +-#endif /* SET_PASS8 */ ++# endif /* SET_PASS8 */ + } + + static void +-j_term_p_init (ttypfd) +- int ttypfd; ++j_term_p_init (int ttypfd) + { + int word; + ioctl (ttypfd, TIOCSETC, &tcharsv); +@@ -791,35 +811,33 @@ j_term_p_init (ttypfd) + #if defined(USE_TERMIO) || defined(USE_TERMIOS) + + #ifdef USE_TERMIOS +-# define TERMIO termios +-# define GET_TERMATTR(fd, tio) tcgetattr(fd, tio) +-# define SET_TERMATTR(fd, tio) tcsetattr(fd, TCSADRAIN, tio) +-# define UNDEF_STTY _POSIX_VDISABLE +-# define SET_ATTR_ERROR "error in tcsetattr.\n" +-#else +-# define TERMIO termio +-# define GET_TERMATTR(fd, tio) ioctl(fd, TCGETA, tio) +-# ifdef TCSETAW +-# define SET_TERMATTR(fd, tio) ioctl(fd, TCSETAW, tio) +-# else +-# define SET_TERMATTR(fd, tio) ioctl(fd, TCSETA, tio) +-# endif +-# define UNDEF_STTY 0xff +-# define SET_ATTR_ERROR "error in ioctl TCSETA.\n" +-#endif ++# define TERMIO termios ++# define GET_TERMATTR(fd, tio) tcgetattr(fd, tio) ++# define SET_TERMATTR(fd, tio) tcsetattr(fd, TCSADRAIN, tio) ++# define UNDEF_STTY _POSIX_VDISABLE ++# define SET_ATTR_ERROR "error in tcsetattr.\n" ++#else /* !USE_TERMIOS */ ++# define TERMIO termio ++# define GET_TERMATTR(fd, tio) ioctl(fd, TCGETA, tio) ++# ifdef TCSETAW ++# define SET_TERMATTR(fd, tio) ioctl(fd, TCSETAW, tio) ++# define SET_ATTR_ERROR "error in ioctl TCSETAW.\n" ++# else ++# define SET_TERMATTR(fd, tio) ioctl(fd, TCSETA, tio) ++# define SET_ATTR_ERROR "error in ioctl TCSETA.\n" ++# endif ++# define UNDEF_STTY 0xff ++#endif /* !USE_TERMIOS */ + #ifdef CERASE +-# define WNN_CERASE CERASE +-#elif defined(CDEL) +-# define WNN_CERASE CDEL ++# define WNN_CERASE CERASE + #else +-# define WNN_CERASE 0x7f ++# define WNN_CERASE 0x7f + #endif + + struct TERMIO savetmio; + + static void +-set_default_termio (terms) +- struct TERMIO *terms; ++set_default_termio (struct TERMIO *terms) + { + bzero (terms, sizeof *terms); + terms->c_iflag = IGNBRK | ICRNL | IXON; +@@ -839,12 +857,12 @@ set_default_termio (terms) + terms->c_cc[VKILL] = 0x15; + terms->c_cc[VEOF] = 0x4; + terms->c_cc[VEOL] = _POSIX_VDISABLE; +-#ifdef VEOL2 ++# ifdef VEOL2 + terms->c_cc[VEOL2] = _POSIX_VDISABLE; +-#endif ++# endif + cfsetospeed (terms, B9600); + cfsetispeed (terms, B9600); +-#else ++#else /* !USE_TERMIOS */ + terms->c_line = 0; + terms->c_cc[0] = 0x3; + terms->c_cc[1] = 0x1c; +@@ -854,7 +872,7 @@ set_default_termio (terms) + terms->c_cc[5] = 0; + terms->c_cc[6] = 0; + terms->c_cc[7] = 0; +-#endif ++#endif /* !USE_TERMIOS */ + } + + #if defined(uniosu) +@@ -866,7 +884,7 @@ struct auxtermio auxterm = { + #endif /* defined(uniosu) */ + + static void +-get_rubout () ++get_rubout (void) + { + if (savetmio.c_cc[VERASE] == UNDEF_STTY) + { +@@ -879,7 +897,7 @@ get_rubout () + } + + int +-j_term_init () ++j_term_init (void) + { + struct TERMIO buf1; + #if defined(uniosu) +@@ -887,33 +905,37 @@ j_term_init () + #endif /* defined(uniosu) */ + + buf1 = savetmio; +-#ifdef USE_LINUX_TERM ++#ifdef linux + buf1.c_lflag &= ~(ECHONL | ECHOK | ECHOE | ECHO | XCASE | ICANON | ISIG); + buf1.c_iflag = 0; + buf1.c_oflag &= ~OPOST; + buf1.c_cflag |= CS8; + buf1.c_cc[VMIN] = 1; /* cf. ICANON */ + buf1.c_cc[VTIME] = 0; +-#else /* !USE_LINUX_TERM */ ++ buf1.c_iflag &= ~(ISTRIP | INLCR | IGNCR | ICRNL | IUCLC | IXON); ++#else /* !linux */ + buf1.c_iflag &= ~(ISTRIP | INLCR | IGNCR | ICRNL | IXON); +-#ifdef IUCLC +- buf1.c_iflag &= IUCLC; +-#endif ++# ifdef IUCLC ++ buf1.c_iflag &= ~(IUCLC); ++# endif + if (flow_control) + { + buf1.c_iflag |= IXON; + } + buf1.c_lflag &= ~(ECHONL | ECHOK | ECHOE | ECHO | ICANON | ISIG); +-#ifdef XCASE +- buf1.c_lflag &= XCASE; +-#endif ++# ifdef XCASE ++ buf1.c_lflag &= ~(XCASE); ++# endif ++# ifdef IEXTEN ++ buf1.c_lflag &= ~(IEXTEN); ++# endif + buf1.c_oflag = OPOST; +-#ifdef USE_TERMIOS +- buf1.c_cc[VMIN] = 1; /* cf. ICANON */ ++# ifdef USE_TERMIOS ++ buf1.c_cc[VMIN] = 1; + buf1.c_cc[VTIME] = 0; + cfsetispeed(&buf1, cfgetispeed(&savetmio)); + cfsetospeed(&buf1, cfgetospeed(&savetmio)); +-#else /* !USE_TERMIOS */ ++# else /* !USE_TERMIOS */ + buf1.c_cc[VEOF] = 1; /* cf. ICANON */ + buf1.c_cc[VEOL] = 0; + /* not needed? cf.ISIG*/ +@@ -921,8 +943,8 @@ j_term_init () + buf1.c_cc[VQUIT] = WNN_CERASE; + buf1.c_cc[VERASE] = WNN_CERASE; + buf1.c_cc[VKILL] = WNN_CERASE; +-#endif /* !USE_TERMIOS */ +-#endif /* !USE_LINUX_TERM */ ++# endif /* !USE_TERMIOS */ ++#endif /* !linux */ + if (SET_TERMATTR (ttyfd, &buf1) < 0) + { + fprintf (stderr, SET_ATTR_ERROR); +@@ -979,12 +1001,12 @@ j_term_init () + } + + static void +-j_term_save () ++j_term_save (void) + { + if (GET_TERMATTR (ttyfd, &savetmio) < 0) +- { +- set_default_termio (&savetmio); +- } ++ { ++ set_default_termio (&savetmio); ++ } + #if defined(uniosu) + if (ioctl (ttyfd, JTERMGET, &savejtmio) < 0) + { +@@ -995,7 +1017,7 @@ j_term_save () + } + + static void +-j_term_restore () ++j_term_restore (void) + { + if (SET_TERMATTR (ttyfd, &savetmio) < 0) + { +@@ -1013,8 +1035,7 @@ j_term_restore () + } + + static void +-j_term_p_init (ttypfd) +- int ttypfd; ++j_term_p_init (int ttypfd) + { + struct TERMIO buf1; + #if defined(uniosu) +@@ -1094,20 +1115,18 @@ j_term_p_init (ttypfd) + #endif /* USE_TERMIO || USE_TERMIOS */ + + /** signal SIGCHLD を受けた後の処理をする。*/ +-/* *INDENT-OFF* */ + RETSIGTYPE +-chld_handler () +-/* *INDENT-ON* */ ++chld_handler (int sig) + { + #ifdef HAVE_WAIT3 +-#if !defined(_POSIX_VERSION) && defined(HAVE_UNION_WAIT) /* older way */ ++#if !defined(_POSIX_VERSION) && defined(HAVE_UNION_WAIT) + union wait status; + #else /* POSIX */ + int status; + #endif + int pid; + +- if ((pid = wait3(&status, WNOHANG | WUNTRACED, NULL)) == child_id) ++ if ((pid = wait3 (&status, WNOHANG | WUNTRACED, NULL)) == child_id) + { + if (WIFSTOPPED (status)) + { +@@ -1156,7 +1175,7 @@ chld_handler () + + /** signal SIGTERM を受けた時の処理をする。*/ + static RETSIGTYPE +-terminate_handler () ++terminate_handler (int sig) + { + signal (SIGCHLD, SIG_IGN); + epilogue_no_close (); +@@ -1169,10 +1188,8 @@ terminate_handler () + } + + #ifdef SIGWINCH +-/* *INDENT-OFF* */ + RETSIGTYPE +-resize_handler () +-/* *INDENT-ON* */ ++resize_handler (int sig) + { + re_signal (SIGWINCH, resize_handler); + change_size (); +@@ -1187,10 +1204,10 @@ resize_handler () + /** メインループ */ + + wnn_fd_set sel_ptn; +-int ptyfd = -1; ++int ptyfd; + + static void +-do_main () ++do_main (void) + { + #ifndef CANNA + unsigned char *buf; +@@ -1206,10 +1223,11 @@ do_main () + epilogue (); + do_end (); + } +-#else /* CANNA */ +- extern void canna_mainloop(); ++#else /* CANNA */ ++ extern void canna_mainloop(void); + #endif /* CANNA */ + ++ WNN_FD_ZERO (&sel_ptn); + WNN_FD_SET(ptyfd, &sel_ptn); + WNN_FD_SET(ttyfd, &sel_ptn); + +@@ -1221,23 +1239,19 @@ do_main () + #ifndef CANNA + for (;;) + { +- + ml = kk (); +- + make_history (return_buf, ml); + ml = (*code_trans[(internal_code << 2) | pty_c_flag]) (buf, return_buf, sizeof (w_char) * ml); + if (ml > 0) + write (ptyfd, buf, ml); + } +-#else /* CANNA */ ++#else /* CANNA */ + canna_mainloop(); + #endif /* CANNA */ + } + +-unsigned char keyin0 (); +- + int +-keyin2 () ++keyin2 (void) + { + int total, ret; + unsigned char in; +@@ -1259,15 +1273,14 @@ keyin2 () + + /** convert_key nomi okonau key-in function */ + int +-conv_keyin (inkey) +- char *inkey; ++conv_keyin (char *inkey) + { + return keyin1 (keyin2, inkey); + } + + /** キー入力関数 1 */ + int +-keyin () ++keyin (void) + { + char inkey[16]; + return (conv_keyin (inkey)); +@@ -1280,10 +1293,7 @@ keyin () + */ + + static void +-throughlike(dest, src, n) +-w_char *dest; +-unsigned char *src; +-int n; ++throughlike(w_char *dest, unsigned char *src, int n) + { + while (n-- > 0) { + *dest++ = (w_char)*src++; +@@ -1291,8 +1301,8 @@ int n; + } + + /** キー入力関数 2 */ +-unsigned char +-keyin0 () ++static unsigned char ++keyin0 (void) + { + static unsigned char buf[BUFSIZ]; + static unsigned char outbuf[BUFSIZ]; +@@ -1341,7 +1351,7 @@ keyin0 () + time_out.tv_sec = 0; + time_out.tv_usec = 200 * 1000; /* 200 msec 間待つのだゾ! */ + for (rfds = sel_ptn; +-#ifdef USE_LINUX_TERM ++#ifdef linux + (sel_ret = select (20, &rfds, 0, 0, NULL)) < 0 && errno == EINTR; + #else + (sel_ret = select (20, &rfds, 0, 0, &time_out)) < 0 && errno == EINTR; +@@ -1392,7 +1402,8 @@ keyin0 () + p += j; + i -= j; + } +- WNN_FD_SET(ttyfd, &mask); ++ WNN_FD_ZERO (&mask); ++ WNN_FD_SET (ttyfd, &mask); + select (32, 0, &mask, 0, 0); + } + pop_cursor (); +@@ -1439,8 +1450,8 @@ keyin0 () + #if defined(uniosu) + /** pty から ioctl がかかった時の処理 */ + int +-arrange_ioctl (jflg) +- int jflg; /* jtermio の j_flg の変換フラグがオフの時 0 オンの時 1 */ ++arrange_ioctl (int jflg) ++/* jflg: jtermio の j_flg の変換フラグがオフの時 0 オンの時 1 */ + { + struct jtermio jbuf1; + struct TERMIO frombuf; +@@ -1511,11 +1522,10 @@ arrange_ioctl (jflg) + + /** 子プロセスを起こす。*/ + +-int ttypfd = -1; ++int ttypfd = -1; /* slave tty */ + + static void +-exec_cmd (argv) +- char **argv; ++exec_cmd (char **argv) + { + int i; + #if defined(USE_LIBSPT) && !defined(USE_LINUX_TERM) +@@ -1525,21 +1535,20 @@ exec_cmd (argv) + #ifdef BSD42 + int pid; + #endif +-#ifdef USE_LINUX_TERM ++#endif /* (!USE_LIBSPT && !HAVE_SETSID) || USE_LINUX_TERM */ ++#if defined(SIGWINCH) && defined(TIOCSWINSZ) /* || defined(linux) */ + struct winsize win; +- extern Term_RowWidth, crow; ++ extern int Term_RowWidth; + #endif +-#endif /* (!USE_LIBSPT && !HAVE_SETSID) || USE_LINUX_TERM */ + + child_id = fork (); + if (child_id < 0) +- err ("cannot fork."); ++ uum_err ("cannot fork."); + if (!child_id) + { + /* --- start changing controlling tty --- */ + #if defined(USE_LIBSPT) && !defined(USE_LINUX_TERM) + #if defined(SIGWINCH) && defined(TIOCSWINSZ) +- struct winsize win; + if (ioctl (ttyfd, TIOCGWINSZ, &win) == 0) + ioctl (ttypfd, TIOCSWINSZ, &win); + #endif /* SIGWINCH && TIOCSWINSZ */ +@@ -1547,37 +1556,31 @@ exec_cmd (argv) + spth = NULL; + if (spt_detach_ctty () || spt_set_ctty2 (ttypfd)) + { +- err ("cannot change controlling tty."); ++ uum_err ("cannot change controlling tty."); + } + + #elif defined(HAVE_SETSID) && !defined(USE_LINUX_TERM) /* !USE_LIBSPT */ + + int fd; +-#if defined(SIGWINCH) && defined(TIOCSWINSZ) +- struct winsize win; ++# if defined(SIGWINCH) && defined(TIOCSWINSZ) + if (ioctl (ttyfd, TIOCGWINSZ, &win) == 0) + ioctl (ttypfd, TIOCSWINSZ, &win); +-#endif /* SIGWINCH && TIOCSWINSZ */ ++# endif /* SIGWINCH && TIOCSWINSZ */ + setsid (); +-#ifdef TIOCSCTTY ++# ifdef TIOCSCTTY + ioctl (ttypfd, TIOCSCTTY, 0); +-#else ++# else + close (open (ttyname (ttypfd), O_WRONLY, 0)); +-#endif ++# endif + if ((fd = open("/dev/tty", O_WRONLY)) < 0) + { +- err ("cannot change controlling tty."); ++ uum_err ("cannot change controlling tty."); + } + close (fd); + /* disable utmp logging for now */ + + #else /* (!USE_LIBSPT && !HAVE_SETSID) || USE_LINUX_TERM */ + +-#if defined(SYSVR2) && !defined(USE_LINUX_TERM) +- setpgrp (); +- close (open (ttyname (ttypfd), O_WRONLY, 0)); +-#endif /* SYSVR2 */ +- + #ifdef BSD42 + #ifdef TIOCNOTTY + /* set notty */ +@@ -1601,18 +1604,28 @@ exec_cmd (argv) + close (open (ttyname (ttypfd), O_WRONLY, 0)); + setpgrp (0, pid); + #endif /* BSD42 */ ++#if defined(SYSVR2) && !defined(linux) ++ setpgrp (); /* should setpgrp() AFTER fork() */ ++ close (open (ttyname (ttypfd), O_WRONLY, 0)); ++#endif /* SYSVR2 */ + +-#ifdef USE_LINUX_TERM ++/* It is bizarre to open tty after fork(). ++ So, try to do same as other os. ++ If it does work, we can remove this. */ ++# ifdef linux + setsid (); + open_ttyp (); + close (ptyfd); +- ioctl (ttyfd, TIOCGWINSZ, &win); + ioctl (ttypfd, TCSETA, &savetmio); +-#endif ++# endif ++# if defined(SIGWINCH) && defined(TIOCSWINSZ) /* || defined(linux) */ ++ ioctl (ttyfd, TIOCGWINSZ, &win); ++# endif ++ + #endif /* (!USE_LIBSPT && !HAVE_SETSID) || USE_LINUX_TERM */ + /* --- finish changing controlling tty --- */ + +-#ifndef USE_LINUX_TERM ++#ifndef linux + setgid (getgid ()); + setuid (getuid ()); + #endif +@@ -1626,7 +1639,7 @@ exec_cmd (argv) + close (2); + if (dup (ttypfd) != 0 || dup (ttypfd) != 1 || dup (ttypfd) != 2) + { +- err ("redirection fault."); ++ uum_err ("redirection fault."); + } + #endif /* !HAVE_DUP2 */ + for (i = WNN_NFD - 1; i > 2; i--) +@@ -1646,15 +1659,18 @@ exec_cmd (argv) + signal (SIGTTOU, SIG_IGN); + #endif + +-#ifdef USE_LINUX_TERM ++#if defined(SIGWINCH) && defined(TIOCSWINSZ) /* || defined(linux) */ + crow = win.ws_row = Term_RowWidth = win.ws_row - conv_lines; + ioctl (ttyfd, TIOCSWINSZ, &win); ++#endif ++#ifdef linux + setgid (getgid ()); + setuid (getuid ()); + #endif + execvp (cmdnm, argv); +- err ("exec fault."); ++ uum_err ("exec fault."); + } ++ + /* parent */ + #ifdef USE_LIBSPT + ttynm = ttyname (0); +@@ -1676,7 +1692,7 @@ exec_cmd (argv) + { + spt_perror ("exec_cmd (login_utmp)", r); + } +-#endif ++#endif /* USE_LIBSPT */ + } + + #if !(HAVE_SETENV) +@@ -1687,10 +1703,7 @@ exec_cmd (argv) + * The 3rd parameter is ignored. It is added for compatibility only. + */ + int +-setenv (var, value, overwrite) +- char *var; +- char *value; +- int overwrite; ++setenv (char *var, char *value, int overwrite) + { + extern char **environ; + char **newenv; +@@ -1730,9 +1743,7 @@ setenv (var, value, overwrite) + + #ifdef SVR4 + static int +-euc_set (eucioc, ttyfd) +- eucioc_t *eucioc; +- int ttyfd; ++euc_set (eucioc_t *eucioc, int ttyfd) + { + struct strioctl sb; + +@@ -1747,9 +1758,8 @@ euc_set (eucioc, ttyfd) + return (0); + } + +-static void +-set_euc_term (ttyfd) +- int ttyfd; ++static int ++set_euc_term (int ttyfd) + { + eucioc_t eucioc; + +@@ -1765,17 +1775,16 @@ set_euc_term (ttyfd) + if (euc_set (&eucioc, ttyfd) != 0) + { + fprintf (stderr, "eucwidth set failed\n"); +- return; ++ return (1); + } +- return; ++ return (0); + } + + #endif /* SVR4 */ + + #ifdef nec_ews_svr2 + static void +-set_jterm (ttyfd, ttypfd) +- int ttyfd, ttypfd; ++set_jterm (int ttyfd, int ttypfd) + { + struct jtermio buf; + +@@ -1796,46 +1805,50 @@ set_jterm (ttyfd, ttypfd) + + #ifdef sony + static void +-set_sony_jterm(ttyfd, ttypfd) +-int ttyfd, ttypfd; ++set_sony_jterm (int ttyfd, int ttypfd) + { + #ifdef TIOCKGET + int tmode, jmode = 0; + struct jtchars jtc; + +- if (ioctl(ttyfd, TIOCKGET, &tmode) < 0) { +- fprintf(stderr, "error in ioctl TIOCKGET.\n"); +- exit(1); +- } ++ if (ioctl(ttyfd, TIOCKGET, &tmode) < 0) ++ { ++ fprintf(stderr, "error in ioctl TIOCKGET.\n"); ++ exit (1); ++ } + jmode = tmode; + tmode &= ~(KM_SYSCODE | KM_TTYPE); +- switch (pty_c_flag) { +- case J_EUJIS: +- tmode |= KM_EUC | KM_SYSEUC; +- break; +- case J_JIS: +- tmode |= KM_ASCII; +- break; +- case J_SJIS: +- tmode |= KM_SJIS | KM_SYSSJIS; +- break; +- } +- if (ioctl(ttypfd, TIOCKSET, &tmode) < 0) { +- fprintf(stderr, "error in ioctl TIOCKSET.\n"); +- exit(1); +- } ++ switch (pty_c_flag) ++ { ++ case J_EUJIS: ++ tmode |= KM_EUC | KM_SYSEUC; ++ break; ++ case J_JIS: ++ tmode |= KM_ASCII; ++ break; ++ case J_SJIS: ++ tmode |= KM_SJIS | KM_SYSSJIS; ++ break; ++ } ++ if (ioctl(ttypfd, TIOCKSET, &tmode) < 0) ++ { ++ fprintf(stderr, "error in ioctl TIOCKSET.\n"); ++ exit (1); ++ } + #endif /* TIOCKGET */ + + #ifdef TIOCKGETC +- if ((jmode & KM_TTYPE) == KM_JIS) { +- ioctl(ttyfd, TIOCKGETC, &jtc); +- jtc.t_ascii = 'B'; +- jtc.t_kanji = 'B'; +- if (ioctl(ttypfd, TIOCKSETC, &jtc) < 0) { +- fprintf(stderr, "error in ioctl TIOCKSETC.\n"); +- exit(1); ++ if ((jmode & KM_TTYPE) == KM_JIS) ++ { ++ ioctl(ttyfd, TIOCKGETC, &jtc); ++ jtc.t_ascii = 'B'; ++ jtc.t_kanji = 'B'; ++ if (ioctl(ttypfd, TIOCKSETC, &jtc) < 0) ++ { ++ fprintf(stderr, "error in ioctl TIOCKSETC.\n"); ++ exit(1); ++ } + } +- } + #endif + } + #endif /* sony */ +@@ -1843,132 +1856,233 @@ int ttyfd, ttypfd; + /** ttyp のオープン */ + + #ifndef USE_LIBSPT +-#define MAXPTYNO (0x10 * (('z' - 'p' + 1) + ('Z' - 'P' + 1))) +-int ptyno; +-char *ptynm = "/dev/pty"; +-#ifdef sgi +-extern char *_getpty (int *, int, mode_t, int); +-char *ttypnm = "/dev/ttyqxxx"; +-#else +-char *ttypnm = "/dev/tty"; +-#endif /* sgi */ ++/* ways to get a pty' ++ == Traditional ++ Try opening each /dev/ptyXX and use the succeeded one ++ == SGI IRIX ++ use _getpty() ++ == BSD? (HAVE_OPENPTY) ++ use openpty() ++ == STREAMS (Solaris) (HAVE_PTSNAME) ++ use posix_openpt() (or open /dev/ptmx directly) and ptsname() ++ (see pts(7D) for EXAMPLE) ++*/ ++ ++#if !defined(sgi) && !defined(HAVE_PTSNAME) ++char tty_master[32]; /*VVVV overflow?*/ ++#endif ++char tty_slave [32]; /*VVVV overflow?*/ + +-#ifndef sgi +-static void ptyname (); ++#if defined(BSD43) || defined(DGUX) /* FOR PASS8 */ ++static int local_mode_sv; + #endif + #endif /* !USE_LIBSPT */ + ++/* open slave side of pty to ttypfd */ + static void +-open_ttyp () ++open_ttyp (void) + { +- char nmbuf[20]; ++#ifndef USE_LIBSPT /* && !defined(linux) ? */ ++ struct stat tstat; ++ char chown_failed = 0; ++ const char *msg_insecure = "Your ttyp (%s) may be insecure from other users, but continue anyway ...\r\n"; ++#endif /* !USE_LIBSPT */ + + #ifdef USE_LIBSPT + if ((ttypfd = spt_open_slave(spth)) == ERROR) ++#else /* USE_LIBSPT */ ++# if defined(sgi) ++ if ((ttypfd = open (tty_slave, O_RDWR)) == ERROR) ++# elif defined(HAVE_PTSNAME) ++ if ((ttypfd = open(tty_slave, O_RDWR)) == ERROR /* open slave */ ++# if defined(I_PUSH) ++ /* for systems that have STREAMS */ ++ || ioctl (ttypfd, I_PUSH, "ptem") == ERROR /* push ptem */ ++ || ioctl (ttypfd, I_PUSH, "ldterm") == ERROR /* push ldterm */ ++# endif ++ ) ++# elif defined (HAVE_OPENPTY) ++ if (ttypfd < 0) /* already open */ ++# else ++ if ((ttypfd = open (tty_slave, O_RDWR, 0)) == ERROR) /* old method */ ++# endif /* sgi */ ++#endif /* USE_LIBSPT */ + { +-#elif defined(sgi) +- if ((ttypfd = open (ttypnm, O_RDWR)) == ERROR) +- { +-#else +- ptyname (nmbuf, ttypnm, ptyno); +- if ((ttypfd = open (nmbuf, O_RDWR, 0)) == ERROR) +- { +-#endif +- err ("Can't open ttyp."); ++ perror(tty_slave); /* debug */ ++ uum_err ("Can't open ttyp."); + } +-#if !defined(USE_LINUX_TERM) && !defined(USE_LIBSPT) +- chown (nmbuf, getuid (), getgid ()); +- chmod (nmbuf, 0622); +-#endif /* !USE_LINUX_TERM && !USE_LIBSPT */ + #if defined(USE_LIBSPT) + spt_init_slavefd(spth, ttypfd); +-#elif defined(I_PUSH) && defined(SVR4) +- ioctl(ttypfd, I_PUSH, "ptem"); +- ioctl(ttypfd, I_PUSH, "ldterm"); +- ioctl(ttypfd, I_PUSH, "ttcompat"); +-#endif +- ++#else /* USE_LIBSPT */ ++/* #if !defined(linux) */ ++ if(fstat(ttypfd, &tstat)==0) { ++ if(tstat.st_uid != getuid()) { ++ if(chown (tty_slave, getuid (), getgid ())!=0) { ++ perror("Can't change owner of ttyp."); ++ fprintf(stderr, msg_insecure, tty_slave); ++ chown_failed = 1; ++ } ++ } ++ if((tstat.st_mode & (S_IWGRP | S_IWOTH)) != 0) { ++ /* Ignore message if chown failed (chmod will fail also ...) */ ++ if(chmod (tty_slave, 0622)!=0 && chown_failed == 0) { ++ perror("Can't change permission of ttyp."); ++ fprintf(stderr, msg_insecure, tty_slave); ++ } ++ } ++ } else { ++ perror("Can't stat ttyp."); ++ fprintf(stderr, msg_insecure, tty_slave); ++ } ++/* #endif */ /* linux */ ++#endif /* USE_LIBSPT */ ++ + /* + * We save terminal settings in main() instead of here. +- * When USE_LINUX_TERM open_ttyp() is invoked from child! ++ * When defined(linux) open_ttyp() is invoked from child! + */ + #ifndef USE_LINUX_TERM + j_term_p_init (ttypfd); + #endif + + #ifdef TIOCSSIZE +- pty_rowcol.ts_lines = crow; /* instead of lines */ +- pty_rowcol.ts_cols = maxlength; /* instead of columns */ +- ioctl(ttypfd, TIOCSSIZE, &pty_rowcol); ++ pty_rowcol.ts_lines = crow; /* instead of lines */ ++ pty_rowcol.ts_cols = maxlength; /* instead of columns */ ++ ioctl (ttypfd, TIOCSSIZE, &pty_rowcol); + #endif /* TIOCSSIZE */ + + #ifdef SVR4 + set_euc_term(ttypfd); + #endif +- + #if defined(nec_ews_svr2) + set_jterm (ttyfd, ttypfd); + #endif +- + #ifdef sony + set_sony_jterm(ttyfd, ttypfd); + #endif ++} ++ ++#if defined(HAVE_PTSNAME) && ! defined(HAVE_POSIX_OPENPT) ++/* Maybe harmless on defined(USE_LIBSPT) */ ++#if !defined(HAVE__DEV_PTMX) ++#warning "If not cross compile, you must check pts master device (other than /dev/ptmx)." ++/* but continue anyway. */ ++#endif + ++/* fallback function to posix_openpt */ ++static int ++posix_openpt (int flags) ++{ ++ return open("/dev/ptmx", flags); + } ++#endif /* HAVE_PTSNAME && !HAVE_POSIX_OPENPT */ + + /** pty のオープン */ +-#if defined(USE_LIBSPT) ++/* allocate a new pty master into int ptyfd */ + static void +-open_pty () ++open_pty (void) + { ++#if defined(USE_LIBSPT) + int r; + r = spt_open_pty(&spth, &ptyfd, NULL, NULL); + if (r != SPT_E_NONE && r != SPT_E_CHOWN_FAIL) +- err ("Can't get pty."); +- return; +-} ++ uum_err ("Can't get pty."); ++ + #elif defined(sgi) +-static void +-open_pty () +-{ +- char nmbuf[20]; + char *tty_name_buff; ++ extern char *_getpty (int *, int, mode_t, int); + tty_name_buff = _getpty (&ptyfd, O_RDWR | O_NDELAY, 0600, 0); + if (tty_name_buff == 0) +- err ("Can't get pty."); +- strcpy (ttypnm, tty_name_buff); +- return; ++ uum_err ("Can't get pty."); ++ strcpy (tty_slave, tty_name_buff); ++ ++#elif defined(HAVE_PTSNAME) ++ char *p; ++ ptyfd = posix_openpt(O_RDWR); /* open master */ ++ if (ptyfd < 0) ++ uum_err ("Could not get a pty."); ++ grantpt (ptyfd); /* change permission of slave */ ++ unlockpt (ptyfd); /* unlock slave */ ++ ++ p = ptsname (ptyfd); /* get name of slave */ ++ strcpy(tty_slave, p); ++ /* you can't get path of the "master" by ttyname; ++ * only the open filedes ptyfd is available. ++ */ ++ /* strcpy (tty_master, "/dev/ptm/x"); */ ++ ++#elif HAVE_OPENPTY ++ if (openpty(&ptyfd, &ttypfd, tty_slave, NULL, NULL) == ERROR) ++ uum_err ("Could not get a pty."); ++ /* Note: slave tty is ALREADY OPEN as ttypfd */ ++ strcpy(tty_master, ttyname(ptyfd)); + +-} + #else ++ /* Traditional method that search in /dev/ttyXX */ ++ open_pty_traditional (); ++#endif /* USE_LIBSPT */ ++ ++ return; ++} ++ ++#if !(USE_LIBSPT) && !(sgi) && !(HAVE_PTSNAME) && !(HAVE_OPENPTY) + static void +-open_pty () ++open_pty_traditional (void) + { +- char nmbuf[20]; ++ int ptyno; ++ ++#ifdef hpux ++# define MAXPTYS (11*16) ++# define PTYDEV ";/dev/ptym/pty" ++# define TTYDEV "/dev/pty/tty" ++#else ++# define MAXPTYS 32 ++# define PTYDEV "/dev/pty" ++# define TTYDEV "/dev/tty" ++#endif + +- for (ptyno = 0; ptyno < MAXPTYNO; ptyno++) ++ for (ptyno = 0; ptyno < MAXPTYS; ptyno++) /* sysconf? */ + { +- ptyname (nmbuf, ptynm, ptyno); +- if ((ptyfd = open (nmbuf, O_RDWR, 0)) != ERROR) ++/* ++ * Change pseudo-devices. ++ * Because FreeBSD's master pseudo-devices are pty[p-sP-S][0-9a-v]. ++ * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/20 ++ */ ++#if (defined(BSD) && (BSD >= 199306)) /* 4.4BSD-Lite by Taoka */ ++# define PTXNAME(b, PFX, no) \ ++ snprintf ((b), sizeof((b)), PFX "%1c%1c", "pqrsPQRS"[((no) >> 5)], "0123456789abcdefghijklmnopqrstuv"[(no) & 0x1f]) ++#elif defined(hpux) ++# define PTXNAME(b, PFX, no) \ ++ sprintf ((b), PFX "%1c%1c", "zyxwvutsrqp"[(no)>>4], "fedcba9876543210"[(no)&0x0f]) ++#else /* !4.4BSD-Lite, !hpux */ ++# define PTXNAME(b, PFX, no) \ ++ sprintf ((b), PFX "%1c%1c", 'p' + ((no) >> 4), "0123456789abcdef"[(no) & 0x0f]); ++#endif /* !4.4BSD-Lite */ ++#define PTMNAME(b, no) PTXNAME(b, PTYDEV, no) ++#define PTSNAME(b, no) PTXNAME(b, TTYDEV, no) ++ ++ PTMNAME(tty_master, ptyno); ++ fprintf(stderr, "trying master <%s>\n", tty_master); /* debug */ ++ if ((ptyfd = open (tty_master, O_RDWR, 0)) != ERROR) + { +-#if defined(uniosu) ++# if defined(uniosu) + if (ioctl (ptyfd, PIOCPKT, 1) < 0) + { /* packet mode on */ + fprintf (stderr, "error in ioctl PIOCPKT.\n"); + exit (1); + } +-#endif +- return; ++# endif /* uniosu */ ++ PTSNAME(tty_slave, ptyno); ++ return; + } + } +- err ("Can't get pty."); ++ uum_err ("Can't get pty."); + } +-#endif ++#endif /* !(USE_LIBSPT) && !(sgi) && !(HAVE_PTSNAME) && !(HAVE_OPENPTY) */ + + /** エラーだよ。さようなら。 */ + void +-err (s) +- char *s; ++uum_err (char *s) + { + puts (s); + fclose (stdout); +@@ -1979,12 +2093,10 @@ err (s) + + /** 立つ鳥後を濁さず 終わりの処理 */ + static void +-do_end () ++do_end (void) + { + #ifdef USE_LIBSPT + int r; +-#else +- char nmbuf[20]; + #endif + + static int do_end_flg = 0; +@@ -1994,29 +2106,28 @@ do_end () + + signal (SIGCHLD, SIG_DFL); + fcntl (ttyfd, F_SETFL, 0); +- + j_term_restore (); + + #if !defined(USE_LIBSPT) && !defined(sgi) +- ptyname (nmbuf, ptynm, ptyno); +- if (chown (nmbuf, 0, 0) == ERROR) ++# ifndef HAVE_PTSNAME ++ if (chown (tty_master, 0, 0) == ERROR) + { +- perror (prog); ++ perror ("Can't restore owner of tty_master."); + } +- if (chmod (nmbuf, 0666) == ERROR) ++ if (chmod (tty_master, 0666) == ERROR) + { +- perror (prog); ++ perror ("Can't restore permission of tty_master."); + } + +- ptyname (nmbuf, ttypnm, ptyno); +- if (chown (nmbuf, 0, 0) == ERROR) ++ if (chown (tty_slave, 0, 0) == ERROR) + { +- perror (prog); ++ perror ("Can't restore owner of ttyp."); + } +- if (chmod (nmbuf, 0666) == ERROR) ++ if (chmod (tty_slave, 0666) == ERROR) + { +- perror (prog); ++ perror ("Can't restore permission of ttyp."); + } ++# endif /* HAVE_PTSNAME */ + + #endif /* !USE_LIBSPT && !sgi */ + close (ttyfd); +@@ -2027,18 +2138,18 @@ do_end () + spt_perror(NULL, r); + #else + close (ptyfd); +-#endif ++#endif /* USE_LIBSPT */ + + chdir ("/tmp"); /* to avoid making too many mon.out files */ + + KILLPG (child_id, SIGHUP); +- exit (0); ++ _exit (0); + } + + #if defined(uniosu) + /** 仮名漢字変換を ioctl でオフした時の keyin に代わる関数 */ + int +-ioctl_off () ++ioctl_off (void) + { + static unsigned char buf[BUFSIZ]; + int n; +@@ -2086,44 +2197,15 @@ ioctl_off () + } + #endif /* defined(uniosu) */ + +- +-#if !defined(USE_LIBSPT) && !defined(sgi) +-static void +-ptyname (b, pty, no) +- char *b, *pty; +-{ +-/* +- * Change pseudo-devices. +- * Because FreeBSD's master pseudo-devices are pty[p-sP-S][0-9a-v]. +- * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/20 +- */ +-#if (defined(BSD) && (BSD >= 199306)) /* 4.4BSD-Lite by Taoka */ +- sprintf (b, "%s%1c%1c", pty, "pqrsPQRS"[(no >> 5)], (((no & 0x1f) > 9) ? 'a' : '0') + (no & 0x1f)); +-#else /* ! 4.4BSD-Lite */ +- sprintf (b, "%s%1c%1x", pty, 'p' + (no >> 4), no & 0x0f); +- if (no < 0x10 * ('z' - 'p' + 1)) +- { +- sprintf(b, "%s%1c%1x", pty, 'p' + (no >> 4), no & 0x0f); +- } +- else +- { +- no -= 0x10 * ('z' - 'p' + 1); +- sprintf(b, "%s%1c%1x", pty, 'P' + (no >> 4), no & 0x0f); +- } +-#endif /* ! 4.4BSD-Lite */ +-} +-#endif /* !USE_LIBSPT && !sgi */ +- + static void +-default_usage () ++default_usage (void) + { + fprintf (stderr, "%s: Bad -L option\n", prog); + exit (0); + } + + static void +-usage (optstr) +- char *optstr; ++usage (char *optstr) + { + printf ("usage: prog %s by lang \"%s\"\n", optstr, lang_dir); + exit (0); +@@ -2139,10 +2221,10 @@ intfnptr sigwinch; + #endif /* SIGWINCH */ + + static void +-save_signals () ++save_signals (void) + { + sigpipe = signal (SIGPIPE, SIG_IGN); +-#ifdef USE_LINUX_TERM /* XXX */ ++#ifdef linux /* XXX */ + sighup = signal (SIGHUP, SIG_IGN); + #endif + sighup = signal (SIGHUP, terminate_handler); +@@ -2161,7 +2243,7 @@ save_signals () + } + + static void +-restore_signals () ++restore_signals (void) + { + signal (SIGPIPE, sigpipe); + signal (SIGHUP, sighup); +@@ -2179,14 +2261,13 @@ restore_signals () + #endif /* SIGTSTP */ + } + +-/* should be "defined(SIGWINCH)"? */ + #if defined(BSD43) || defined(DGUX) + static void +-setsize () ++setsize (void) + { +- register int i; ++ int i; + struct winsize win; +- extern Term_LineWidth, Term_RowWidth, maxlength, crow; ++ extern int Term_LineWidth, Term_RowWidth, maxlength; + + if (ioctl (ttyfd, TIOCGWINSZ, &win) < 0) + { +@@ -2209,11 +2290,11 @@ setsize () + + #ifdef SIGWINCH + static void +-change_size () ++change_size (void) + { + register int i; + struct winsize win; +- extern Term_LineWidth, Term_RowWidth, maxlength, crow; ++ extern int Term_LineWidth, Term_RowWidth, maxlength; + + if (ioctl (ttyfd, TIOCGWINSZ, &win) < 0) + { diff --git a/inputmethod/canna/patches/patch-canuum_printf.c b/inputmethod/canna/patches/patch-canuum_printf.c new file mode 100644 index 00000000000..8d58cbc93e3 --- /dev/null +++ b/inputmethod/canna/patches/patch-canuum_printf.c @@ -0,0 +1,25 @@ +$NetBSD: patch-canuum_printf.c,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ + +Appease prototype warnings. + +--- canuum/printf.c.orig 2003-01-04 07:31:02.000000000 +0000 ++++ canuum/printf.c +@@ -29,8 +29,18 @@ + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ ++#ifdef HAVE_CONFIG_H ++# include <config.h> ++#endif + + #include <stdio.h> ++#if STDC_HEADERS ++# include <string.h> ++#else ++# if HAVE_STRINGS_H ++# include <strings.h> ++# endif ++#endif /* STDC_HEADERS */ + #include "commonhd.h" + #include "sdefine.h" + #include "sheader.h" diff --git a/inputmethod/canna/patches/patch-canuum_termcap.c b/inputmethod/canna/patches/patch-canuum_termcap.c new file mode 100644 index 00000000000..c751f0a8f92 --- /dev/null +++ b/inputmethod/canna/patches/patch-canuum_termcap.c @@ -0,0 +1,37 @@ +$NetBSD: patch-canuum_termcap.c,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ + +Appease warnings. + +--- canuum/termcap.c.orig 2004-04-26 21:48:37.000000000 +0000 ++++ canuum/termcap.c +@@ -64,21 +64,21 @@ int Term_RowWidth; + /* + char *Term_Bell; + */ +-char *Term_ClrScreen; +-char *Term_ClrEofLine; ++const char *Term_ClrScreen; ++const char *Term_ClrEofLine; + char *Term_CleEndScreen; +-char *Term_ThrowCursor; +-char *Term_StandOutStart; /* These variables has value even if terminfo is used. see termio.c. */ +-char *Term_StandOutEnd; ++const char *Term_ThrowCursor; ++const char *Term_StandOutStart; /* These variables has value even if terminfo is used. see termio.c. */ ++const char *Term_StandOutEnd; + static int bold_mode_fun; +-char *Term_BoldOutStart; +-char *Term_BoldOutEnd; ++const char *Term_BoldOutStart; ++const char *Term_BoldOutEnd; + /* + int Term_StandOutBlankNum; + char *Term_DelChar; + */ +-char *Term_UnderScoreStart; +-char *Term_UnderScoreEnd; ++const char *Term_UnderScoreStart; ++const char *Term_UnderScoreEnd; + + char *Term_KeyPadOn; + char *Term_KeyPadOff; diff --git a/inputmethod/canna/patches/patch-canuum_termio.c b/inputmethod/canna/patches/patch-canuum_termio.c new file mode 100644 index 00000000000..ada72ce65c3 --- /dev/null +++ b/inputmethod/canna/patches/patch-canuum_termio.c @@ -0,0 +1,86 @@ +$NetBSD: patch-canuum_termio.c,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ + +- Appease prototype warnings. +- Reorganize curses ops. + +--- canuum/termio.c.orig 2003-12-27 17:15:21.000000000 +0000 ++++ canuum/termio.c +@@ -36,6 +36,11 @@ + #include <stdio.h> + #if STDC_HEADERS + # include <stdlib.h> ++# include <string.h> ++#else ++# if HAVE_STRINGS_H ++# include <strings.h> ++# endif + #endif /* STDC_HEADERS */ + + #include "commonhd.h" +@@ -51,15 +56,15 @@ + extern int putchar (); + + extern char Term_Name[]; +-extern char *Term_UnderScoreStart; +-extern char *Term_UnderScoreEnd; +-extern char *Term_ClrScreen; +-extern char *Term_ClrEofLine; +-extern char *Term_ThrowCursor; +-extern char *Term_StandOutStart; +-extern char *Term_StandOutEnd; +-extern char *Term_BoldOutStart; +-extern char *Term_BoldOutEnd; ++extern const char *Term_UnderScoreStart; ++extern const char *Term_UnderScoreEnd; ++extern const char *Term_ClrScreen; ++extern const char *Term_ClrEofLine; ++extern const char *Term_ThrowCursor; ++extern const char *Term_StandOutStart; ++extern const char *Term_StandOutEnd; ++extern const char *Term_BoldOutStart; ++extern const char *Term_BoldOutEnd; + static int bold_mode_fun = 0; + + int +@@ -73,7 +78,7 @@ openTermData () + char errprefix[1024] = "error"; + + /* for convert_key --- added by Nide 10/3 */ +- if (NULL == (cp = get_kbd_env ()) || 0 != convert_getterm (cp, (0 != verbose_option))) ++ if (NULL == initscr() || NULL == (cp = get_kbd_env ()) || 0 != convert_getterm (cp, (0 != verbose_option))) + { + fprintf (stderr, "Cannot get keyboard information.\n"); + return (-1); +@@ -96,13 +101,8 @@ openTermData () + return (-1); + } + #endif /* CANNA */ +- setupterm (0, 1, &status); +- /* This seems needless and causes hangs on Solaris8 + ncurses */ +- /* reset_shell_mode (); */ +- if (status != 1) +- { +- return (-1); +- } ++ reset_shell_mode(); ++ + #if defined(uniosu) + if (jterm < 2) + { /* kanji terminal */ +@@ -110,7 +110,7 @@ openTermData () + return (-1); + } + #endif /* defined(uniosu) */ +- if (save_cursor == (char *) NULL || *save_cursor == NULL || restore_cursor == (char *) NULL || *restore_cursor == NULL || change_scroll_region == (char *) NULL || *change_scroll_region == NULL) ++ if (save_cursor == (char *) NULL || *save_cursor == 0 || restore_cursor == (char *) NULL || *restore_cursor == 0 || change_scroll_region == (char *) NULL || *change_scroll_region == 0) + { + fprintf (stderr, "Your terminal is not strong enough. Goodbye !\n"); + return (-1); +@@ -175,7 +175,6 @@ openTermData () + void + closeTermData () + { +- resetterm (); + reset_shell_mode (); + } + diff --git a/inputmethod/canna/patches/patch-cmd_cmd.tmpl b/inputmethod/canna/patches/patch-cmd_cmd.tmpl new file mode 100644 index 00000000000..b49570817f1 --- /dev/null +++ b/inputmethod/canna/patches/patch-cmd_cmd.tmpl @@ -0,0 +1,16 @@ +$NetBSD: patch-cmd_cmd.tmpl,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ + +Add a hook to disable installation of unnecessary commands in canna-lib + +--- cmd/cmd.tmpl.orig 2003-09-25 06:30:21.000000000 +0000 ++++ cmd/cmd.tmpl +@@ -33,7 +33,9 @@ NormalProgramTarget($(TARGET),$(OBJS),$( + # else + NormalProgramTarget($(TARGET),$(OBJS),$(DEPRKINDEPLIB),$(RKINDEPLIB),) + # endif ++# ifndef DontInstallProgram + InstallProgram($(TARGET),$(cannaBinDir)) ++# endif + # ifdef ManSrcName + InstallManPageLong(ManSrcName,$(cannaManDir),$(TARGET)) + # endif diff --git a/inputmethod/canna/patches/patch-dic_phono_Imakefile b/inputmethod/canna/patches/patch-dic_phono_Imakefile index 25de41be927..5f5a6461c36 100644 --- a/inputmethod/canna/patches/patch-dic_phono_Imakefile +++ b/inputmethod/canna/patches/patch-dic_phono_Imakefile @@ -1,7 +1,23 @@ -$NetBSD: patch-dic_phono_Imakefile,v 1.1 2012/07/03 17:44:39 joerg Exp $ +$NetBSD: patch-dic_phono_Imakefile,v 1.2 2015/10/18 03:58:31 tsutsui Exp $ ---- dic/phono/Imakefile.orig 2012-06-17 06:10:27.000000000 +0000 +- Tweak canna-dict dirs +- avoid use of ${CPP} as generic preprocessor + +--- dic/phono/Imakefile.orig 2015-10-03 19:39:32.000000000 +0000 +++ dic/phono/Imakefile +@@ -27,9 +27,9 @@ + + ROMAJI_DIC_DEF = -DSHIFT + +- DICDIR = $(cannaLibDir)/dic +- SAMPLEDIR = $(cannaLibDir)/sample +- SAMPLESRCDIR = $(cannaLibDir)/sample/src ++ DICDIR = $(DicDir) ++ SAMPLEDIR = $(DicDir)/sample ++ SAMPLESRCDIR = $(DicDir)/sample/src + + KPDEF = default.kpdef jdaemon.kpdef just.kpdef kaisoku.kpdef kana.kpdef \ + lan5.kpdef matsu.kpdef newjis.kpdef romaji.kpdef sokuon.kpdef \ @@ -54,16 +54,16 @@ AllTarget($(ROMKANA_TABLES)) #ifdef __EMX__ diff --git a/inputmethod/canna/patches/patch-lib_RKC_convert.c b/inputmethod/canna/patches/patch-lib_RKC_convert.c new file mode 100644 index 00000000000..beacd0befea --- /dev/null +++ b/inputmethod/canna/patches/patch-lib_RKC_convert.c @@ -0,0 +1,15 @@ +$NetBSD: patch-lib_RKC_convert.c,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ + +Tweak include path to build without configure in unnecessary dirs + +--- lib/RKC/convert.c.orig 2004-04-26 21:48:37.000000000 +0000 ++++ lib/RKC/convert.c +@@ -30,7 +30,7 @@ static char rcs_id[] = "$Id: convert.c,v + #include "rkcw.h" + #include "canna/RK.h" + #include "rkc.h" +-#include "IRproto.h" ++#include "../server/IRproto.h" + #include "RKindep/file.h" + + #include <sys/types.h> diff --git a/inputmethod/canna/patches/patch-lib_RK_dd.c b/inputmethod/canna/patches/patch-lib_RK_dd.c new file mode 100644 index 00000000000..7081461b063 --- /dev/null +++ b/inputmethod/canna/patches/patch-lib_RK_dd.c @@ -0,0 +1,28 @@ +$NetBSD: patch-lib_RK_dd.c,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ + +Fix "64 bit time_t on 32 bit architecture" problem. + +--- lib/RK/dd.c.orig 2003-09-17 08:50:52.000000000 +0000 ++++ lib/RK/dd.c +@@ -42,6 +42,12 @@ static char rcsid[]="$Id: dd.c,v 1.5 200 + #include <sys/types.h> + #include <sys/stat.h> + ++#ifdef HAVE_TIME_T ++#define TIME_T time_t ++#else ++#define TIME_T long ++#endif ++ + #define Calloc calloc + #define cx_gwt cx_extdata.ptr + #define STRCMP(d, s) strcmp((char *)(d), (char *)(s)) +@@ -742,7 +748,7 @@ _RkRealizeDD(dd) + int ret = -1; + int tmpres; + int fdes; +- long tloc; ++ TIME_T tloc; + #ifdef __EMX__ + struct stat statbuf; + #endif diff --git a/inputmethod/canna/patches/patch-ao b/inputmethod/canna/patches/patch-lib_RK_ncache.c index 733df65577a..2a288a4b695 100644 --- a/inputmethod/canna/patches/patch-ao +++ b/inputmethod/canna/patches/patch-lib_RK_ncache.c @@ -1,8 +1,10 @@ -$NetBSD: patch-ao,v 1.1 2008/09/18 12:33:44 taca Exp $ +$NetBSD: patch-lib_RK_ncache.c,v 1.1 2015/10/18 03:58:31 tsutsui Exp $ ---- lib/RK/ncache.c.orig 2002-10-19 17:27:45.000000000 +0900 +Fix crash problem of cannaserver. + +--- lib/RK/ncache.c.orig 2003-09-17 08:50:52.000000000 +0000 +++ lib/RK/ncache.c -@@ -27,7 +27,7 @@ static char rcsid[]="$Id: ncache.c,v 1.1 +@@ -27,7 +27,7 @@ static char rcsid[]="$Id: ncache.c,v 1.2 #include "RKintern.h" #define NCHASH 101 |