posix_spawn*: Move AC_LIBOBJ invocations to module description.
authorBruno Haible <bruno@clisp.org>
Sat, 21 May 2011 15:09:28 +0000 (17:09 +0200)
committerBruno Haible <bruno@clisp.org>
Wed, 15 Jun 2011 22:06:37 +0000 (00:06 +0200)
* m4/posix_spawn.m4 (gl_PREREQ_POSIX_SPAWN_INTERNAL): Renamed from
gl_POSIX_SPAWN_INTERNAL. Move AC_LIBOBJ invocation from here...
* modules/posix_spawn (configure.ac): ... to here.
* modules/posix_spawnp (configure.ac): ... and here.

ChangeLog
m4/posix_spawn.m4
modules/posix_spawn
modules/posix_spawnp

index 951ff389b04b7649634a98752a0a6621fbde06be..cad7c70e89824948fd402467bad98c3f02d04f15 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2011-05-21  Bruno Haible  <bruno@clisp.org>
+
+       posix_spawn*: Move AC_LIBOBJ invocations to module description.
+       * m4/posix_spawn.m4 (gl_PREREQ_POSIX_SPAWN_INTERNAL): Renamed from
+       gl_POSIX_SPAWN_INTERNAL. Move AC_LIBOBJ invocation from here...
+       * modules/posix_spawn (configure.ac): ... to here.
+       * modules/posix_spawnp (configure.ac): ... and here.
+
 2011-05-21  Bruno Haible  <bruno@clisp.org>
 
        popen: Move AC_LIBOBJ invocations to module description.
index 63e94736803aca531b4de6b1fc063b24bcc0ce01..1d17050fbb5f9428cd163180588ee88d50246cdb 100644 (file)
@@ -1,4 +1,4 @@
-# posix_spawn.m4 serial 8
+# posix_spawn.m4 serial 9
 dnl Copyright (C) 2008-2011 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -391,10 +391,9 @@ main (int argc, char *argv[])
     ])
 ])
 
-AC_DEFUN([gl_POSIX_SPAWN_INTERNAL],
+# Prerequisites of lib/spawni.c.
+AC_DEFUN([gl_PREREQ_POSIX_SPAWN_INTERNAL],
 [
-  AC_LIBOBJ([spawni])
-  dnl Prerequisites of lib/spawni.c.
   AC_CHECK_HEADERS([paths.h])
   AC_CHECK_FUNCS([confstr sched_setparam sched_setscheduler setegid seteuid vfork])
 ])
index 54e08d841381151dfe6789d8b5a038f158d5b1a7..ec8eac18253773818c246ec4239da9ffa1e26288 100644 (file)
@@ -13,7 +13,8 @@ configure.ac:
 gl_POSIX_SPAWN
 if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
   AC_LIBOBJ([spawn])
-  gl_POSIX_SPAWN_INTERNAL
+  AC_LIBOBJ([spawni])
+  gl_PREREQ_POSIX_SPAWN_INTERNAL
 fi
 gl_SPAWN_MODULE_INDICATOR([posix_spawn])
 
index ec6accb82d31cff4987b2f75ab095cd9562f9628..7e52c674ce56a793c14ec4c87ef43910a727d352 100644 (file)
@@ -13,7 +13,8 @@ configure.ac:
 gl_POSIX_SPAWN
 if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
   AC_LIBOBJ([spawnp])
-  gl_POSIX_SPAWN_INTERNAL
+  AC_LIBOBJ([spawni])
+  gl_PREREQ_POSIX_SPAWN_INTERNAL
 fi
 gl_SPAWN_MODULE_INDICATOR([posix_spawnp])