--Boundary-00=_ak4+9nr/CWT/Xhs Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, I posted a patch to kde-cvs that fixes a typo in acinclude.m4.in Here's a slightly modified patch for it, which also allows it to find mkstemps() on FreeBSD 5.0, which is located in Please could one of the admin gurus review and apply. Thanks Andy -- Andy Fawcett | "In an open world without walls and fences, andy@athame.co.uk | we wouldn't need Windows and Gates." tap@lspace.org | -- anon --Boundary-00=_ak4+9nr/CWT/Xhs Content-Type: text/x-diff; charset="us-ascii"; name="acinclude.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="acinclude.patch" Index: admin/acinclude.m4.in =================================================================== RCS file: /home/kde/kde-common/admin/acinclude.m4.in,v retrieving revision 2.302.2.3 diff -u -5 -p -d -r2.302.2.3 acinclude.m4.in --- admin/acinclude.m4.in 11 Dec 2002 17:14:39 -0000 2.302.2.3 +++ admin/acinclude.m4.in 14 Dec 2002 19:37:28 -0000 @@ -2166,10 +2166,11 @@ mkstemp("/tmp/aaaXXXXXX"); AC_DEFUN(AC_CHECK_MKSTEMPS, [ KDE_CHECK_FUNC_EXT(mkstemps, [ #include +#include ], [ mkstemps("/tmp/aaaXXXXXX", 6); ], [int mkstemps(char *, int)], @@ -2205,11 +2206,11 @@ AC_DEFUN(AC_CHECK_STRLCAT, KDE_CHECK_FUNC_EXT(strlcat, [ #include ], [ char buf[20]; buf[0]='\0'; - strlat(buf, "KDE function test", sizeof(buf)); + strlcat(buf, "KDE function test", sizeof(buf)); ], [unsigned int strlcat(char*, const char*, unsigned int)], [STRLCAT]) ]) --Boundary-00=_ak4+9nr/CWT/Xhs--