* version.c.in: 0.3+cvs

From: Fumitoshi UKAI  <ukai@debian.or.jp>
This commit is contained in:
Fumitoshi UKAI
2002-03-06 03:32:10 +00:00
parent 3d13f591f2
commit ae731e7079
6 changed files with 22 additions and 12 deletions

5
configure vendored
View File

@@ -1,5 +1,5 @@
#!/bin/sh
# $Id: configure,v 1.62 2002/02/12 08:52:58 ukai Exp $
# $Id: configure,v 1.63 2002/03/06 03:32:10 ukai Exp $
# Configuration.
#
@@ -1795,6 +1795,7 @@ if $cc $cflags -o _zmachdep _zmachdep.c > /dev/null 2>&1
then
echo "You have setpgrp()."
def_have_setpgrp='#define HAVE_SETPGRP'
def_setpgrp='#define SETPGRP() setpgrp()'
else
cat > _zmachdep.c << EOF
#include <unistd.h>
@@ -1808,7 +1809,7 @@ EOF
then
echo "You have setpgrp( pid, pgrp )."
def_have_setpgrp='#define HAVE_SETPGRP'
def_setpgrp='#define setpgrp() setpgrp( 0, 0 )'
def_setpgrp='#define SETPGRP() setpgrp( 0, 0 )'
else
def_have_setpgrp=''
fi