From xemacs-m  Mon Apr  7 00:05:04 1997
Received: from epsongw2.epson.co.jp (epsongw2.epson.co.jp [202.248.17.20])
	by xemacs.org (8.8.5/8.8.5) with SMTP id AAA19129
	for <xemacs-beta@xemacs.org>; Mon, 7 Apr 1997 00:05:02 -0500 (CDT)
Received: from epsongw.epson.co.jp by epsongw2.epson.co.jp (8.6.12+2.4W/3.4W-MX950731-Epson Mail Gateway) id OAA27950; Mon, 7 Apr 1997 14:06:35 +0900
Received: from hv.epson.co.jp by epsongw.epson.co.jp (8.6.12+2.4W/3.4W-97040115) id OAA03210; Mon, 7 Apr 1997 14:01:48 +0900
Received: from hv08.hv.epson.co.jp (hv08 [163.141.23.108]) by hv.epson.co.jp (8.6.12+2.5Wb7/3.3W-ESD-MAIL-GW1996/01/17) with ESMTP id OAA02629 for <xemacs-beta@xemacs.org>; Mon, 7 Apr 1997 14:02:55 +0900
Received: (from ichikawa@localhost) by hv08.hv.epson.co.jp (8.8.2+2.6Wbeta9/3.5W-AT-ESD hv08 11/12/96) id OAA15322; Mon, 7 Apr 1997 14:04:14 +0900 (JST)
From: Tatsuya Ichikawa <ichikawa@hv.epson.co.jp>
To: xemacs-beta@xemacs.org
Subject: build success on i586-att-sysv4
X-Emacs: XEmacs 20.1
X-MUA: gnus-mime 0.21 (for SEMI) + SEMI MIME view 0.75
Sender: ichikawa@hv08.hv.epson.co.jp
Original-Sender: ichikawa@hv.epson.co.jp
Organization: Tatsuya Ichikawa Supporter Club.
X-Face-Version: X-Face utilities v1.2.2
X-Face: ?/"MXina;Tt'.c6A>P1["3Wm#HCKX-/DEGN$1y[T?I6fCGFUTh]6'<@mJ&1TSRDlc_>|Lo'
 %b|.R<f|%BIjCOSQvLV:2)P^04)ek{b"Non9NuWOEk;\0td2/ema6)OY@T[SPgNY3z[;uPIjxx>wf=
 `7~U>E@VElJ`RI\Sb1h
Mime-Version: 1.0 (generated by SEMI MIME-Edit 0.75)
Content-Type: multipart/mixed;
 boundary="Multipart_Mon_Apr__7_14:04:13_1997-1"
Content-Transfer-Encoding: 7bit
Date: 07 Apr 1997 14:04:14 +0900
Message-ID: <wnu3lj8lv5.fsf@hv08.hv.epson.co.jp>
Lines: 85
X-Mailer: Gnus v5.4.42/XEmacs 20.1(beta11)

--Multipart_Mon_Apr__7_14:04:13_1997-1
Content-Type: text/plain; charset=US-ASCII


  Build success XEmacs 20.1 b11 on my machine.
    (i586-att-sysv4)
  My configuration is below.

   ./configure i586-att-sysv4 \
		--dynamic=yes \
		--with-gcc \
		--with-gnu-make \
		--prefix=/usr/xemacs \
		--with-x \
		--x-includes=/usr/X11R6/include \
		--x-libraries=/usr/X11R6/lib \
		--with-menubars=lucid \
		--with-scrollbars=athena3d \
		--with-dialogs=athena3d \
		--with-xpm \
		--with-toolbars=yes \
		--with-xface \
		--with-gif \
		--with-jpeg \
		--with-mule \
		--with-xim=no \
		--with-canna \
		--canna-includes=/usr/local/canna/include \
		--canna-libraries=/usr/local/canna/lib \
		--use-system-malloc \
		--rel-alloc \
		--site-includes=/usr/epson/include \
		--site-libraries=/usr/epson/lib \
		--with-database=gnudbm \
		--with-xmu=yes \
		--cflags="-m486 -g -O4 -fno-strength-reduce -malign-loops=2 \
			  -malign-jumps=2 -malign-functions=2"\
		--with-sound=no 
		--with-pop

  But configure script has some typo when using "--with-pop" option.
  May be occur "--with-kerberos" and "--with-hesiod".

  This is a patch for small typo.


--Multipart_Mon_Apr__7_14:04:13_1997-1
Content-Type: application/octet-stream; type=patch
Content-Disposition: attachment; filename="configure.diff"
Content-Transfer-Encoding: 7bit

*** configure.orig	Mon Apr  7 13:54:31 1997
--- configure	Mon Apr  7 13:57:34 1997
***************
*** 7142,7150 ****
  test "$with_dialogs"    = motif  && echo "  Using the Motif dialog boxes."
  test "$with_dialogs"    = athena && echo "  Using the Athena dialog boxes."
  test "$with_dialogs"    = athena3d && echo "  Using the Athena-3d dialog boxes."
! test "$with_pop"	= yes && "Using POP for mail access"
! test "$with_kerberos"	= yes && "Using Kerberos for POP authentication"
! test "$with_hesiod"	= yes && "Using Hesiod to get POP server host"
  
  test "${use_union_type}"     = yes && echo "  Using the union type for Lisp_Objects."
  test "${debug}"              = yes && echo "  Compiling in extra code for debugging."
--- 7142,7150 ----
  test "$with_dialogs"    = motif  && echo "  Using the Motif dialog boxes."
  test "$with_dialogs"    = athena && echo "  Using the Athena dialog boxes."
  test "$with_dialogs"    = athena3d && echo "  Using the Athena-3d dialog boxes."
! test "$with_pop"	= yes && echo "  Using POP for mail access"
! test "$with_kerberos"	= yes && echo "  Using Kerberos for POP authentication"
! test "$with_hesiod"	= yes && echo "  Using Hesiod to get POP server host"
  
  test "${use_union_type}"     = yes && echo "  Using the union type for Lisp_Objects."
  test "${debug}"              = yes && echo "  Compiling in extra code for debugging."

--Multipart_Mon_Apr__7_14:04:13_1997-1
Content-Type: text/plain; charset=US-ASCII


--
Tatsuya Ichikawa : Epson Software Development Lab, Inc. Nagano, Japan. ;-)
# PGP Public Key : pgp-public-keys@keys.pgp.net(Subject: GET 0x0A2D6599)
       E-mail    : <ichikawa@hv.epson.co.jp><t-ichi@po.shiojiri.ne.jp>

--Multipart_Mon_Apr__7_14:04:13_1997-1--

