diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: configure,v 1.16 2001/11/23 22:10:58 ukai Exp $ +# $Id: configure,v 1.17 2001/11/24 15:45:33 ukai Exp $ # Configuration. # @@ -1615,7 +1615,7 @@ EOF if $cc $cflags -o _zmachdep _zmachdep.c > /dev/null 2>&1 then echo "You have setpgrp()." - have_setpgrp='#define HAVE_SETPGRP' + def_have_setpgrp='#define HAVE_SETPGRP' else cat > _zmachdep.c << EOF #include <unistd.h> @@ -1629,7 +1629,7 @@ EOF then echo "You have setpgrp( pid, pgrp )." def_have_setpgrp='#define HAVE_SETPGRP' - setpgrp='#define setpgrp() setpgrp( 0, 0 )' + def_setpgrp='#define setpgrp() setpgrp( 0, 0 )' else def_have_setpgrp='' fi |