diff aclocal.m4 @ 2574:cfa9f35fd407

[project @ 1996-12-09 17:30:39 by jwe]
author jwe
date Mon, 09 Dec 1996 17:30:40 +0000
parents b50cc31aa0cd
children c454cd888ada
line wrap: on
line diff
--- a/aclocal.m4	Mon Dec 09 04:04:49 1996 +0000
+++ b/aclocal.m4	Mon Dec 09 17:30:40 1996 +0000
@@ -369,6 +369,22 @@
 fi
 ])
 dnl
+dnl See if the standard string class has npos as a member.
+dnl
+AC_DEFUN(OCTAVE_STRING_NPOS,
+[AC_CACHE_CHECK([whether including <string> defines NPOS],
+octave_cv_string_npos,
+[AC_LANG_SAVE
+AC_LANG_CPLUSPLUS
+AC_TRY_COMPILE([#include <string>],
+[size_t foo = NPOS],
+octave_cv_string_npos=yes, octave_cv_string_npos=no)])
+if test $octave_cv_string_npos = no; then
+  AC_DEFINE(NPOS, string::npos)
+fi
+AC_LANG_RESTORE
+])
+dnl
 dnl The following test is from Karl Berry's Kpathseach library.  I'm
 dnl including it here in case we someday want to make the use of
 dnl kpathsea optional.