diff options
author | sabetts <sabetts> | 2001-09-16 09:48:43 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2001-09-16 09:48:43 +0000 |
commit | bb0c4b008d37b49d76476aa79d1968f40c800e4a (patch) | |
tree | c7e2b75e59660ceac6620de9aaa1859ab6d3a8d4 /configure.in | |
parent | d61cb882a846b71d45bf65660f75fe6c633eb345 (diff) | |
download | ratpoison-bb0c4b008d37b49d76476aa79d1968f40c800e4a.zip |
* configure.in: check for setsid and setpgid functions. Add
contrib/Makefile to AC_OUTPUT.
* Makefile.am (SUBDIRS): add contrib
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 13f7d61..cb5c90c 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.21 2001/09/07 05:22:01 sabetts Exp $ +dnl $Id: configure.in,v 1.22 2001/09/16 09:48:43 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) +AC_CHECK_FUNCS(getopt getopt_long setsid setpgid) AC_TYPE_SIGNAL -AC_OUTPUT(Makefile doc/Makefile src/Makefile) +AC_OUTPUT(Makefile doc/Makefile src/Makefile contrib/Makefile) |