You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(42) |
Nov
(368) |
Dec
(248) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(2) |
Feb
(207) |
Mar
(180) |
Apr
(9) |
May
(39) |
Jun
(9) |
Jul
(22) |
Aug
(56) |
Sep
(82) |
Oct
(113) |
Nov
(236) |
Dec
(219) |
2005 |
Jan
(119) |
Feb
(81) |
Mar
(53) |
Apr
(177) |
May
(2) |
Jun
(67) |
Jul
(17) |
Aug
(5) |
Sep
(53) |
Oct
(17) |
Nov
(122) |
Dec
(77) |
2006 |
Jan
(293) |
Feb
(16) |
Mar
(32) |
Apr
(14) |
May
(29) |
Jun
(6) |
Jul
|
Aug
|
Sep
(18) |
Oct
(28) |
Nov
|
Dec
(2) |
2007 |
Jan
(8) |
Feb
(19) |
Mar
(4) |
Apr
(7) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(37) |
Oct
(1) |
Nov
(8) |
Dec
(25) |
2008 |
Jan
(1) |
Feb
(13) |
Mar
(17) |
Apr
(3) |
May
(2) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
(10) |
Nov
(19) |
Dec
(16) |
2009 |
Jan
(6) |
Feb
(9) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Rolf K. <lab...@us...> - 2009-02-19 10:16:14
|
Update of /cvsroot/opengtoolkit/pipe/source/ogpipe.llb In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv20764 Modified Files: OGPIPE - VI TREE.vi OGPIPE Kill Process.vi Log Message: Add an exit code to the Kill Porcess function. Index: OGPIPE - VI TREE.vi =================================================================== RCS file: /cvsroot/opengtoolkit/pipe/source/ogpipe.llb/OGPIPE - VI TREE.vi,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvsFetM5f and /tmp/cvsPYHFnJ differ Index: OGPIPE Kill Process.vi =================================================================== RCS file: /cvsroot/opengtoolkit/pipe/source/ogpipe.llb/OGPIPE Kill Process.vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsVzb6Vi and /tmp/cvsh1h1eM differ |
From: Rolf K. <lab...@us...> - 2009-02-19 10:16:12
|
Update of /cvsroot/opengtoolkit/pipe/tests In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv20728/tests Modified Files: System Command (cmd.exe) Test.vi System Command Pipe Test.vi Log Message: Add an exit code to the Kill Porcess function. Index: System Command (cmd.exe) Test.vi =================================================================== RCS file: /cvsroot/opengtoolkit/pipe/tests/System Command (cmd.exe) Test.vi,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsxuUh4A and /tmp/cvscH0MXB differ Index: System Command Pipe Test.vi =================================================================== RCS file: /cvsroot/opengtoolkit/pipe/tests/System Command Pipe Test.vi,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvsATi8gB and /tmp/cvsvOvIbC differ |
From: Rolf K. <lab...@us...> - 2009-02-19 10:16:09
|
Update of /cvsroot/opengtoolkit/pipe/source In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv20728/source Modified Files: ogpipes.dll Log Message: Add an exit code to the Kill Porcess function. Index: ogpipes.dll =================================================================== RCS file: /cvsroot/opengtoolkit/pipe/source/ogpipes.dll,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 Binary files /tmp/cvs8Z1rdn and /tmp/cvskisWDn differ |
From: Rolf K. <lab...@us...> - 2009-02-19 10:16:08
|
Update of /cvsroot/opengtoolkit/pipe/c_source In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv20728/c_source Modified Files: pipes.c Log Message: Add an exit code to the Kill Porcess function. Index: pipes.c =================================================================== RCS file: /cvsroot/opengtoolkit/pipe/c_source/pipes.c,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** pipes.c 13 Dec 2006 10:17:29 -0000 1.20 --- pipes.c 19 Feb 2009 10:15:56 -0000 1.21 *************** *** 50,54 **** MgErr LibAPI PipeWrite(uInt32 fd, uInt32 offset, uInt32 *bytesWritten, LStrHandle data); ! MgErr LibAPI KillProcess(uInt32 pid); #if defined(MSWin) --- 50,54 ---- MgErr LibAPI PipeWrite(uInt32 fd, uInt32 offset, uInt32 *bytesWritten, LStrHandle data); ! MgErr LibAPI KillProcess(uInt32 pid, int32 exitCode); #if defined(MSWin) *************** *** 229,252 **** if (mode == kReadMode || mode == kReadWriteMode) { ! RestoreStandardIO(STANDARD_IN, &hSaveStdin, hChildStdin, fdIn, err); } if (mode == kWriteMode || mode == kReadWriteMode) { ! RestoreStandardIO(STANDARD_OUT, &hSaveStdout, hChildStdout, fdOut, err); } if (fdErr && *fdErr) { ! RestoreStandardIO(STANDARD_ERR, &hSaveStderr, hChildStderr, fdErr, err); } return err; } ! MgErr LibAPI KillProcess(uInt32 pid) { MgErr err = noErr; #if defined(MSWin) HANDLE handle; #endif --- 229,255 ---- if (mode == kReadMode || mode == kReadWriteMode) { ! RestoreStandardIO(STANDARD_IN, &hSaveStdin, hChildStdin, fdIn, err); } if (mode == kWriteMode || mode == kReadWriteMode) { ! RestoreStandardIO(STANDARD_OUT, &hSaveStdout, hChildStdout, fdOut, err); } if (fdErr && *fdErr) { ! RestoreStandardIO(STANDARD_ERR, &hSaveStderr, hChildStderr, fdErr, err); } return err; } ! MgErr LibAPI KillProcess(uInt32 pid, int32 exitCode) { MgErr err = noErr; #if defined(MSWin) HANDLE handle; + HANDLE hToken; + LUID sedebugnameValue; + TOKEN_PRIVILEGES tkp; #endif *************** *** 255,267 **** #if defined(MSWin) handle = OpenProcess(PROCESS_TERMINATE, FALSE, pid); if (!handle) return Win32ToLVErr(GetLastError()); ! if (!TerminateProcess(handle, 0)) err = Win32ToLVErr(GetLastError()); CloseHandle(handle); #elif defined(Unix) ! kill( pid, SIGKILL ); #else err = mgNotImplementd; --- 258,285 ---- #if defined(MSWin) + + /* try to acquire SeDebugPrivilege */ + if (OpenProcessToken(GetCurrentProcess(), + TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken)) + { + if (LookupPrivilegeValue(NULL, SE_DEBUG_NAME, &sedebugnameValue)) + { + tkp.PrivilegeCount = 1; + tkp.Privileges[0].Luid = sedebugnameValue; + tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED; + AdjustTokenPrivileges(hToken, FALSE, &tkp, sizeof tkp, NULL, NULL); + } + } + CloseHandle(hToken); + handle = OpenProcess(PROCESS_TERMINATE, FALSE, pid); if (!handle) return Win32ToLVErr(GetLastError()); ! if (!TerminateProcess(handle, (UINT)exitCode)) err = Win32ToLVErr(GetLastError()); CloseHandle(handle); #elif defined(Unix) ! kill(pid, SIGKILL); #else err = mgNotImplementd; *************** *** 269,272 **** --- 287,291 ---- return err; } + MgErr LibAPI PipeClose(uInt32 fd) { |
From: Jim K. <jk...@us...> - 2009-02-10 04:28:47
|
Update of /cvsroot/opengtoolkit/dynamicpalette In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv3756 Modified Files: change-log.txt Log Message: Index: change-log.txt =================================================================== RCS file: /cvsroot/opengtoolkit/dynamicpalette/change-log.txt,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** change-log.txt 10 Mar 2007 18:47:33 -0000 1.11 --- change-log.txt 10 Feb 2009 04:28:39 -0000 1.12 *************** *** 1,2 **** --- 1,10 ---- + 0.17 --> 0.18 + ------------------------------------------------------ + Added LabVIEW 9.0 support + + 0.16 --> 0.17 + ------------------------------------------------------ + Added LabVIEW 8.6 support + 0.15 --> 0.16 ------------------------------------------------------ |
From: Jim K. <jk...@us...> - 2009-02-10 04:26:34
|
Update of /cvsroot/opengtoolkit/dynamicpalette In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv3342 Modified Files: ogrsc_dynamicpalette.spec Log Message: updated package URL and license Index: ogrsc_dynamicpalette.spec =================================================================== RCS file: /cvsroot/opengtoolkit/dynamicpalette/ogrsc_dynamicpalette.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ogrsc_dynamicpalette.spec 10 Feb 2009 04:17:24 -0000 1.10 --- ogrsc_dynamicpalette.spec 10 Feb 2009 04:26:30 -0000 1.11 *************** *** 14,18 **** Summary=OpenG Dyanimc Palette View ! License=LGPL Copyright=2003 Jim Kring --- 14,18 ---- Summary=OpenG Dyanimc Palette View ! License=BSD Copyright=2003 Jim Kring *************** *** 24,28 **** Vendor=OpenG.org ! URL=http://opengtoolkit.sourceforge.net/dynamicpalette Packager=Jim Kring <ji...@ji...> --- 24,28 ---- Vendor=OpenG.org ! URL=http://wiki.openg.org/Ogrsc_dynamicpalette Packager=Jim Kring <ji...@ji...> |
From: Jim K. <jk...@us...> - 2009-02-10 04:17:29
|
Update of /cvsroot/opengtoolkit/dynamicpalette In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv2181 Modified Files: ogrsc_dynamicpalette.spec Log Message: added support for LabVIEW 9.0 Index: ogrsc_dynamicpalette.spec =================================================================== RCS file: /cvsroot/opengtoolkit/dynamicpalette/ogrsc_dynamicpalette.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ogrsc_dynamicpalette.spec 18 Feb 2008 21:38:39 -0000 1.9 --- ogrsc_dynamicpalette.spec 10 Feb 2009 04:17:24 -0000 1.10 *************** *** 3,7 **** Name=ogrsc_dynamicpalette ! Version=0.17 Release=1 --- 3,7 ---- Name=ogrsc_dynamicpalette ! Version=0.18 Release=1 *************** *** 31,35 **** [Platform] ! Exclusive_LabVIEW_Version="6.0, 6.1, 7.0, 7.1, 8.0, 8.1, 8.2, 8.5, 8.6" Exclusive_LabVIEW_System=All --- 31,35 ---- [Platform] ! Exclusive_LabVIEW_Version="6.0, 6.1, 7.0, 7.1, 8.0, 8.1, 8.2, 8.5, 8.6, 9.0" Exclusive_LabVIEW_System=All *************** *** 62,66 **** Replace Mode=Always ! Exclusive_LabVIEW_Version= 6.0, 6.1, 7.0, 7.1, 8.0, 8.1, 8.2, 8.5, 8.6 Num Files=1 --- 62,66 ---- Replace Mode=Always ! Exclusive_LabVIEW_Version= 6.0, 6.1, 7.0, 7.1, 8.0, 8.1, 8.2, 8.5, 8.6, 9.0 Num Files=1 *************** *** 78,82 **** Replace Mode=Always ! Exclusive_LabVIEW_Version= 8.0, 8.1, 8.2, 8.5, 8.6 Num Files=1 --- 78,82 ---- Replace Mode=Always ! Exclusive_LabVIEW_Version= 8.0, 8.1, 8.2, 8.5, 8.6, 9.0 Num Files=1 *************** *** 997,1001 **** Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6 Num Files=2 --- 997,1001 ---- Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6, 9.0 Num Files=2 *************** *** 1013,1017 **** Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6 Num Files=136 --- 1013,1017 ---- Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6, 9.0 Num Files=136 *************** *** 1163,1167 **** Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6 Num Files=2 --- 1163,1167 ---- Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6, 9.0 Num Files=2 *************** *** 1184,1188 **** Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6 Exclusive_OS=Windows NT --- 1184,1188 ---- Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6, 9.0 Exclusive_OS=Windows NT *************** *** 1202,1206 **** Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6 Exclusive_OS=Windows NT --- 1202,1206 ---- Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6, 9.0 Exclusive_OS=Windows NT *************** *** 1236,1240 **** Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6 Exclusive_OS=Mac OS --- 1236,1240 ---- Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6, 9.0 Exclusive_OS=Mac OS *************** *** 1254,1258 **** Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6 Exclusive_OS=Mac OS >= 1.0 --- 1254,1258 ---- Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6, 9.0 Exclusive_OS=Mac OS >= 1.0 *************** *** 1285,1289 **** Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6 Exclusive_OS=Linux --- 1285,1289 ---- Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6, 9.0 Exclusive_OS=Linux *************** *** 1303,1307 **** Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6 Exclusive_OS=Linux --- 1303,1307 ---- Replace Mode=Always ! Exclusive_LabVIEW_Version= 7.1, 8.0, 8.1, 8.2, 8.5, 8.6, 9.0 Exclusive_OS=Linux *************** *** 1326,1330 **** Replace Mode=Always ! Exclusive_LabVIEW_Version= 8.0, 8.1, 8.2, 8.5, 8.6 Num Files=1 --- 1326,1330 ---- Replace Mode=Always ! Exclusive_LabVIEW_Version= 8.0, 8.1, 8.2, 8.5, 8.6, 9.0 Num Files=1 *************** *** 1347,1351 **** Replace Mode=Always ! Exclusive_LabVIEW_Version= 8.0, 8.1, 8.2, 8.5, 8.6 Num Files=1 --- 1347,1351 ---- Replace Mode=Always ! Exclusive_LabVIEW_Version= 8.0, 8.1, 8.2, 8.5, 8.6, 9.0 Num Files=1 *************** *** 1375,1379 **** Replace Mode=Always ! Exclusive_LabVIEW_Version= 8.0, 8.1, 8.2, 8.5, 8.6 Num Files=2 --- 1375,1379 ---- Replace Mode=Always ! Exclusive_LabVIEW_Version= 8.0, 8.1, 8.2, 8.5, 8.6, 9.0 Num Files=2 |
From: Rolf K. <lab...@us...> - 2009-02-02 20:22:34
|
Update of /cvsroot/opengtoolkit/portIO/source/ogportio.llb In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv649 Modified Files: PORT IO Install Driver.vi PORT IO Read Byte.vi PORT IO Read Long.vi PORT IO Read Word.vi Log Message: Some cosmetic changes Index: PORT IO Install Driver.vi =================================================================== RCS file: /cvsroot/opengtoolkit/portIO/source/ogportio.llb/PORT IO Install Driver.vi,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvsJh002L and /tmp/cvs9FzKpj differ Index: PORT IO Read Long.vi =================================================================== RCS file: /cvsroot/opengtoolkit/portIO/source/ogportio.llb/PORT IO Read Long.vi,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvsRdoAcP and /tmp/cvsF5UkAm differ Index: PORT IO Read Word.vi =================================================================== RCS file: /cvsroot/opengtoolkit/portIO/source/ogportio.llb/PORT IO Read Word.vi,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvsWztFkP and /tmp/cvsZKOqJm differ Index: PORT IO Read Byte.vi =================================================================== RCS file: /cvsroot/opengtoolkit/portIO/source/ogportio.llb/PORT IO Read Byte.vi,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvs0WwhON and /tmp/cvspP12dl differ |
From: Rolf K. <lab...@us...> - 2009-02-02 20:22:28
|
Update of /cvsroot/opengtoolkit/portIO/build_support In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv626 Modified Files: portio.rev Log Message: Some cosmetic changes Index: portio.rev =================================================================== RCS file: /cvsroot/opengtoolkit/portIO/build_support/portio.rev,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** portio.rev 16 Dec 2005 13:55:59 -0000 1.4 --- portio.rev 2 Feb 2009 20:22:14 -0000 1.5 *************** *** 6,7 **** --- 6,15 ---- Warnings=0 Log_File=/D/Projects/OpenG/opengtoolkit/portIO/built/portio.log + [portio.ogbld] + Version=0.0.0 + Build_Number=7 + Build_Date="11/17/2008 8:42:26 PM" + Status=OK + Warnings=0 + Log_File=/C/Work/OpenG/opengtoolkit/portIO/built/portio.log + |
From: Jim K. <jk...@us...> - 2009-01-02 19:49:34
|
Update of /cvsroot/opengtoolkit/lvzip In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv26406 Added Files: NOTICE - SOURCES MOVED TO SVN.txt Log Message: added notice that sources have been moved. --- NEW FILE: NOTICE - SOURCES MOVED TO SVN.txt --- Moved to SVN here: https://opengtoolkit.svn.sourceforge.net/svnroot/opengtoolkit/trunk/lvzip |
From: Rolf K. <lab...@us...> - 2009-01-02 19:11:10
|
Update of /cvsroot/opengtoolkit/lvzip In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv25008 Modified Files: PostInstall.vi Log Message: Allow building of packages in LabVIEW 6.0 Index: PostInstall.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/PostInstall.vi,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvs6E7hq6 and /tmp/cvsUZKUgh differ |
From: Jim K. <jk...@us...> - 2009-01-02 18:18:43
|
Update of /cvsroot/opengtoolkit/lvzip/build_support In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21409 Modified Files: lvzip.rev Log Message: rebuild final oglib_lvzip-2.4-1.ogp package Index: lvzip.rev =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/build_support/lvzip.rev,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** lvzip.rev 2 Jan 2009 17:13:41 -0000 1.11 --- lvzip.rev 2 Jan 2009 18:18:37 -0000 1.12 *************** *** 1,6 **** [lvzip.ogbld] Version=2.4 ! Build_Number=25 ! Build_Date="1/1/2009 12:52:22 PM" Status=OK Warnings=1 --- 1,6 ---- [lvzip.ogbld] Version=2.4 ! Build_Number=26 ! Build_Date="1/2/2009 9:38:37 AM" Status=OK Warnings=1 |
From: Jim K. <jk...@us...> - 2009-01-02 17:40:39
|
Update of /cvsroot/opengtoolkit/lvzip In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv19450 Modified Files: PostInstall.vi Log Message: fixed linkage to OpenG Delete File Recursive Index: PostInstall.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/PostInstall.vi,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsgu8YTw and /tmp/cvsEAMpCm differ |
From: Jim K. <jk...@us...> - 2009-01-02 17:13:48
|
Update of /cvsroot/opengtoolkit/lvzip/build_support In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv18473 Modified Files: lvzip.rev Log Message: rebuild final oglib_lvzip-2.4-1.ogp package Index: lvzip.rev =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/build_support/lvzip.rev,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** lvzip.rev 24 Oct 2008 19:36:07 -0000 1.10 --- lvzip.rev 2 Jan 2009 17:13:41 -0000 1.11 *************** *** 1,6 **** [lvzip.ogbld] Version=2.4 ! Build_Number=21 ! Build_Date="10/24/2008 11:51:30 AM" Status=OK Warnings=1 --- 1,6 ---- [lvzip.ogbld] Version=2.4 ! Build_Number=25 ! Build_Date="1/1/2009 12:52:22 PM" Status=OK Warnings=1 |
From: Jim K. <jk...@us...> - 2009-01-02 17:13:30
|
Update of /cvsroot/opengtoolkit/lvzip In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv18436 Modified Files: Change-Log.txt Log Message: updated change log Index: Change-Log.txt =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/Change-Log.txt,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Change-Log.txt 23 Dec 2008 09:02:45 -0000 1.12 --- Change-Log.txt 2 Jan 2009 17:13:23 -0000 1.13 *************** *** 71,73 **** 2008-12-23 rk Prepended all public symbols with lvzip_ to avoid name conflicts with the LabVIEW ! VxWorks kernel on cRIO targets. \ No newline at end of file --- 71,79 ---- 2008-12-23 rk Prepended all public symbols with lvzip_ to avoid name conflicts with the LabVIEW ! VxWorks kernel on cRIO targets. ! ! 2008-12-24 jk ! Removed Mac OS 9 shared library and changed to zip format for packaged Mac OS X framework. Still need to update install script VI to handle unzipping via command-line during install. ! ! 2008-12-27 jk ! Changed package URL to http://wiki.openg.org/oglib_lvzip |
From: Rolf K. <lab...@us...> - 2008-12-28 20:14:00
|
Update of /cvsroot/opengtoolkit/lvzip In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11396 Modified Files: lvzip.ogpb Log Message: Removed PreInstall.vi Index: lvzip.ogpb =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/lvzip.ogpb,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** lvzip.ogpb 27 Dec 2008 20:25:23 -0000 1.10 --- lvzip.ogpb 28 Dec 2008 20:13:50 -0000 1.11 *************** *** 22,26 **** [Script VIs] Source Dir="" - PreInstall=PreInstall.vi PostInstall=PostInstall.vi PreUninstall=PreUninstall.vi --- 22,25 ---- |
From: Rolf K. <lab...@us...> - 2008-12-28 20:12:29
|
Update of /cvsroot/opengtoolkit/lvzip/build_support In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11332 Modified Files: Build SPEC file List from Dir.vi Update Spec File List (Proxy).vi Log Message: Removed PreInstall.vi Index: Build SPEC file List from Dir.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/build_support/Build SPEC file List from Dir.vi,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvs3NmB1g and /tmp/cvsqABJVL differ Index: Update Spec File List (Proxy).vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/build_support/Update Spec File List (Proxy).vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsXb4oeh and /tmp/cvsxTfv9L differ |
From: Rolf K. <lab...@us...> - 2008-12-28 20:02:15
|
Update of /cvsroot/opengtoolkit/lvzip In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11034 Modified Files: lvzip.spec Log Message: Removed PreInstall.vi Index: lvzip.spec =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/lvzip.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** lvzip.spec 27 Dec 2008 20:25:24 -0000 1.31 --- lvzip.spec 28 Dec 2008 20:02:05 -0000 1.32 *************** *** 16,20 **** [Script VIs] - PreInstall=PreInstall.vi PostInstall=PostInstall.vi PreUninstall=PreUninstall.vi --- 16,19 ---- |
From: Jim K. <jk...@us...> - 2008-12-27 20:25:29
|
Update of /cvsroot/opengtoolkit/lvzip In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23625 Modified Files: lvzip.ogpb lvzip.spec Log Message: Changed package URL=http://wiki.openg.org/oglib_lvzip Index: lvzip.spec =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/lvzip.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** lvzip.spec 24 Dec 2008 01:10:24 -0000 1.30 --- lvzip.spec 27 Dec 2008 20:25:24 -0000 1.31 *************** *** 12,16 **** Icon=lvzip.bmp Vendor=OpenG.org ! URL=http://openg.org/lvzip Packager="Jim Kring <ji...@ji...>" --- 12,16 ---- Icon=lvzip.bmp Vendor=OpenG.org ! URL=http://wiki.openg.org/oglib_lvzip Packager="Jim Kring <ji...@ji...>" Index: lvzip.ogpb =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/lvzip.ogpb,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** lvzip.ogpb 24 Dec 2008 01:10:24 -0000 1.9 --- lvzip.ogpb 27 Dec 2008 20:25:23 -0000 1.10 *************** *** 12,16 **** Icon=lvzip.bmp Vendor=OpenG.org ! URL=http://openg.org/lvzip Packager="Jim Kring <ji...@ji...>" --- 12,16 ---- Icon=lvzip.bmp Vendor=OpenG.org ! URL=http://wiki.openg.org/oglib_lvzip Packager="Jim Kring <ji...@ji...>" |
From: Jim K. <jk...@us...> - 2008-12-24 18:05:46
|
Update of /cvsroot/opengtoolkit/lvzip/source In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv10566/source Modified Files: lvzlib.framework.zip Log Message: rebuilt Mac OS X shared library, after Rolf added the missing zalias.h file. Index: lvzlib.framework.zip =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzlib.framework.zip,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsePdaX5 and /tmp/cvs77x8sa differ |
From: Rolf K. <lab...@us...> - 2008-12-24 08:11:47
|
Update of /cvsroot/opengtoolkit/lvzip/c_source In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv10106 Added Files: zalias.h Log Message: Rename all symbols in the library by prepending lvzip_ to them to avoid name conflicts with already defined functions in the cRIO VxWorks kernel. --- NEW FILE: zalias.h --- #define _dist_code lvzip__dist_code #define _length_code lvzip__length_code #define _tr_align lvzip__tr_align #define _tr_flush_block lvzip__tr_flush_block #define _tr_init lvzip__tr_init #define _tr_stored_block lvzip__tr_stored_block #define _tr_tally lvzip__tr_tally #define adler32 lvzip_adler32 #define adler32_combine lvzip_adler32_combine #define compress lvzip_compress #define compress2 lvzip_compress2 #define compressBound lvzip_compressBound #define crc32 lvzip_crc32 #define crc32_combine lvzip_crc32_combine #define deflate lvzip_deflate #define deflate_copyright lvzip_deflate_copyright #define deflateBound lvzip_deflateBound #define deflateCopy lvzip_deflateCopy #define deflateEnd lvzip_deflateEnd #define deflateInit_ lvzip_deflateInit_ #define deflateInit2_ lvzip_deflateInit2_ #define deflateParams lvzip_deflateParams #define deflatePrime lvzip_deflatePrime #define deflateReset lvzip_deflateReset #define deflateSetDictionary lvzip_deflateSetDictionary #define deflateSetHeader lvzip_deflateSetHeader #define deflateTune lvzip_deflateTune #define get_crc_table lvzip_get_crc_table #define inflate lvzip_inflate #define inflate_copyright lvzip_inflate_copyright #define inflate_fast lvzip_inflate_fast #define inflate_table lvzip_inflate_table #define inflateCopy lvzip_inflateCopy #define inflateEnd lvzip_inflateEnd #define inflateGetHeader lvzip_inflateGetHeader #define inflateInit_ lvzip_inflateInit_ #define inflateInit2_ lvzip_inflateInit2_ #define inflatePrime lvzip_inflatePrime #define inflateReset lvzip_inflateReset #define inflateSetDictionary lvzip_inflateSetDictionary #define inflateSync lvzip_inflateSync #define inflateSyncPoint lvzip_inflateSyncPoint #define uncompress lvzip_uncompress #define z_errmsg lvzip_z_errmsg #define zcalloc lvzip_zcalloc #define zcfree lvzip_zcfree #define zError lvzip_zError #define zlibCompileFlags lvzip_zlibCompileFlags #define zlibVersion lvzip_zlibVersion #define unzClose lvzip_unzClose #define unzCloseCurrentFile lvzip_unzCloseCurrentFile #define unzGetCurrentFileInfo lvzip_unzGetCurrentFileInfo #define unzGetFilePos lvzip_unzGetFilePos #define unzGetGlobalComment lvzip_unzGetGlobalComment #define unzGetGlobalInfo lvzip_unzGetGlobalInfo #define unzGetLocalExtrafield lvzip_unzGetLocalExtrafield #define unzGoToFilePos lvzip_unzGoToFilePos #define unzGoToFirstFile lvzip_unzGoToFirstFile #define unzGoToNextFile lvzip_unzGoToNextFile #define unzLocateFile lvzip_unzLocateFile #define unzOpen lvzip_unzOpen #define unzOpen2 lvzip_unzOpen2 #define unzOpenCurrentFile lvzip_unzOpenCurrentFile #define unzOpenCurrentFile2 lvzip_unzOpenCurrentFile2 #define unzOpenCurrentFile3 lvzip_unzOpenCurrentFile3 #define unzOpenCurrentFilePassword lvzip_unzOpenCurrentFilePassword #define unzReadCurrentFile lvzip_unzReadCurrentFile #define unzRepair lvzip_unzRepair #define unzStringFileNameCompare lvzip_unzStringFileNameCompare #define unztell lvzip_unztell #define unzeof lvzip_unzeof #define zipClose lvzip_zipClose #define zipClose2 lvzip_zipClose2 #define zipCloseFileInZip lvzip_zipCloseFileInZip #define zipCloseFileInZipRaw lvzip_zipCloseFileInZipRaw #define zipOpen lvzip_zipOpen #define zipOpen2 lvzip_zipOpen2 #define zipOpenNewFileInZip lvzip_zipOpenNewFileInZip #define zipOpenNewFileInZip2 lvzip_zipOpenNewFileInZip2 #define zipOpenNewFileInZip3 lvzip_zipOpenNewFileInZip3 #define zipWriteInFileInZip lvzip_zipWriteInFileInZip |
From: Jim K. <jk...@us...> - 2008-12-24 01:25:44
|
Update of /cvsroot/opengtoolkit/lvzip In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv30142 Modified Files: PostInstall.vi Log Message: Updated post-install script VI to handle unzipping Mac OS X shared library via command-line after install. Index: PostInstall.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/PostInstall.vi,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsF4t2PY and /tmp/cvsbBFXne differ |
From: Jim K. <jk...@us...> - 2008-12-24 01:10:32
|
Update of /cvsroot/opengtoolkit/lvzip/source In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv28799/source Added Files: lvzlib.framework.zip Removed Files: lvzlib.framework.sea.bin lvzlib.shlb.sea.bin Log Message: Removed Mac OS 9 shared library and changed to zip format for packaged Mac OS X framework. Still need to update install script VI to handle unzipping via command-line during install. --- NEW FILE: lvzlib.framework.zip --- (This appears to be a binary file; contents omitted.) --- lvzlib.framework.sea.bin DELETED --- --- lvzlib.shlb.sea.bin DELETED --- |
From: Jim K. <jk...@us...> - 2008-12-24 01:10:30
|
Update of /cvsroot/opengtoolkit/lvzip In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv28799 Modified Files: lvzip.spec lvzip.ogpb Log Message: Removed Mac OS 9 shared library and changed to zip format for packaged Mac OS X framework. Still need to update install script VI to handle unzipping via command-line during install. Index: lvzip.spec =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/lvzip.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** lvzip.spec 16 Nov 2008 08:39:07 -0000 1.29 --- lvzip.spec 24 Dec 2008 01:10:24 -0000 1.30 *************** *** 30,34 **** [Files] ! Num File Groups=9 [File Group 0] --- 30,34 ---- [Files] ! Num File Groups=8 [File Group 0] *************** *** 138,155 **** Source Dir=built/lvzip Target Dir=<user.lib>/_OpenG.lib/lvzip - Exclusive_OS=MacOS<10 - Replace Mode=Never - Num Files=1 - File 0=lvzlib.shlb.sea.bin - - [File Group 4] - Source Dir=built/lvzip - Target Dir=<user.lib>/_OpenG.lib/lvzip Exclusive_OS=MacOS>=10 Replace Mode=Never Num Files=1 ! File 0=lvzlib.framework.sea.bin ! [File Group 5] Source Dir=built/lvzip/vxWorks82 Target Dir=<OpenG.lib>/lvzip --- 138,147 ---- Source Dir=built/lvzip Target Dir=<user.lib>/_OpenG.lib/lvzip Exclusive_OS=MacOS>=10 Replace Mode=Never Num Files=1 ! File 0=lvzlib.framework.zip ! [File Group 4] Source Dir=built/lvzip/vxWorks82 Target Dir=<OpenG.lib>/lvzip *************** *** 158,162 **** File 0=lvzlib.out ! [File Group 6] Source Dir=built/lvzip/vxWorks85 Target Dir=<OpenG.lib>/lvzip --- 150,154 ---- File 0=lvzlib.out ! [File Group 5] Source Dir=built/lvzip/vxWorks85 Target Dir=<OpenG.lib>/lvzip *************** *** 165,169 **** File 0=lvzlib.out ! [File Group 7] Source Dir="Dynamic Palette MNUs" Target Dir="<user.lib>/_dynamicpalette_dirs/file" --- 157,161 ---- File 0=lvzlib.out ! [File Group 6] Source Dir="Dynamic Palette MNUs" Target Dir="<user.lib>/_dynamicpalette_dirs/file" *************** *** 172,176 **** File 0=oglib_lvzip.mnu ! [File Group 8] Source Dir="Dynamic Palette MNUs" Target Dir="<user.lib>/_dynamicpalette_dirs/OpenG" --- 164,168 ---- File 0=oglib_lvzip.mnu ! [File Group 7] Source Dir="Dynamic Palette MNUs" Target Dir="<user.lib>/_dynamicpalette_dirs/OpenG" Index: lvzip.ogpb =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/lvzip.ogpb,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** lvzip.ogpb 28 Oct 2008 19:35:25 -0000 1.8 --- lvzip.ogpb 24 Dec 2008 01:10:24 -0000 1.9 *************** *** 36,40 **** [Files] ! Num File Groups=11 [File Group 0] --- 36,40 ---- [Files] ! Num File Groups=10 [File Group 0] *************** *** 82,98 **** Target Dir=<OpenG.lib>/lvzip Replace Mode=Always - Exclusive_OS="Mac OS<10" - Num Files=1 - File 0=lvzlib.shlb.sea.bin - - [File Group 6] - Source Dir=built/lvzip - Target Dir=<OpenG.lib>/lvzip - Replace Mode=Always Exclusive_OS="Mac OS>=10" Num Files=1 ! File 0=lvzlib.framework.sea.bin ! [File Group 7] Source Dir=built/lvzip/vxWorks82 Target Dir=<OpenG.lib>/lvzip --- 82,90 ---- Target Dir=<OpenG.lib>/lvzip Replace Mode=Always Exclusive_OS="Mac OS>=10" Num Files=1 ! File 0=lvzlib.framework.zip ! [File Group 6] Source Dir=built/lvzip/vxWorks82 Target Dir=<OpenG.lib>/lvzip *************** *** 101,105 **** File 0=lvzlib.out ! [File Group 8] Source Dir=built/lvzip/vxWorks85 Target Dir=<OpenG.lib>/lvzip --- 93,97 ---- File 0=lvzlib.out ! [File Group 7] Source Dir=built/lvzip/vxWorks85 Target Dir=<OpenG.lib>/lvzip *************** *** 108,112 **** File 0=lvzlib.out ! [File Group 9] Source Dir="Dynamic Palette MNUs" Target Dir=<user.lib>/_dynamicpalette_dirs/file --- 100,104 ---- File 0=lvzlib.out ! [File Group 8] Source Dir="Dynamic Palette MNUs" Target Dir=<user.lib>/_dynamicpalette_dirs/file *************** *** 115,119 **** File 0=oglib_lvzip.mnu ! [File Group 10] Source Dir="Dynamic Palette MNUs" Target Dir=<user.lib>/_dynamicpalette_dirs/OpenG --- 107,111 ---- File 0=oglib_lvzip.mnu ! [File Group 9] Source Dir="Dynamic Palette MNUs" Target Dir=<user.lib>/_dynamicpalette_dirs/OpenG |
From: Rolf K. <lab...@us...> - 2008-12-23 09:02:51
|
Update of /cvsroot/opengtoolkit/lvzip In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23611 Modified Files: Change-Log.txt Log Message: Rename all symbols in the library by prepending lvzip_ to them to avoid name conflicts with already defined functions in the cRIO VxWorks kernel. Index: Change-Log.txt =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/Change-Log.txt,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Change-Log.txt 28 Oct 2008 05:53:02 -0000 1.11 --- Change-Log.txt 23 Dec 2008 09:02:45 -0000 1.12 *************** *** 68,69 **** --- 68,73 ---- the intermediate archive file. by creating a temporary copy to add to the archive. + + 2008-12-23 rk + Prepended all public symbols with lvzip_ to avoid name conflicts with the LabVIEW + VxWorks kernel on cRIO targets. \ No newline at end of file |