Thread: [Fuse-for-macosx-commits] SF.net SVN: fuse-for-macosx: [417] trunk/lib765
Brought to you by:
fredm
|
From: <fr...@us...> - 2007-07-01 03:52:12
|
Revision: 417
http://svn.sourceforge.net/fuse-for-macosx/?rev=417&view=rev
Author: fredm
Date: 2007-06-30 20:52:12 -0700 (Sat, 30 Jun 2007)
Log Message:
-----------
Merge up to vendorlib765-0.4.0
Modified Paths:
--------------
trunk/lib765/Info.plist
trunk/lib765/lib765/ChangeLog
trunk/lib765/lib765/configure
trunk/lib765/lib765/configure.in
trunk/lib765/lib765/doc/765.txt
trunk/lib765/lib765/doc/765.txt~
trunk/lib765/lib765/lib/765fdc.c
trunk/lib765/lib765/lib/Makefile.am
trunk/lib765/lib765/lib/Makefile.in
trunk/lib765/lib765.xcodeproj/project.pbxproj
Modified: trunk/lib765/Info.plist
===================================================================
--- trunk/lib765/Info.plist 2007-07-01 03:16:59 UTC (rev 416)
+++ trunk/lib765/Info.plist 2007-07-01 03:52:12 UTC (rev 417)
@@ -23,6 +23,6 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
- <string>0.3.4</string>
+ <string>0.4.0</string>
</dict>
</plist>
Modified: trunk/lib765/lib765/ChangeLog
===================================================================
--- trunk/lib765/lib765/ChangeLog 2007-07-01 03:16:59 UTC (rev 416)
+++ trunk/lib765/lib765/ChangeLog 2007-07-01 03:52:12 UTC (rev 417)
@@ -1,3 +1,11 @@
+
+2007-04-15 John Elliott
+
+ * lib765-0.4.0 released.
+
+ * Add basic support for multisector reads (no multisector writes yet).
+ This should allow Speedlock protection to work.
+
2006-03-29 John Elliott
* Don't segfault if fdc_get_st3() is called on a nonexistent drive
Modified: trunk/lib765/lib765/configure
===================================================================
--- trunk/lib765/lib765/configure 2007-07-01 03:16:59 UTC (rev 416)
+++ trunk/lib765/lib765/configure 2007-07-01 03:52:12 UTC (rev 417)
@@ -1521,8 +1521,8 @@
ac_config_sub="$SHELL $ac_aux_dir/config.sub"
ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
-VERSION=0.3.4
-UPDATED='1 April 2006'
+VERSION=0.4.0
+UPDATED='15 April 2007'
am__api_version="1.6"
# Find a good install program. We prefer a C program (faster),
# so one script is as good as another. But avoid the broken or
Modified: trunk/lib765/lib765/configure.in
===================================================================
--- trunk/lib765/lib765/configure.in 2007-07-01 03:16:59 UTC (rev 416)
+++ trunk/lib765/lib765/configure.in 2007-07-01 03:52:12 UTC (rev 417)
@@ -1,8 +1,8 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(lib/765fdc.c)
AC_CONFIG_AUX_DIR(config)
-VERSION=0.3.4
-UPDATED='1 April 2006'
+VERSION=0.4.0
+UPDATED='15 April 2007'
AM_INIT_AUTOMAKE(lib765, $VERSION)
AM_CONFIG_HEADER(config.h)
Modified: trunk/lib765/lib765/doc/765.txt
===================================================================
--- trunk/lib765/lib765/doc/765.txt 2007-07-01 03:16:59 UTC (rev 416)
+++ trunk/lib765/lib765/doc/765.txt 2007-07-01 03:52:12 UTC (rev 417)
@@ -1,18 +1,19 @@
-765 FDC - 0.3.4 John Elliott, 1 April 2006
+765 FDC - 0.4.0 John Elliott, 15 April 2007
===============================================================================
"765" is an emulation of the uPD765a (AKA Intel 8272) Floppy Disc Controller
[FDC] as used in Amstrad computers such as the PCW, CPC and Spectrum +3. At
present it is not a "full" 765; features not used in the PCW BIOS (such as:
-DMA; multisector reads/writes; multitrack mode) are either left unimplemented
+DMA; multisector writes; multitrack mode) are either left unimplemented
or incomplete.
"765" is released under the GNU Library GPL.
What's new
==========
- Version 0.3.4 has been fixed so that it no longer crashes if fdc_get_st3()
-is called on a nonexistent drive.
+ Version 0.4.0 includes a simple implementation of multisector reading,
+which is sufficient to support at least one Speedlock-protected Spectrum +3
+disc.
For earlier versions, see ChangeLog.
Modified: trunk/lib765/lib765/doc/765.txt~
===================================================================
--- trunk/lib765/lib765/doc/765.txt~ 2007-07-01 03:16:59 UTC (rev 416)
+++ trunk/lib765/lib765/doc/765.txt~ 2007-07-01 03:52:12 UTC (rev 417)
@@ -1,4 +1,4 @@
-765 FDC - 0.3.3 John Elliott, 26 January 2005
+765 FDC - 0.3.4 John Elliott, 1 April 2006
===============================================================================
"765" is an emulation of the uPD765a (AKA Intel 8272) Floppy Disc Controller
@@ -11,9 +11,8 @@
What's new
==========
- Version 0.3.3 incorporates a bugfix for writing sectors to disc formats
-that distinguish between MFM and FM recording mode. LibDsk 1.1.2 and later
-make this distinction for .DSK files.
+ Version 0.3.4 has been fixed so that it no longer crashes if fdc_get_st3()
+is called on a nonexistent drive.
For earlier versions, see ChangeLog.
Modified: trunk/lib765/lib765/lib/765fdc.c
===================================================================
--- trunk/lib765/lib765/lib/765fdc.c 2007-07-01 03:16:59 UTC (rev 416)
+++ trunk/lib765/lib765/lib/765fdc.c 2007-07-01 03:52:12 UTC (rev 417)
@@ -417,34 +417,53 @@
static void fdc_read(FDC_765 *self, int deleted)
{
- int err;
+ int err = 0;
FLOPPY_DRIVE *fd;
+ int sector;
+ size_t lensector;
+ fdc_byte *buf = self->fdc_exec_buf;
self->fdc_st0 = self->fdc_st1 = self->fdc_st2 = 0;
self->fdc_lastidread = 0;
fdc_get_drive(self);
- fd = self->fdc_dor_drive[self->fdc_curunit];
- self->fdc_exec_len = (128 << self->fdc_cmd_buf[5]);
- if (self->fdc_cmd_buf[8] < 255)
- self->fdc_exec_len = self->fdc_cmd_buf[8];
+ self->fdc_exec_len = 0;
+ /* 0.4.0: Support for multisector reads. Do it naively by reading
+ * all the sectors in one go. */
+ for (sector = self->fdc_cmd_buf[4]; sector <= self->fdc_cmd_buf[6];
+ sector++)
+ {
+ fd = self->fdc_dor_drive[self->fdc_curunit];
+ lensector = (128 << self->fdc_cmd_buf[5]);
+ if (self->fdc_cmd_buf[8] < 255)
+ lensector = self->fdc_cmd_buf[8];
- memset(self->fdc_exec_buf, 0, self->fdc_exec_len);
+ memset(buf, 0, lensector);
- if (!fdc_isready(self, fd)) err = FD_E_NOTRDY;
- else err = fd_read_sector(fd,
- self->fdc_cmd_buf[2], self->fdc_cmd_buf[3],
- self->fdc_curhead,
- self->fdc_cmd_buf[4], self->fdc_exec_buf,
- self->fdc_exec_len, &deleted,
- self->fdc_cmd_buf[0] & 0x20,
- self->fdc_cmd_buf[0] & 0x40,
- self->fdc_cmd_buf[0] & 0x80);
+ if (!fdc_isready(self, fd)) err = FD_E_NOTRDY;
+ else err = fd_read_sector(fd,
+ self->fdc_cmd_buf[2], /* Cylinder expected */
+ self->fdc_cmd_buf[3], /* Head expected */
+ self->fdc_curhead, /* Real head */
+ self->fdc_cmd_buf[4], /* Sector */
+ buf,
+ lensector,
+ &deleted,
+ self->fdc_cmd_buf[0] & 0x20,
+ self->fdc_cmd_buf[0] & 0x40,
+ self->fdc_cmd_buf[0] & 0x80);
- if (err) fdc_xlt_error(self, err);
- if (deleted) self->fdc_st2 |= 0x40;
-
+ if (err) fdc_xlt_error(self, err);
+ if (deleted) self->fdc_st2 |= 0x40;
+ if (err && err != FD_E_DATAERR)
+ {
+ break;
+ }
+ buf += lensector;
+ self->fdc_exec_len += lensector;
+ ++self->fdc_cmd_buf[4]; /* Next sector */
+ }
fdc_results_7(self);
if (err && err != FD_E_DATAERR)
{
@@ -460,6 +479,8 @@
/* WRITE DATA
* WRITE DELETED DATA
+ *
+ * XXX Does not support multisector
*/
static void fdc_write(FDC_765 *self, int deleted)
Modified: trunk/lib765/lib765/lib/Makefile.am
===================================================================
--- trunk/lib765/lib765/lib/Makefile.am 2007-07-01 03:16:59 UTC (rev 416)
+++ trunk/lib765/lib765/lib/Makefile.am 2007-07-01 03:52:12 UTC (rev 417)
@@ -12,6 +12,6 @@
# If interfaces have been added increment the right-hand number.
# If interfaces have been removed set the right-hand number to 0.
#
-lib765_la_LDFLAGS = -version-info 4:0:1
+lib765_la_LDFLAGS = -version-info 4:1:1
lib765_la_SOURCES = 765drive.c 765dsk.c 765fdc.c 765ldsk.c 765i.h error.c
Modified: trunk/lib765/lib765/lib/Makefile.in
===================================================================
--- trunk/lib765/lib765/lib/Makefile.in 2007-07-01 03:16:59 UTC (rev 416)
+++ trunk/lib765/lib765/lib/Makefile.in 2007-07-01 03:52:12 UTC (rev 417)
@@ -104,7 +104,7 @@
# If interfaces have been added increment the right-hand number.
# If interfaces have been removed set the right-hand number to 0.
#
-lib765_la_LDFLAGS = -version-info 4:0:1
+lib765_la_LDFLAGS = -version-info 4:1:1
lib765_la_SOURCES = 765drive.c 765dsk.c 765fdc.c 765ldsk.c 765i.h error.c
subdir = lib
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
Modified: trunk/lib765/lib765.xcodeproj/project.pbxproj
===================================================================
--- trunk/lib765/lib765.xcodeproj/project.pbxproj 2007-07-01 03:16:59 UTC (rev 416)
+++ trunk/lib765/lib765.xcodeproj/project.pbxproj 2007-07-01 03:52:12 UTC (rev 417)
@@ -539,7 +539,7 @@
"$(inherited)",
"$(SRCROOT)/../bzip2/build/Deployment",
);
- FRAMEWORK_VERSION = 0.3.4;
+ FRAMEWORK_VERSION = 0.4.0;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <fr...@us...> - 2007-08-06 01:11:58
|
Revision: 446
http://fuse-for-macosx.svn.sourceforge.net/fuse-for-macosx/?rev=446&view=rev
Author: fredm
Date: 2007-08-05 18:11:59 -0700 (Sun, 05 Aug 2007)
Log Message:
-----------
Merge up to vendor libdsk-1.1.14 and lib765-0.4.1.
Modified Paths:
--------------
trunk/lib765/Info.plist
trunk/lib765/config.h
trunk/lib765/lib765/ChangeLog
trunk/lib765/lib765/configure
trunk/lib765/lib765/configure.in
trunk/lib765/lib765/lib/765ldsk.c
trunk/lib765/lib765/lib/Makefile.am
trunk/lib765/lib765/lib/Makefile.in
trunk/lib765/lib765.xcodeproj/project.pbxproj
trunk/lib765/libdsk/ChangeLog
trunk/lib765/libdsk/configure
trunk/lib765/libdsk/configure.in
trunk/lib765/libdsk/doc/libdsk.lyx
trunk/lib765/libdsk/doc/libdsk.pdf
trunk/lib765/libdsk/doc/libdsk.txt
trunk/lib765/libdsk/dos16ppd/Makefile
trunk/lib765/libdsk/dos32gcc/Makefile
trunk/lib765/libdsk/include/libdsk.h
trunk/lib765/libdsk/lib/Makefile.am
trunk/lib765/libdsk/lib/Makefile.in
trunk/lib765/libdsk/lib/drivers.h
trunk/lib765/libdsk/lib/drivers.inc
trunk/lib765/libdsk/lib/dsksgeom.c
trunk/lib765/libdsk/man/apriboot.1
trunk/lib765/libdsk/man/dskdump.1
trunk/lib765/libdsk/man/dskform.1
trunk/lib765/libdsk/man/dskid.1
trunk/lib765/libdsk/man/dskscan.1
trunk/lib765/libdsk/man/dsktrans.1
trunk/lib765/libdsk/man/dskutil.1
trunk/lib765/libdsk/man/md3serial.1
trunk/lib765/libdsk/tools/dsktrans.c
trunk/lib765/libdsk/win16bc5/libdsk.ide
trunk/lib765/libdsk/win16vc1/LIBDSK16.MAK
trunk/lib765/libdsk/win32bc5/libdsk.ide
trunk/lib765/libdsk/win32vc6/atlibdsk.dsp
trunk/lib765/libdsk/win32vc6/atlibdsk.h
trunk/lib765/libdsk/win32vc6/atlibdsk_i.c
trunk/lib765/libdsk/win32vc6/atlibdsk_p.c
trunk/lib765/libdsk/win32vc6/libdsk.dsp
Added Paths:
-----------
trunk/lib765/libdsk/lib/drvlogi.c
trunk/lib765/libdsk/lib/drvlogi.h
trunk/lib765/libdsk/lib/drvtele.c
trunk/lib765/libdsk/lib/drvtele.h
Property Changed:
----------------
trunk/lib765/libdsk/win32vc6/atlibdsk.dsp
trunk/lib765/libdsk/win32vc6/libdsk.dsp
Modified: trunk/lib765/Info.plist
===================================================================
--- trunk/lib765/Info.plist 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/Info.plist 2007-08-06 01:11:59 UTC (rev 446)
@@ -23,6 +23,6 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
- <string>0.4.0</string>
+ <string>0.4.1</string>
</dict>
</plist>
Modified: trunk/lib765/config.h
===================================================================
--- trunk/lib765/config.h 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/config.h 2007-08-06 01:11:59 UTC (rev 446)
@@ -152,4 +152,4 @@
#define PACKAGE_VERSION ""
/* Version number of package */
-#define VERSION "0.3.3"
+#define VERSION "0.4.1"
Modified: trunk/lib765/lib765/ChangeLog
===================================================================
--- trunk/lib765/lib765/ChangeLog 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/lib765/ChangeLog 2007-08-06 01:11:59 UTC (rev 446)
@@ -1,4 +1,7 @@
+2007-06-11 John Elliott
+ * Removed spurious reference to LIBDSK_EXPOSES_DIRTY.
+
2007-04-15 John Elliott
* lib765-0.4.0 released.
Modified: trunk/lib765/lib765/configure
===================================================================
--- trunk/lib765/lib765/configure 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/lib765/configure 2007-08-06 01:11:59 UTC (rev 446)
@@ -1521,8 +1521,8 @@
ac_config_sub="$SHELL $ac_aux_dir/config.sub"
ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
-VERSION=0.4.0
-UPDATED='15 April 2007'
+VERSION=0.4.1
+UPDATED='11 June 2007'
am__api_version="1.6"
# Find a good install program. We prefer a C program (faster),
# so one script is as good as another. But avoid the broken or
Modified: trunk/lib765/lib765/configure.in
===================================================================
--- trunk/lib765/lib765/configure.in 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/lib765/configure.in 2007-08-06 01:11:59 UTC (rev 446)
@@ -1,8 +1,8 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(lib/765fdc.c)
AC_CONFIG_AUX_DIR(config)
-VERSION=0.4.0
-UPDATED='15 April 2007'
+VERSION=0.4.1
+UPDATED='11 June 2007'
AM_INIT_AUTOMAKE(lib765, $VERSION)
AM_CONFIG_HEADER(config.h)
Modified: trunk/lib765/lib765/lib/765ldsk.c
===================================================================
--- trunk/lib765/lib765/lib/765ldsk.c 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/lib765/lib/765ldsk.c 2007-08-06 01:11:59 UTC (rev 446)
@@ -286,7 +286,6 @@
{
LIBDSK_FLOPPY_DRIVE *fdl = (LIBDSK_FLOPPY_DRIVE *)fd;
-#ifdef LIBDSK_EXPOSES_DIRTY
if (fdl->fdl_diskp)
{
return dsk_dirty(fdl->fdl_diskp);
@@ -295,9 +294,6 @@
{
return FD_D_UNAVAILABLE;
}
-#else // def LIBDSK_EXPOSES_DIRTY
- return FD_D_UNAVAILABLE;
-#endif // def LIBDSK_EXPOSES_DIRTY
}
/* Eject a DSK - close the image file */
Modified: trunk/lib765/lib765/lib/Makefile.am
===================================================================
--- trunk/lib765/lib765/lib/Makefile.am 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/lib765/lib/Makefile.am 2007-08-06 01:11:59 UTC (rev 446)
@@ -12,6 +12,6 @@
# If interfaces have been added increment the right-hand number.
# If interfaces have been removed set the right-hand number to 0.
#
-lib765_la_LDFLAGS = -version-info 4:1:1
+lib765_la_LDFLAGS = -version-info 4:2:1
lib765_la_SOURCES = 765drive.c 765dsk.c 765fdc.c 765ldsk.c 765i.h error.c
Modified: trunk/lib765/lib765/lib/Makefile.in
===================================================================
--- trunk/lib765/lib765/lib/Makefile.in 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/lib765/lib/Makefile.in 2007-08-06 01:11:59 UTC (rev 446)
@@ -104,7 +104,7 @@
# If interfaces have been added increment the right-hand number.
# If interfaces have been removed set the right-hand number to 0.
#
-lib765_la_LDFLAGS = -version-info 4:1:1
+lib765_la_LDFLAGS = -version-info 4:2:1
lib765_la_SOURCES = 765drive.c 765dsk.c 765fdc.c 765ldsk.c 765i.h error.c
subdir = lib
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
Modified: trunk/lib765/lib765.xcodeproj/project.pbxproj
===================================================================
--- trunk/lib765/lib765.xcodeproj/project.pbxproj 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/lib765.xcodeproj/project.pbxproj 2007-08-06 01:11:59 UTC (rev 446)
@@ -7,6 +7,10 @@
objects = {
/* Begin PBXBuildFile section */
+ B632254A0C66A7DD00BB081B /* drvlogi.c in Sources */ = {isa = PBXBuildFile; fileRef = B63225480C66A7DD00BB081B /* drvlogi.c */; };
+ B632254B0C66A7DD00BB081B /* drvlogi.h in Headers */ = {isa = PBXBuildFile; fileRef = B63225490C66A7DD00BB081B /* drvlogi.h */; };
+ B632254E0C66A7FA00BB081B /* drvtele.c in Sources */ = {isa = PBXBuildFile; fileRef = B632254C0C66A7FA00BB081B /* drvtele.c */; };
+ B632254F0C66A7FA00BB081B /* drvtele.h in Headers */ = {isa = PBXBuildFile; fileRef = B632254D0C66A7FA00BB081B /* drvtele.h */; };
B668CEA00A6A707C00134D46 /* crc16.c in Sources */ = {isa = PBXBuildFile; fileRef = B668CE9E0A6A707C00134D46 /* crc16.c */; };
B668CEA10A6A707C00134D46 /* crc16.h in Headers */ = {isa = PBXBuildFile; fileRef = B668CE9F0A6A707C00134D46 /* crc16.h */; };
B668CEA50A6A70C200134D46 /* drvint25.c in Sources */ = {isa = PBXBuildFile; fileRef = B668CEA30A6A70C200134D46 /* drvint25.c */; };
@@ -154,6 +158,10 @@
000000000000000016420B60 /* uk_co_demon_seasip_libdsk_LibDsk.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = uk_co_demon_seasip_libdsk_LibDsk.h; sourceTree = "<group>"; };
000000000000000016420BB0 /* w16defs.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = w16defs.h; sourceTree = "<group>"; };
000000000000000016420CE0 /* w95defs.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = w95defs.h; sourceTree = "<group>"; };
+ B63225480C66A7DD00BB081B /* drvlogi.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = drvlogi.c; sourceTree = "<group>"; };
+ B63225490C66A7DD00BB081B /* drvlogi.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = drvlogi.h; sourceTree = "<group>"; };
+ B632254C0C66A7FA00BB081B /* drvtele.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = drvtele.c; sourceTree = "<group>"; };
+ B632254D0C66A7FA00BB081B /* drvtele.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = drvtele.h; sourceTree = "<group>"; };
B668CE9E0A6A707C00134D46 /* crc16.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = crc16.c; sourceTree = "<group>"; };
B668CE9F0A6A707C00134D46 /* crc16.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = crc16.h; sourceTree = "<group>"; };
B668CEA30A6A70C200134D46 /* drvint25.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = drvint25.c; sourceTree = "<group>"; };
@@ -248,6 +256,8 @@
B668CEA40A6A70C200134D46 /* drvint25.h */,
000000000000000016417020 /* drvlinux.c */,
000000000000000016415170 /* drvlinux.h */,
+ B63225480C66A7DD00BB081B /* drvlogi.c */,
+ B63225490C66A7DD00BB081B /* drvlogi.h */,
0000000000000000003E56A0 /* drvmyz80.c */,
0000000000000000164152D0 /* drvmyz80.h */,
B668CEA70A6A70F700134D46 /* drvntwdm.c */,
@@ -260,6 +270,8 @@
000000000000000016416200 /* drvqm.h */,
0000000000000000003C04D0 /* drvrcpm.c */,
000000000000000016416360 /* drvrcpm.h */,
+ B632254C0C66A7FA00BB081B /* drvtele.c */,
+ B632254D0C66A7FA00BB081B /* drvtele.h */,
000000000000000016414080 /* drvwin16.c */,
00000000000000001641AB50 /* drvwin16.h */,
00000000000000001641BAE0 /* drvwin32.c */,
@@ -404,6 +416,8 @@
B668CEC20A6A725A00134D46 /* rpctios.h in Headers */,
B668CEC40A6A725A00134D46 /* rpcwin32.h in Headers */,
B668CEE10A6A73B400134D46 /* rpcfuncs.h in Headers */,
+ B632254B0C66A7DD00BB081B /* drvlogi.h in Headers */,
+ B632254F0C66A7FA00BB081B /* drvtele.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -523,6 +537,8 @@
B668CEDF0A6A73AA00134D46 /* rpcmap.c in Sources */,
B668CEE00A6A73AB00134D46 /* rpcserv.c in Sources */,
B668CEE80A6A742A00134D46 /* dskrtrd.c in Sources */,
+ B632254A0C66A7DD00BB081B /* drvlogi.c in Sources */,
+ B632254E0C66A7FA00BB081B /* drvtele.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -539,7 +555,7 @@
"$(inherited)",
"$(SRCROOT)/../bzip2/build/Deployment",
);
- FRAMEWORK_VERSION = 0.4.0;
+ FRAMEWORK_VERSION = 0.4.1;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
@@ -581,7 +597,7 @@
"$(inherited)",
"$(SRCROOT)/../bzip2/build/Deployment",
);
- FRAMEWORK_VERSION = 0.3.4;
+ FRAMEWORK_VERSION = 0.4.1;
GCC_ENABLE_FIX_AND_CONTINUE = NO;
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
GCC_NO_COMMON_BLOCKS = YES;
@@ -621,7 +637,7 @@
"$(inherited)",
"$(SRCROOT)/../bzip2/build/Deployment",
);
- FRAMEWORK_VERSION = 0.3.4;
+ FRAMEWORK_VERSION = 0.4.1;
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 2;
Modified: trunk/lib765/libdsk/ChangeLog
===================================================================
--- trunk/lib765/libdsk/ChangeLog 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/libdsk/ChangeLog 2007-08-06 01:11:59 UTC (rev 446)
@@ -1,6 +1,37 @@
+2007-07-27 John Elliott
+
+ * libdsk-1.1.14 released.
+
+2007-06-11 Stuart Brady
+
+ * Added a new geometry (FMT_TRDOS640).
+
+2007-06-10 John Elliott
+
+ * Updated the DOS and Windows projects with the new drivers
+ (the Teledisk one didn't compile under Win16).
+
+2007-06-09 John Elliott
+
+ * libdsk-1.1.13 released.
+
+ * New driver: Logical. This is a raw disc image as generated by
+ 'dsktrans -logical'; that is, it is arranged in logical sector order
+ rather than SIDES_ALT order. Useful for dealing with raw disc images
+ that were dumped in logical order.
+ * dsktrans: The -logical option has accordingly been deprecated,
+ since '-otype logical' should have the same effect.
+
+2007-06-02 John Elliott
+
+ * New driver: Teledisk, based on the file format documentation at
+ <http://www.fpns.net/willy/wteledsk.htm>. This driver is read-only.
+ No code from WTELEDSK has been used, because it's GPLed rather than
+ LGPLed.
+
2006-11-18 John Elliott
- * libdsk-1.1.11 released.
+ * libdsk-1.1.12 released.
2006-08-02 John Elliott
Modified: trunk/lib765/libdsk/configure
===================================================================
--- trunk/lib765/libdsk/configure 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/libdsk/configure 2007-08-06 01:11:59 UTC (rev 446)
@@ -814,8 +814,8 @@
NONENONEs,x,x, &&
program_prefix=${target_alias}-
-VERSION=1.1.12
-UPDATED='November 18, 2006'
+VERSION=1.1.14
+UPDATED='July 27, 2007'
am__api_version="1.4"
# Find a good install program. We prefer a C program (faster),
# so one script is as good as another. But avoid the broken or
Modified: trunk/lib765/libdsk/configure.in
===================================================================
--- trunk/lib765/libdsk/configure.in 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/libdsk/configure.in 2007-08-06 01:11:59 UTC (rev 446)
@@ -2,8 +2,8 @@
AC_INIT(lib/dskopen.c)
AC_CONFIG_AUX_DIR(config)
AC_CANONICAL_SYSTEM
-VERSION=1.1.12
-UPDATED='November 18, 2006'
+VERSION=1.1.14
+UPDATED='July 27, 2007'
AM_INIT_AUTOMAKE(libdsk, $VERSION)
AM_CONFIG_HEADER(config.h)
Modified: trunk/lib765/libdsk/doc/libdsk.lyx
===================================================================
--- trunk/lib765/libdsk/doc/libdsk.lyx 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/libdsk/doc/libdsk.lyx 2007-08-06 01:11:59 UTC (rev 446)
@@ -26,7 +26,7 @@
\layout Title
-LibDsk v1.1.12
+LibDsk v1.1.14
\layout Author
John Elliott
@@ -83,9 +83,12 @@
\begin_inset Quotes erd
\end_inset
- images;
+ images;
\layout Itemize
+Raw images in logical filesystem order;
+\layout Itemize
+
CPCEMU-format .DSK images (normal and extended);
\layout Itemize
@@ -103,6 +106,10 @@
NanoWasp-format disc images, used by the eponymous emulator.
\layout Itemize
+Disc images created by the Sydex imaging programs Teledisk and CopyQM (read
+ only in both cases).
+\layout Itemize
+
The floppy drive under Linux;
\layout Itemize
@@ -136,6 +143,25 @@
For full details, see the file ChangeLog.
\layout Itemize
+Added two new drivers:
+\begin_inset Quotes eld
+\end_inset
+
+teledisk
+\begin_inset Quotes erd
+\end_inset
+
+ and
+\begin_inset Quotes eld
+\end_inset
+
+logical
+\begin_inset Quotes erd
+\end_inset
+
+.
+\layout Itemize
+
Changes by Ramlaid <www.ramlaid.com> to the DSK and NTWDM drivers to improve
compatibility, and another fix to stop file handles leaking.
\layout Itemize
@@ -322,6 +348,23 @@
\begin_inset Quotes eld
\end_inset
+logical
+\begin_inset Quotes erd
+\end_inset
+
+ : Raw disc image in logical filesystem order.
+ Previous versions of LibDsk could generate such images (for example, by
+ using the now-deprecated
+\family typewriter
+ -logical
+\family default
+ option to dsktrans) but couldn't then write them back or use them in emulators.
+\layout Description
+
+
+\begin_inset Quotes eld
+\end_inset
+
floppy
\begin_inset Quotes erd
\end_inset
@@ -406,6 +449,18 @@
\begin_inset Quotes eld
\end_inset
+teledisk
+\begin_inset Quotes erd
+\end_inset
+
+ : Disc images created by Sydex's TeleDisk.
+ This is a read-only driver.
+\layout Description
+
+
+\begin_inset Quotes eld
+\end_inset
+
nanowasp
\begin_inset Quotes erd
\end_inset
@@ -2788,7 +2843,7 @@
Used to set callbacks from LibDsk to your own code, for LibDsk to display
messages during processing that may take time.
- The code should be used to set the text on the status line of your program
+ The code could be used to set the text on the status line of your program
window, for example.
\layout LyX-Code
@@ -6372,7 +6427,7 @@
\layout Itemize
-pDriver contains the pointer to our instance data.
+pDriver points to a DSK_DRIVER containing the pointer to your instance data.
\layout Itemize
name is the filename as passed to LibDsk, starting with
Modified: trunk/lib765/libdsk/doc/libdsk.pdf
===================================================================
(Binary files differ)
Modified: trunk/lib765/libdsk/doc/libdsk.txt
===================================================================
--- trunk/lib765/libdsk/doc/libdsk.txt 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/libdsk/doc/libdsk.txt 2007-08-06 01:11:59 UTC (rev 446)
@@ -1,4 +1,4 @@
-LibDsk v1.1.12
+LibDsk v1.1.14
John Elliott
@@ -163,8 +163,10 @@
disc images transparently. It currently supports the
following disc image formats:
- Raw "dd if=foo of=bar" images;
+ Raw "dd if=foo of=bar" images;
+ Raw images in logical filesystem order;
+
CPCEMU-format .DSK images (normal and extended);
MYZ80-format hard drive images;
@@ -178,6 +180,9 @@
NanoWasp-format disc images, used by the eponymous emulator.
+ Disc images created by the Sydex imaging programs
+ Teledisk and CopyQM (read only in both cases).
+
The floppy drive under Linux;
The floppy drive under Windows. Windows support is a
@@ -198,6 +203,8 @@
For full details, see the file ChangeLog.
+ Added two new drivers: "teledisk" and "logical".
+
Changes by Ramlaid <www.ramlaid.com> to the DSK and
NTWDM drivers to improve compatibility, and another
fix to stop file handles leaking.
@@ -283,6 +290,12 @@
. On systems other than Linux, DOS or Windows, this
is also used to access the host system's floppy drive.
+ "logical" : Raw disc image in logical filesystem order.
+ Previous versions of LibDsk could generate such
+ images (for example, by using the now-deprecated
+ -logical option to dsktrans) but couldn't then write
+ them back or use them in emulators.
+
"floppy" : Host system's floppy drive (under Linux, DOS
or Windows).
@@ -301,6 +314,9 @@
"qm" : Disc images created by Sydex's CopyQM. This is a
read-only driver.
+ "teledisk" : Disc images created by Sydex's TeleDisk.
+ This is a read-only driver.
+
"nanowasp" : Disc image in the 400k Microbee format
used by the NanoWasp emulator. This is similar to "raw"
, but the tracks are stored in a different order.
@@ -1188,7 +1204,7 @@
Used to set callbacks from LibDsk to your own code, for
LibDsk to display messages during processing that may
-take time. The code should be used to set the text on
+take time. The code could be used to set the text on
the status line of your program window, for example.
typedef void (*DSK_REPORTFUNC)(const char *message);
@@ -2707,7 +2723,8 @@
Connect to a remote server.
- pDriver contains the pointer to our instance data.
+ pDriver points to a DSK_DRIVER containing the pointer
+ to your instance data.
name is the filename as passed to LibDsk, starting
with "driver:" and containing any connection parameters
Modified: trunk/lib765/libdsk/dos16ppd/Makefile
===================================================================
--- trunk/lib765/libdsk/dos16ppd/Makefile 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/libdsk/dos16ppd/Makefile 2007-08-06 01:11:59 UTC (rev 446)
@@ -9,7 +9,8 @@
OBS7=drvcpcem.obj dskcheck.obj dskpars.obj dskwrite.obj dskcmt.obj
OBS8=drvadisk.obj drvrcpm.obj drvqm.obj crctable.obj dskretry.obj
OBS9=dskreprt.obj dskdirty.obj dskrtrd.obj dsktrkid.obj remote.obj
-OBSA=rpcfossl.obj crc16.obj drvint25.obj int25l.obj
+OBSA=rpcfossl.obj crc16.obj drvint25.obj int25l.obj drvtele.obj
+OBSB=drvlogi.obj
OBS10=dskid.obj utilopts.obj libdsk.lib
OBS11=dskform.obj utilopts.obj formname.obj libdsk.lib
OBS12=dsktrans.obj utilopts.obj formname.obj bootsec.obj libdsk.lib
@@ -47,7 +48,7 @@
$(CC) $(CFLAGS) $(OBS13)
libdsk.lib: $(OBS1) $(OBS2) $(OBS3) $(OBS4) $(OBS5) $(OBS6) $(OBS7) \
- $(OBS8) $(OBS9) $(OBSA)
+ $(OBS8) $(OBS9) $(OBSA) $(OBSB)
libr r $@ $(OBS1)
libr r $@ $(OBS2)
libr r $@ $(OBS3)
@@ -58,6 +59,7 @@
libr r $@ $(OBS8)
libr r $@ $(OBS9)
libr r $@ $(OBSA)
+ libr r $@ $(OBSB)
%.obj: %.as
$(CC) -c $(CFLAGS) $<
Modified: trunk/lib765/libdsk/dos32gcc/Makefile
===================================================================
--- trunk/lib765/libdsk/dos32gcc/Makefile 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/libdsk/dos32gcc/Makefile 2007-08-06 01:11:59 UTC (rev 446)
@@ -10,7 +10,8 @@
drvcpcem.o dskcheck.o dskpars.o dskwrite.o dskretry.o \
drvadisk.o drvrcpm.o drvqm.o dskretry.o dskcmt.o \
dskreprt.o crctable.o dskdirty.o dskrtrd.o dsktrkid.o \
- remote.o rpcfossl.o crc16.o drvint25.o
+ remote.o rpcfossl.o crc16.o drvint25.o drvtele.o \
+ drvlogi.o
OBS1 = dskid.o utilopts.o libdsk.a
OBS2 = dskform.o utilopts.o formname.o libdsk.a
Modified: trunk/lib765/libdsk/include/libdsk.h
===================================================================
--- trunk/lib765/libdsk/include/libdsk.h 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/libdsk/include/libdsk.h 2007-08-06 01:11:59 UTC (rev 446)
@@ -1,7 +1,7 @@
/***************************************************************************
* *
* LIBDSK: General floppy and diskimage access library *
- * Copyright (C) 2001-6 John Elliott <jc...@se...> *
+ * Copyright (C) 2001-7 John Elliott <jc...@se...> *
* *
* Modifications to add dsk_dirty() *
* (c) 2005 Philip Kendall <pak...@sr...> *
@@ -58,7 +58,7 @@
extern "C" {
#endif
-#define LIBDSK_VERSION "1.1.12"
+#define LIBDSK_VERSION "1.1.14"
/************************* TYPES ********************************/
@@ -148,6 +148,7 @@
FMT_BBC200, /* 10 sectors, 80 tracks, 1 side, FM */
FMT_MBEE400, /* 10 sectors, 80 tracks, 1 side */
FMT_MGT800, /* 10 sectors, 80 tracks, 2 sides out and out */
+ FMT_TRDOS640, /* 16 sectors, 256 bytes/sector, 2 sides */
FMT_UNKNOWN = -1
} dsk_format_t;
Modified: trunk/lib765/libdsk/lib/Makefile.am
===================================================================
--- trunk/lib765/libdsk/lib/Makefile.am 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/libdsk/lib/Makefile.am 2007-08-06 01:11:59 UTC (rev 446)
@@ -29,7 +29,7 @@
# If interfaces have been removed set the right-hand number to 0.
#
#
-libdsk_la_LDFLAGS = -version-info 5:1:2
+libdsk_la_LDFLAGS = -version-info 5:3:2
libdsk_la_SOURCES = dskread.c dskwrite.c dskcheck.c dskstat.c \
dsklphys.c dskfmt.c dskopen.c dskpars.c \
dskerror.c dskseek.c dsksecid.c dskgeom.c \
@@ -57,10 +57,12 @@
drvdos16.h drvdos16.c \
drvdos32.h drvdos32.c \
drvcpcem.h drvcpcem.c \
+ drvlogi.h drvlogi.c \
drvposix.h drvposix.c \
drvnwasp.h drvnwasp.c \
drvadisk.h drvadisk.c \
drvrcpm.h drvrcpm.c \
+ drvtele.h drvtele.c \
drvmyz80.h drvmyz80.c \
drvcfi.h drvcfi.c \
drvqm.h drvqm.c
Modified: trunk/lib765/libdsk/lib/Makefile.in
===================================================================
--- trunk/lib765/libdsk/lib/Makefile.in 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/libdsk/lib/Makefile.in 2007-08-06 01:11:59 UTC (rev 446)
@@ -114,8 +114,8 @@
# If interfaces have been removed set the right-hand number to 0.
#
#
-libdsk_la_LDFLAGS = -version-info 5:1:2
-libdsk_la_SOURCES = dskread.c dskwrite.c dskcheck.c dskstat.c dsklphys.c dskfmt.c dskopen.c dskpars.c dskerror.c dskseek.c dsksecid.c dskgeom.c dsktread.c dsksgeom.c dskjni.c dskreprt.c dskcmt.c dskretry.c dskdirty.c dsktrkid.c dskrtrd.c comp.h compi.h compress.h compress.inc compress.c compsq.c compsq.h compgz.c compgz.h compbz2.c compbz2.h crctable.c crctable.h crc16.c crc16.h rpccli.c rpcfuncs.h rpcmap.c rpcpack.c rpcserv.c remote.c remote.h remote.inc remall.h rpctios.c rpctios.h rpcfork.c rpcfork.h rpcfossl.c rpcfossl.h rpcwin32.c rpcwin32.h drv.h drvi.h drivers.h drivers.inc drvlinux.h drvlinux.c drvntwdm.h drvntwdm.c drvwin32.h drvwin32.c w95defs.h drvwin16.h drvwin16.c w16defs.h drvint25.h drvint25.c drvdos16.h drvdos16.c drvdos32.h drvdos32.c drvcpcem.h drvcpcem.c drvposix.h drvposix.c drvnwasp.h drvnwasp.c drvadisk.h drvadisk.c drvrcpm.h drvrcpm.c drvmyz80.h drvmyz80.c drvcfi.h drvcfi.c drvqm.h drvqm.c
+libdsk_la_LDFLAGS = -version-info 5:3:2
+libdsk_la_SOURCES = dskread.c dskwrite.c dskcheck.c dskstat.c dsklphys.c dskfmt.c dskopen.c dskpars.c dskerror.c dskseek.c dsksecid.c dskgeom.c dsktread.c dsksgeom.c dskjni.c dskreprt.c dskcmt.c dskretry.c dskdirty.c dsktrkid.c dskrtrd.c comp.h compi.h compress.h compress.inc compress.c compsq.c compsq.h compgz.c compgz.h compbz2.c compbz2.h crctable.c crctable.h crc16.c crc16.h rpccli.c rpcfuncs.h rpcmap.c rpcpack.c rpcserv.c remote.c remote.h remote.inc remall.h rpctios.c rpctios.h rpcfork.c rpcfork.h rpcfossl.c rpcfossl.h rpcwin32.c rpcwin32.h drv.h drvi.h drivers.h drivers.inc drvlinux.h drvlinux.c drvntwdm.h drvntwdm.c drvwin32.h drvwin32.c w95defs.h drvwin16.h drvwin16.c w16defs.h drvint25.h drvint25.c drvdos16.h drvdos16.c drvdos32.h drvdos32.c drvcpcem.h drvcpcem.c drvlogi.h drvlogi.c drvposix.h drvposix.c drvnwasp.h drvnwasp.c drvadisk.h drvadisk.c drvrcpm.h drvrcpm.c drvtele.h drvtele.c drvmyz80.h drvmyz80.c drvcfi.h drvcfi.c drvqm.h drvqm.c
JARCLASSES = $(CLASSDPRE)/Drive.class $(CLASSDPRE)/DskException.class $(CLASSDPRE)/FormatData.class $(CLASSDPRE)/FormatType.class $(CLASSDPRE)/Geometry.class $(CLASSDPRE)/Reporter.class $(CLASSDPRE)/LibDsk.class
@@ -141,8 +141,8 @@
compsq.lo compgz.lo compbz2.lo crctable.lo crc16.lo rpccli.lo rpcmap.lo \
rpcpack.lo rpcserv.lo remote.lo rpctios.lo rpcfork.lo rpcfossl.lo \
rpcwin32.lo drvlinux.lo drvntwdm.lo drvwin32.lo drvwin16.lo drvint25.lo \
-drvdos16.lo drvdos32.lo drvcpcem.lo drvposix.lo drvnwasp.lo drvadisk.lo \
-drvrcpm.lo drvmyz80.lo drvcfi.lo drvqm.lo
+drvdos16.lo drvdos32.lo drvcpcem.lo drvlogi.lo drvposix.lo drvnwasp.lo \
+drvadisk.lo drvrcpm.lo drvtele.lo drvmyz80.lo drvcfi.lo drvqm.lo
noinst_PROGRAMS = @LIBDSKJAR@
PROGRAMS = $(noinst_PROGRAMS)
@@ -325,6 +325,8 @@
../include/libdsk.h drv.h drvint25.h
drvlinux.lo drvlinux.o : drvlinux.c drvi.h ../config.h \
../include/libdsk.h drv.h drvlinux.h
+drvlogi.lo drvlogi.o : drvlogi.c ../include/libdsk.h drvi.h ../config.h \
+ drv.h drvlogi.h
drvmyz80.lo drvmyz80.o : drvmyz80.c ../include/libdsk.h drvi.h \
../config.h drv.h drvmyz80.h
drvntwdm.lo drvntwdm.o : drvntwdm.c drvi.h ../config.h \
@@ -337,6 +339,8 @@
drvqm.h crctable.h
drvrcpm.lo drvrcpm.o : drvrcpm.c ../include/libdsk.h drvi.h ../config.h \
drv.h drvrcpm.h
+drvtele.lo drvtele.o : drvtele.c drvi.h ../config.h ../include/libdsk.h \
+ drv.h drvtele.h
drvwin16.lo drvwin16.o : drvwin16.c drvi.h ../config.h \
../include/libdsk.h drv.h drvwin16.h
drvwin32.lo drvwin32.o : drvwin32.c drvi.h ../config.h \
Modified: trunk/lib765/libdsk/lib/drivers.h
===================================================================
--- trunk/lib765/libdsk/lib/drivers.h 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/libdsk/lib/drivers.h 2007-08-06 01:11:59 UTC (rev 446)
@@ -32,6 +32,8 @@
extern DRV_CLASS dc_cfi; /* CFI driver */
extern DRV_CLASS dc_adisk; /* APRIDISK driver */
extern DRV_CLASS dc_qm; /* CopyQM driver */
+extern DRV_CLASS dc_tele; /* Teledisk driver */
+extern DRV_CLASS dc_logical; /* Raw, in logical sector order */
extern DRV_CLASS dc_rcpmfs; /* Reverse-CP/MFS driver */
extern DRV_CLASS dc_remote; /* All remote drivers */
#ifdef LINUXFLOPPY
Modified: trunk/lib765/libdsk/lib/drivers.inc
===================================================================
--- trunk/lib765/libdsk/lib/drivers.inc 2007-08-06 00:52:46 UTC (rev 445)
+++ trunk/lib765/libdsk/lib/drivers.inc 2007-08-06 01:11:59 UTC (rev 446)
@@ -61,6 +61,7 @@
* library. */
&dc_adisk, /* APRIDISK image */
&dc_qm, /* CopyQM */
+ &dc_tele, /* Teledisk */
/* 4. Raw files with no magic number. */
&dc_posix,
@@ -69,6 +70,7 @@
* explicitly specified. */
&dc_myz80,
&dc_nwasp,
+ &dc_logical,
&dc_cfi, /* RLE-compressed raw. The reasons that this isn't
* handled by the general compression system are:
* 1. No magic number, so can't autodetect.
Copied: trunk/lib765/libdsk/lib/drvlogi.c (from rev 443, vendor/libdsk/current/lib/drvlogi.c)
===================================================================
--- trunk/lib765/libdsk/lib/drvlogi.c (rev 0)
+++ trunk/lib765/libdsk/lib/drvlogi.c 2007-08-06 01:11:59 UTC (rev 446)
@@ -0,0 +1,262 @@
+/***************************************************************************
+ * *
+ * LIBDSK: General floppy and diskimage access library *
+ * Copyr...
[truncated message content] |
|
From: <fr...@us...> - 2007-08-06 02:39:01
|
Revision: 451
http://fuse-for-macosx.svn.sourceforge.net/fuse-for-macosx/?rev=451&view=rev
Author: fredm
Date: 2007-08-05 19:39:03 -0700 (Sun, 05 Aug 2007)
Log Message:
-----------
Bump version numbers in config.h headers.
Modified Paths:
--------------
trunk/lib765/lib765/config.h
trunk/lib765/libdsk/config.h
Modified: trunk/lib765/lib765/config.h
===================================================================
--- trunk/lib765/lib765/config.h 2007-08-06 02:24:38 UTC (rev 450)
+++ trunk/lib765/lib765/config.h 2007-08-06 02:39:03 UTC (rev 451)
@@ -88,7 +88,7 @@
#define STDC_HEADERS 1
/* Version number of package */
-#define VERSION "0.3.3"
+#define VERSION "0.4.1"
/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */
Modified: trunk/lib765/libdsk/config.h
===================================================================
--- trunk/lib765/libdsk/config.h 2007-08-06 02:24:38 UTC (rev 450)
+++ trunk/lib765/libdsk/config.h 2007-08-06 02:39:03 UTC (rev 451)
@@ -113,5 +113,5 @@
#define PACKAGE "libdsk"
/* Version number of package */
-#define VERSION "1.1.12"
+#define VERSION "1.1.14"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|