Changeset 577
- Timestamp:
- Sep 18, 2013, 8:42:17 PM (12 years ago)
- Location:
- GPL/trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/drv32/startup.asm
r547 r577 32 32 include os2.inc 33 33 34 34 include segments.inc 35 35 include startup.inc 36 36 -
GPL/trunk/include/watcom32.mak
r493 r577 13 13 14 14 !if "$(DEBUG)" == "1" 15 CFLAGS = -dDEBUG -bt=os2v2 -e60 -hc - d2 -5r -omlinear -s -w4 -ze -zdp -zl -zq -nt=CODE32 -zff -zgf15 CFLAGS = -dDEBUG -bt=os2v2 -e60 -hc -5r -omlinear -s -w4 -ze -zdp -zl -zq -nt=CODE32 -zff -zgf 16 16 CPPFLAGS= -xd 17 17 ASFLAGS = -D:DEBUG -Mb -Li -Sv:M510 -
GPL/trunk/lib32/irq.c
r551 r577 83 83 84 84 if ( pSlot ) { 85 hRes = NULL;85 hRes = 0; 86 86 if (RMRequestIRQ(irq, (ulSharedFlag & SA_SHIRQ) != 0, &hRes) == FALSE) { 87 87 rprintf(("RMRequestIRQ failed for irq %d", irq)); … … 129 129 pSlot->irqNo = 0; 130 130 RMDeallocateIRQ(pSlot->hRes); 131 pSlot->hRes = NULL;131 pSlot->hRes = 0; 132 132 // pSlot->fEOI = 0; 133 133 } -
GPL/trunk/lib32/pci.c
r549 r577 972 972 } 973 973 974 #ifdef ACPI 974 975 void PciAdjustInterrupts() { 975 976 int i; … … 999 1000 } /* for loop */ 1000 1001 } 1002 #endif -
GPL/trunk/tools/mkversion.cmd
r322 r577 76 76 projVers = versionIn'-'fixpack 77 77 78 projVers2 = major||minor|| LEFT(projVersion, 1)78 projVers2 = major||minor||projVersion 79 79 80 80 LINEIN(AlsaVersHdr,,0) … … 86 86 opLoc = POS('#define CONFIG_SND_VERSION', tmpLine) 87 87 if opLoc > 0 then 88 AlsaLevel = STRIP(RIGHT(tmpLine, ( LENGTH(tmpLine) - (POS('"', tmpLine)))),,'"') 88 AlsaLevel = STRIP(RIGHT(tmpLine, ( LENGTH(tmpLine) - (POS('"', tmpLine)))),,'"') 89 89 end 90 90 91 91 SAY 'Alsalevel = ' AlsaLevel 92 92 93 SET "BUILDLEVEL=@#"ProjVendor":" major"."minor"#@##1## "ProjString":"alsalevel":::"ProjVersion"::"Fixpack"@@"productname93 SET "BUILDLEVEL=@#"ProjVendor":"versionIn"#@##1## "ProjString":"alsalevel":::"ProjVersion"::"Fixpack"@@"productname 94 94 95 95 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs' … … 103 103 call lineout versMak, '#' 104 104 call lineout versMak, '# Current build level for File Versioning' 105 call lineout versMak, '#' 105 call lineout versMak, '#' 106 106 call lineout versMak, '# Generated by mkversion.cmd, do NOT edit !' 107 107 call lineout versMak, '#' -
GPL/trunk/uniaud.inc
r551 r577 7 7 # BUILDVERSION must be 3 parts, and only numbers like 5.44.108 8 8 # It is best that 2'nd number is always 2 digits, eg at least 10 9 BUILDVERSION = 1. 9.269 BUILDVERSION = 1.09.26 10 10 11 11 # Fixpack version
Note:
See TracChangeset
for help on using the changeset viewer.