aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-03-06 03:32:10 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-03-06 03:32:10 +0000
commitae731e7079df667498df62ec4e1f9a19f2681055 (patch)
tree5f4ad3f378914c9a4b748059ed03b7b8ee8a9822 /configure
parent* version.c.in: 0.3+cvs (diff)
downloadw3m-ae731e7079df667498df62ec4e1f9a19f2681055.tar.gz
w3m-ae731e7079df667498df62ec4e1f9a19f2681055.zip
* version.c.in: 0.3+cvs
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure b/configure
index 61bc2fb..ce072f0 100755
--- a/configure
+++ b/configure
@@ -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