Re: GNULib save-cwd.c on Windows & Visual Studio 6.0
Jim Meyering <[email protected]> Thu, 10 Mar 2005 09:58:28 +0100
| Newsgroups | gmane.comp.lib.gnulib.bugs,gmane.comp.version-control.cvs.bugs |
|---|---|
| Message-ID | <[email protected]> |
"Conrad T. Pino" <[email protected]> wrote: ... >> I've checked that in. > > I've seen the "lib/save-cwd.c" change in GULLib CVS on Savannah but > I didn't see the "AC_CHECK_FUNCS(fchdir) in save-cwd.m4" change. It was too late :) I've just done it. Index: m4/save-cwd.m4 =================================================================== RCS file: /cvsroot/gnulib/gnulib/m4/save-cwd.m4,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -u -r1.4 -r1.5 --- m4/save-cwd.m4 20 Jan 2005 22:21:01 -0000 1.4 +++ m4/save-cwd.m4 10 Mar 2005 08:55:38 -0000 1.5 @@ -1,4 +1,4 @@ -# save-cwd.m4 serial 4 +#serial 5 dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -9,5 +9,6 @@ AC_DEFUN([gl_SAVE_CWD], AC_LIBSOURCES([save-cwd.c, save-cwd.h]) AC_LIBOBJ([save-cwd]) dnl Prerequisites for lib/save-cwd.c. + AC_CHECK_FUNCS_ONCE(fchdir) AC_CHECK_HEADERS_ONCE(fcntl.h unistd.h) ])