Changeset 679
- Timestamp:
- Jan 24, 2012, 4:12:24 PM (14 years ago)
- Location:
- branches/client-2.1/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/client-2.1/src/help/changelog.txt
r624 r679 698 698 699 699 #ifndef txt 700 :eul. 701 #endif 702 <$UL>2.1.1 GA: 703 #ifndef txt 704 :ul compact. 705 #endif 706 #ifdef en 707 <$LI> update to Samba 3.3.16 client code 708 <$LI> use libc064.dll instead libc064x.dll 709 #endif 710 #ifdef fr 711 <$LI> Passage au code du client Samba v3.3.16. 712 <$LI> utiliser libc064.dll lieu de libc064x.dll 713 #endif 714 #ifdef de 715 <$LI> Update auf Samba 3.3.16 Client-Code 716 <$LI> Benutze libc064.dll statt libc064x.dll 717 #endif 718 719 #ifndef txt 700 720 :eul.:eul. 701 721 #endif -
branches/client-2.1/src/help/readme_fr.txt
r550 r679 251 251 252 252 Traduction franaise : Guillaume Gay <guillaume.gay@bigfoot.com> 253 Version : 201 0-01-11253 Version : 2012-01-21 -
branches/client-2.1/src/nversion.tpl
r552 r679 3 3 #define __nversion__H 4 4 5 #define NDPSMB_VERSION 6 #define NDPSMB_BUILD 7 #define NDPSMB_INSTALL 8 #define VERSION 9 #define BUILD 10 #define OS 11 #define ND 5 #define NDPSMB_VERSION _VERSION_ 6 #define NDPSMB_BUILD _BUILD_ 7 #define NDPSMB_INSTALL _WPIVERSION_ 8 #define VERSION "_VERSION_" 9 #define BUILD "_BUILD_" 10 #define OS eCS (OS/2) 11 #define ND NetDrive 12 12 13 13 #endif // __nversion__H -
branches/client-2.1/src/resources/ndpsmb.tpl
r529 r679 4 4 <HEAD> 5 5 <TITLE>Samba Plugin installer</TITLE> 6 7 <REXX NAME=ChkREQ> 8 call RxFuncAdd 'SysLoadFuncs', 'REXXUTIL', 'SysLoadFuncs' 9 call SysLoadFuncs 10 /* based upon work from Dmitry Kuminow */ 11 parse arg aFile " Package:" Package 12 name = filespec('N', aFile) 13 ext = translate(right(name, 4)) 14 15 select 16 when (ext == '.DLL') then do 17 config_sys = SysBootDrive()'\CONFIG.SYS' 18 do while lines(config_sys) 19 line = strip(linein(config_sys)) 20 if (left(line, 8) == 'LIBPATH=') then do 21 search_path = substr(line, 9) 22 leave 23 end 24 end 25 call lineout config_sys 26 search_path = SysQueryExtLibPath('B')';'search_path';'SysQueryExtLibPath('E') 27 end 28 when (ext == '.EXE') then search_path = value('PATH',, 'OS2ENVIRONMENT') 29 when (ext == '.HLP') then search_path = value('BOOKSHELF',, 'OS2ENVIRONMENT') 30 otherwise search_path = '' 31 end 32 33 if (search_path \= '') then do 34 rc = WirexxPutEnv('CHKREQ_SEARCH_PATH', search_path) 35 real_file = SysSearchPath('CHKREQ_SEARCH_PATH', name) 36 end 37 else real_file = "" 38 39 /* generate the message string to return */ 40 if real_file <> "" then MsgStr = ""; else MsgStr = 'REQUIRES="' || strip(Package) || '"' 41 return MsgStr 42 </REXX> 6 43 7 44 <REXX NAME=chkndenv> … … 75 112 =("nls") 76 113 =("chkndenv") 114 =("ChkREQ LIBC064.DLL Package:netlabs.org\kLIBC\LIBC 0.6 Runtime\0\6\4") 115 =("ChkREQ GCC442.DLL Package:netlabs.org\GCC4\Core\1\2\0") 116 =("ChkREQ STDCPP.DLL Package:netlabs.org\GCC4\Core\1\2\1") 77 117 TITLE="Samba Client Plugin for Netdrive and EVFS" 78 118 TARGET="$(NDFS)\InstallPackages\ndpsmb"
Note:
See TracChangeset
for help on using the changeset viewer.