File: yudit-2.6.patch2.txt
From: Radovan Garabik <garabik@melkor.dnp.fmph.uniba.sk>
Emergency: medium
Changes: Fixing build problem on PPC where /etc/hosts does
  not exist.

Usage: patch -p0 < yudit-2.6.patch2.txt

Patched: Gaspar Sinai <gsiani@yudit.org>
Date: Tokyo 2002-05-02

Details:
I prepared a debian package of a new yudit version, and
noticed that in Makefile.conf.in you are testing /etc/hosts
to check out if the build system is unix or windows.
Unfortunately, several debian build servers do not have
this file, so the build process failed there (this is how
found this out). I changed the test to /etc/passwd and all
seems to go well now.

*** yudit-2.6/Makefile.conf.in	Sat Apr 27 17:12:07 2002
--- yudit-2.6.p2/Makefile.conf.in	Thu May  2 19:13:03 2002
***************
*** 1,3 ****
! ifeq ($(wildcard /etc/hosts),/etc/hosts)
  
  TOPDIR = @TOPDIR@
--- 1,3 ----
! ifeq ($(wildcard /etc/passwd),/etc/passwd)
  
  TOPDIR = @TOPDIR@
*** yudit-2.6/Makefile.conf	Sat Apr 27 17:12:14 2002
--- yudit-2.6.p2/Makefile.conf	Thu May  2 19:14:38 2002
***************
*** 1,4 ****
  # Generated automatically from Makefile.conf.in by configure.
! ifeq ($(wildcard /etc/hosts),/etc/hosts)
  
  TOPDIR = /home/gsinai/build/yudit/yudit-2.6
--- 1,4 ----
  # Generated automatically from Makefile.conf.in by configure.
! ifeq ($(wildcard /etc/passwd),/etc/passwd)
  
  TOPDIR = /home/gsinai/build/yudit/yudit-2.6
