Bumped to version 0.51.1
This commit is contained in:
parent
0334e7cc59
commit
b673a4e62b
@ -1,6 +1,9 @@
|
||||
$Id$
|
||||
|
||||
v0.51.0 09-Feb-2004
|
||||
|
||||
v0.51.1 21-Feb-2004
|
||||
|
||||
v0.51.0 09-Feb-2004 - 21-Feb-2004
|
||||
|
||||
general:
|
||||
Reorganized the library header files. This will make it easier
|
||||
|
@ -182,6 +182,9 @@
|
||||
/* Define if you have the <utmpx.h> header file. */
|
||||
#undef HAVE_UTMPX_H
|
||||
|
||||
/* Define if you have the <iconv.h> header file. */
|
||||
#undef HAVE_ICONV_H
|
||||
|
||||
/* Define if you have the memcpy function. */
|
||||
#undef HAVE_MEMCPY
|
||||
|
||||
@ -236,6 +239,6 @@
|
||||
/* Define if you have the <zlib.h> header file. */
|
||||
#undef HAVE_ZLIB_H
|
||||
|
||||
/* Defile if machine is bigendian */
|
||||
/* Define if machine is bigendian */
|
||||
#undef WORDS_BIGENDIAN
|
||||
|
||||
|
5
configure
vendored
5
configure
vendored
@ -1275,7 +1275,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbtask mbsetup unix lang examples html
|
||||
PACKAGE="mbsebbs"
|
||||
MAJOR="0"
|
||||
MINOR="51"
|
||||
REVISION="0"
|
||||
REVISION="1"
|
||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||
COPYRIGHT="Copyright (C) 1997-2004 Michiel Broek, All Rights Reserved"
|
||||
SHORTRIGHT="Copyright (C) 1997-2004 M. Broek"
|
||||
@ -5373,7 +5373,8 @@ done
|
||||
|
||||
|
||||
|
||||
for ac_header in sys/resource.h usersec.h gshadow.h shadow.h
|
||||
|
||||
for ac_header in sys/resource.h usersec.h gshadow.h shadow.h iconv.h
|
||||
do
|
||||
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
||||
if eval "test \"\${$as_ac_Header+set}\" = set"; then
|
||||
|
@ -13,7 +13,7 @@ dnl
|
||||
PACKAGE="mbsebbs"
|
||||
MAJOR="0"
|
||||
MINOR="51"
|
||||
REVISION="0"
|
||||
REVISION="1"
|
||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||
COPYRIGHT="Copyright (C) 1997-2004 Michiel Broek, All Rights Reserved"
|
||||
SHORTRIGHT="Copyright (C) 1997-2004 M. Broek"
|
||||
@ -203,7 +203,7 @@ AC_HEADER_DIRENT
|
||||
AC_HEADER_TIME
|
||||
AC_HEADER_SYS_WAIT
|
||||
AC_CHECK_HEADERS(sys/time.h termios.h sys/vfs.h unistd.h netinet/in.h regex.h)
|
||||
AC_CHECK_HEADERS(sys/resource.h usersec.h gshadow.h shadow.h)
|
||||
AC_CHECK_HEADERS(sys/resource.h usersec.h gshadow.h shadow.h iconv.h)
|
||||
AC_CHECK_HEADERS(limits.h utmp.h utmpx.h lastlog.h rpc/key_prot.h)
|
||||
AC_STRUCT_TIMEZONE
|
||||
|
||||
|
@ -92,6 +92,9 @@
|
||||
#endif
|
||||
#include <pthread.h>
|
||||
#include <sys/poll.h>
|
||||
#ifdef HAVE_ICONV_H
|
||||
#include <iconv.h>
|
||||
#endif
|
||||
|
||||
#include <stddef.h>
|
||||
#include <fcntl.h>
|
||||
|
Reference in New Issue
Block a user