Changeset 235
- Timestamp:
- Aug 8, 2007, 7:31:43 AM (18 years ago)
- Location:
- GPL/trunk
- Files:
-
- 2 added
- 2 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/!m_kee.cmd
r86 r235 1 1 @echo off 2 2 set KEE=1 3 call tools\mkversion include\version.h include\version.mak3 call tools\mkversion 4 4 wmake -ms -f makefile.os2 5 5 set KEE= -
GPL/trunk/!m_kee_debug.cmd
r86 r235 1 1 @echo off 2 2 set KEE=1 3 call tools\mkversion include\version.h include\version.mak3 call tools\mkversion 4 4 wmake -ms -f makefile.os2 DEBUG=1 5 5 set KEE= -
GPL/trunk/!m_w4.cmd
r86 r235 1 1 @echo off 2 2 set KEE=0 3 call tools\mkversion include\version.h include\version.mak3 call tools\mkversion 4 4 wmake -ms -f makefile.os2 5 5 set KEE= -
GPL/trunk/drv32/dispatch.c
r84 r235 214 214 } 215 215 pData = (ULONG *) linData; 216 (*pData) = UNIAUD_VERSION;216 (*pData) = RM_VERSION; 217 217 218 218 } break; -
GPL/trunk/drv32/init.c
r86 r235 48 48 const char ERR_INIT[] = "Initialization failed\r\r\n"; 49 49 const char ERR_NAMES[] = "Query names failed\r\r\n"; 50 const char szALSA[] = "\r\n \r\nOS/2 Universal Audio Core Driver v"ALSA_VERSION"\r\n";50 const char szALSA[] = "\r\n"PRODUCT_NAME" v"UNIAUD_VERSION"\r\nBased on ALSA "ALSA_VERSION"\r\n"; 51 51 52 52 const char szCopyRight1[]= "Copyright 2000-2002 InnoTek Systemberatung GmbH\r\n"; 53 const char szCopyRight2[]= "Copyright 2000-200 2The ALSA Project\r\n\r\n";54 const char szCopyRight3[]= "Copyright 2005-200 6Netlabs http://www.netlabs.org\r\n";53 const char szCopyRight2[]= "Copyright 2000-2007 The ALSA Project\r\n\r\n"; 54 const char szCopyRight3[]= "Copyright 2005-2007 Netlabs http://www.netlabs.org\r\n"; 55 55 //const char szCopyRight3[]= "Maintained by http://os2.kiev.ua/en/uniaud.php\r\n\r\n"; 56 56 … … 217 217 218 218 if(fVerbose) { 219 WriteString(szCopyRight3, sizeof(szCopyRight3)-1); 219 220 WriteString(szALSA, sizeof(szALSA)-1); 220 WriteString(szCopyRight1, sizeof(szCopyRight1)-1);221 WriteString(szCopyRight3, sizeof(szCopyRight3)-1);222 221 WriteString(szCopyRight2, sizeof(szCopyRight2)-1); 223 222 } -
GPL/trunk/drv32/makefile.os2
r228 r235 89 89 @%write $^@ option map=$(WMAPNAME) 90 90 !if "$(KEE)" == "1" 91 @%write $^@ option description ' @$#$(BLDLVL_VENDOR):$(BLDLVL_REVISION)$#@$#$#1$#$# $(BLDLVL_DATETIME) $(BLDLVL_MACHINE)::::$(BLDLVL_FILEVER)::@@$(BLDLVL_PRODUCT) (KEE)'91 @%write $^@ option description '$(%BUILDLEVEL) (KEE)' 92 92 !else 93 @%write $^@ option description ' @$#$(BLDLVL_VENDOR):$(BLDLVL_REVISION)$#@$#$#1$#$# $(BLDLVL_DATETIME) $(BLDLVL_MACHINE)::::$(BLDLVL_FILEVER)::@@$(BLDLVL_PRODUCT) (W4)'93 @%write $^@ option description '$(%BUILDLEVEL) (W4)' 94 94 !endif 95 95 @%write $^@ name $(OBJDIR)\$(TARGET).sys … … 111 111 $(OBJDIR)\$(TARGET).sys: $(LNKFILE) $(FILES) $(LIBS) 112 112 !if "$(KEE)" == "1" 113 @%write $(DEFFILE) description ' @$#$(BLDLVL_VENDOR):$(BLDLVL_REVISION)$#@$#$#1$#$# $(BLDLVL_DATETIME) $(BLDLVL_MACHINE)::::$(BLDLVL_FILEVER)::@@$(BLDLVL_PRODUCT) (KEE)'113 @%write $(DEFFILE) description '$(%BUILDLEVEL) (KEE)' 114 114 !else 115 @%write $(DEFFILE) description ' @$#$(BLDLVL_VENDOR):$(BLDLVL_REVISION)$#@$#$#1$#$# $(BLDLVL_DATETIME) $(BLDLVL_MACHINE)::::$(BLDLVL_FILEVER)::@@$(BLDLVL_PRODUCT) (W4)'115 @%write $(DEFFILE) description '$(%BUILDLEVEL) (W4)' 116 116 !endif 117 117 … … 121 121 !if "$(KEE)" == "1" 122 122 # copy $(OBJDIR)\$(TARGET).sys $(ALSA_BIN)\$(TARGET)kee.sys 123 123 124 124 copy $(OBJDIR)\$(TARGET).sys $(ALSA_BIN_)\$(TARGET)kee.sys 125 125 !else
Note:
See TracChangeset
for help on using the changeset viewer.