diff options
author | sabetts <sabetts> | 2001-09-16 09:58:24 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2001-09-16 09:58:24 +0000 |
commit | 4b68178c380e2d3d9915bb2993b90cf5ab9c6be9 (patch) | |
tree | 046c34c166f0d7162945a53a71c78476af154787 /configure.in | |
parent | bb0c4b008d37b49d76476aa79d1968f40c800e4a (diff) | |
download | ratpoison-4b68178c380e2d3d9915bb2993b90cf5ab9c6be9.zip |
* configure.in: check for setpgrp.
* src/actions.c (spawn): if setpgid doesn't exist, try setpgrp.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index cb5c90c..5a6c41b 100644 --- a/configure.in +++ b/configure.in @@ -17,7 +17,7 @@ dnl You should have received a copy of the GNU General Public License dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA dnl -dnl $Id: configure.in,v 1.22 2001/09/16 09:48:43 sabetts Exp $ +dnl $Id: configure.in,v 1.23 2001/09/16 09:58:24 sabetts Exp $ AC_INIT(src/main.c) AM_INIT_AUTOMAKE(ratpoison, 1.0.1-cvs) @@ -74,7 +74,7 @@ AC_CHECK_HEADERS(unistd.h) dnl Checks for typedefs, structures, and compiler characteristics. dnl Checks for library functions. -AC_CHECK_FUNCS(getopt getopt_long setsid setpgid) +AC_CHECK_FUNCS(getopt getopt_long setsid setpgid setpgrp) AC_TYPE_SIGNAL AC_OUTPUT(Makefile doc/Makefile src/Makefile contrib/Makefile) |