Update of /cvsroot/eas-dev/eas
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv30604
Modified Files:
configure
Log Message:
Fix translation update and documentation. Fix configure.
Index: configure
===================================================================
RCS file: /cvsroot/eas-dev/eas/configure,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- configure 20 Nov 2006 12:57:55 -0000 1.6
+++ configure 23 Nov 2006 11:24:03 -0000 1.7
@@ -315,12 +315,12 @@
#endif
static struct pam_conv conv = {
- NULL
+ 0
};
int main()
{
- pam_handle_t *pamh = NULL;
+ pam_handle_t *pamh = 0;
pam_start( PAM_SERVICE_NAME, 0, &conv, &pamh );
;
return 0;
@@ -359,7 +359,7 @@
if test "x$ac_cv_lib_pam_pam_start" = "xyes"; then
echo "yes" 1>&6
else
- echo "PAM library or header does not found. Install PAM library and header." 2>&6
+ echo "PAM library or header does not found. Install PAM library and headers." 2>&6
exit
fi
|