From xemacs-m  Sun May 18 18:41:20 1997
Received: from mercury.Sun.COM (mercury.Sun.COM [192.9.25.1])
	by xemacs.org (8.8.5/8.8.5) with SMTP id SAA14433
	for <xemacs-beta@xemacs.org>; Sun, 18 May 1997 18:41:19 -0500 (CDT)
Received: from Eng.Sun.COM ([129.146.1.25]) by mercury.Sun.COM (SMI-8.6/mail.byaddr) with SMTP id QAA18944; Sun, 18 May 1997 16:55:25 -0700
Received: from kindra.eng.sun.com by Eng.Sun.COM (SMI-8.6/SMI-5.3)
	id QAA23202; Sun, 18 May 1997 16:40:43 -0700
Received: from xemacs.eng.sun.com by kindra.eng.sun.com (SMI-8.6/SMI-SVR4)
	id QAA02390; Sun, 18 May 1997 16:40:46 -0700
Received: by xemacs.eng.sun.com (SMI-8.6/SMI-SVR4)
	id QAA10021; Sun, 18 May 1997 16:40:40 -0700
Date: Sun, 18 May 1997 16:40:40 -0700
Message-Id: <199705182340.QAA10021@xemacs.eng.sun.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
From: Martin Buchholz <mrb@Eng.Sun.COM>
To: jhod@po.iijnet.or.jp (P. E. Jareth Hein)
Cc: xemacs-beta@xemacs.org
Subject: Re: Wnn4 and Wnn6?  Re: 20.2 release is a go + Binary kit instructions
In-Reply-To: <u43erlusjn.fsf@pentagana.sonic.jp>
References: <m2zptx3033.fsf@altair.xemacs.org>
	<29663.863802011@rtp.ericsson.se>
	<u43erlusjn.fsf@pentagana.sonic.jp>
X-Mailer: VM 6.31 under 20.2 XEmacs Lucid
Reply-To: Martin Buchholz <mrb@Eng.Sun.COM>

>>>>> "P" == P E Jareth Hein <jhod@po.iijnet.or.jp> writes:

P> Wnn6 is for sites which have a version 6 server available to them. The 
P> version 6 server is only availble commercially, and only for a few
P> platforms. For everyone else the version 4 server has been released to 
P> the public domain.

Jareth:  I'd really appreciate it if you could test, or at least
proofread, my autoconf wnn autodetection:


  dnl Autodetect WNN
  test "$with_wnn6" = "yes" && with_wnn=yes # wnn6 implies wnn support
  test -z "$with_wnn" && { AC_CHECK_HEADER(wnn/wnnerror.h, ,with_wnn=no) }
  test -z "$with_wnn" && { AC_CHECK_LIB(wnn,jl_dic_list,[:],with_wnn=no) }
  test -z "$with_wnn" && with_wnn=yes
  if test "$with_wnn" = "yes"; then
    AC_DEFINE(HAVE_WNN)
    libs_x="-lwnn $libs_x"
    extra_objs="$extra_objs mule-wnnfns.o"
    AC_CHECK_LIB(wnn, jl_fi_dic_list, with_wnn6=yes)
    test "$with_wnn6" = "yes" && AC_DEFINE(HAVE_WNN6)
  fi

Please all think about how to get at wnn's include files
automagically, if they are installed into the X11 tree.

Martin

