autoconf-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: AC_FUNC_GETMNTENT look in libc before -lsun


From: Stepan Kasal
Subject: Re: AC_FUNC_GETMNTENT look in libc before -lsun
Date: Tue, 7 Dec 2004 01:46:55 +0100
User-agent: Mutt/1.4.1i

Hello Paul,
  it seems you had made another mistake: the AC_SEARCH_LIBS syntax
is different.
Please check in the patch below.

Have a nice day,
        Stepan


Index: lib/autoconf/functions.m4
===================================================================
RCS file: /cvsroot/autoconf/autoconf/lib/autoconf/functions.m4,v
retrieving revision 1.88
diff -u -r1.88 functions.m4
--- lib/autoconf/functions.m4   6 Dec 2004 21:48:30 -0000       1.88
+++ lib/autoconf/functions.m4   7 Dec 2004 00:43:41 -0000
@@ -773,7 +773,7 @@
 AC_DEFUN([AC_FUNC_GETMNTENT],
 [# getmntent is in the standard C library on UNICOS, in -lsun on Irix 4,
 # -lseq on Dynix/PTX, -lgen on Unixware.
-AC_SEARCH_LIBS(getmntent, -lsun -lseq -lgen, [AC_CHECK_FUNCS(getmntent)])
+AC_SEARCH_LIBS(getmntent, sun seq gen, [AC_CHECK_FUNCS(getmntent)])
 ])
 
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]