iso9660.h: remove doxygen formatting warning.

configure.ac, NEWS: get ready for 0.77 release
This commit is contained in:
rocky
2006-03-18 02:35:06 +00:00
parent 8f125ff0a4
commit b8d69c67a2
5 changed files with 15 additions and 13 deletions

5
NEWS
View File

@@ -1,4 +1,4 @@
$Id: NEWS,v 1.97 2006/03/18 00:53:20 rocky Exp $ $Id: NEWS,v 1.98 2006/03/18 02:35:06 rocky Exp $
version 0.77cvs version 0.77cvs
===================================== =====================================
@@ -31,6 +31,7 @@ version 0.77cvs
DragonFly recognized as FreeBSD, DragonFly recognized as FreeBSD,
MinGW better tolerated, MinGW better tolerated,
GNU/Linux (and others?) LARGEFILE support GNU/Linux (and others?) LARGEFILE support
OpenBSD tested (no native CD driver though)
- Doxygen formatting improvements. - Doxygen formatting improvements.
@@ -343,4 +344,4 @@ version 0.1
Routines split off from VCDImager. Routines split off from VCDImager.
$Id: NEWS,v 1.97 2006/03/18 00:53:20 rocky Exp $ $Id: NEWS,v 1.98 2006/03/18 02:35:06 rocky Exp $

View File

@@ -16,10 +16,10 @@ dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
dnl 02110-1301 USA. dnl 02110-1301 USA.
define(RELEASE_NUM, 77) define(RELEASE_NUM, 77)
define(CDIO_VERSION_STR, 0.$1cvs) define(CDIO_VERSION_STR, 0.$1)
AC_PREREQ(2.52) AC_PREREQ(2.52)
AC_REVISION([$Id: configure.ac,v 1.190 2006/03/17 19:36:54 rocky Exp $])dnl AC_REVISION([$Id: configure.ac,v 1.191 2006/03/18 02:35:07 rocky Exp $])dnl
AC_INIT(libcdio, CDIO_VERSION_STR(RELEASE_NUM)) AC_INIT(libcdio, CDIO_VERSION_STR(RELEASE_NUM))
AC_CONFIG_SRCDIR(src/cd-info.c) AC_CONFIG_SRCDIR(src/cd-info.c)

View File

@@ -13,15 +13,16 @@
^^^ ^^^
... ...
- make doxygen documentation
cd doc/doxygen; ./run_doxygen
remove any errors.
- Make sure sources are current and checked in: - Make sure sources are current and checked in:
cvs update -dPA . cvs update -dPA .
cvs commit . cvs commit .
- autogen.sh && make && make check - autogen.sh && make && make check
- make doxygen documentation
cd doc/doxygen; ./run_doxygen
- Tag release in CVS: - Tag release in CVS:
cvs log -h configure.ac cvs log -h configure.ac
cvs tag release_*0_76* . cvs tag release_*0_76* .

View File

@@ -1,5 +1,5 @@
/* /*
$Id: iso9660.h,v 1.89 2006/03/14 11:40:05 rocky Exp $ $Id: iso9660.h,v 1.90 2006/03/18 02:35:07 rocky Exp $
Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org> Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>
Copyright (C) 2003, 2004, 2005, 2006 Rocky Bernstein <rocky@panix.com> Copyright (C) 2003, 2004, 2005, 2006 Rocky Bernstein <rocky@panix.com>
@@ -718,7 +718,7 @@ typedef struct _iso9660_s iso9660_t;
@return length of the translated string is returned. It will be no greater @return length of the translated string is returned. It will be no greater
than the length of psz_oldname. than the length of psz_oldname.
*/ */
int iso9660_name_translate_ext(const char *psz_old, char *psz_new, int iso9660_name_translate_ext(const char *psz_oldname, char *psz_newname,
uint8_t i_joliet_level); uint8_t i_joliet_level);
/*! /*!

View File

@@ -1,5 +1,5 @@
/* /*
$Id: iso9660.c,v 1.24 2006/03/17 22:36:31 rocky Exp $ $Id: iso9660.c,v 1.25 2006/03/18 02:35:07 rocky Exp $
Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org> Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>
Copyright (C) 2003, 2004, 2005, 2006 Rocky Bernstein <rocky@panix.com> Copyright (C) 2003, 2004, 2005, 2006 Rocky Bernstein <rocky@panix.com>
@@ -54,7 +54,7 @@ const char ISO_STANDARD_ID[] = {'C', 'D', '0', '0', '1'};
#include <errno.h> #include <errno.h>
#endif #endif
static const char _rcsid[] = "$Id: iso9660.c,v 1.24 2006/03/17 22:36:31 rocky Exp $"; static const char _rcsid[] = "$Id: iso9660.c,v 1.25 2006/03/18 02:35:07 rocky Exp $";
/* Variables to hold debugger-helping enumerations */ /* Variables to hold debugger-helping enumerations */
enum iso_enum1_s iso_enums1; enum iso_enum1_s iso_enums1;
@@ -308,9 +308,9 @@ iso9660_set_ltime (const struct tm *p_tm, /*out*/ iso9660_ltime_t *pvd_date)
than the length of psz_oldname. than the length of psz_oldname.
*/ */
int int
iso9660_name_translate(const char *psz_old, char *psz_new) iso9660_name_translate(const char *psz_oldname, char *psz_newname)
{ {
return iso9660_name_translate_ext(psz_old, psz_new, 0); return iso9660_name_translate_ext(psz_oldname, psz_newname, 0);
} }
/*! /*!