Closed
Bug 280
Opened 26 years ago
Closed 7 years ago
Version Checking regarding uuid2.dll
Categories
(MozillaClassic Graveyard :: Windows FE, defect, P3)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: yardley, Assigned: blythe)
References
Details
Created by (yardley@uiuc.edu) on Tuesday, April 28, 1998 12:08:31 PM PDT
Additional Details :
The version (vd version) checking in the makefile.win under
\ns\cmd\winfe\prefs\nsdlg checks for version 1100. I have
vc++ 5.0 professional with the latest service pack, and it
has a different version, thus the linking is messed up
because uuid[2,3].lib have been consoladated to uuid.lib in
ver 5.0.
Updated by (yardley@uiuc.edu) on Tuesday, April 28, 1998 12:12:24 PM PDT
Additional Details :
\ns\cmd\winfe\prefs\nsprefui\src as well, and I am still checking for more... I
imagine there are more
Updated by (yardley@uiuc.edu) on Tuesday, April 28, 1998 12:18:17 PM PDT
Additional Details :
also: (still building more - will update later)
\ns\cmd\winfe\prefs\brpref\src
\ns\cmd\winfe\prefs\edpref\src
Updated by (yardley@uiuc.edu) on Tuesday, April 28, 1998 1:51:19 PM PDT
Additional Details :
last one:
\ns\cmd\winfe\mkfiles32\mozilla.mak
specific line:
!if "$(_MSC_VER)" != "1100"
LLIBS32 = $(LLIBS32) uuid2.lib
!endif
maybe change that to:
!if "$(_MSC_VER)" >= "1100"
Updated by (yardley@uiuc.edu) on Tuesday, April 28, 1998 1:54:58 PM PDT
Additional Details :
my bad... make that:
!if "$(_MSC_VER)" <= "1100"
LLIBS32 = $(LLIBS32) uuid2.lib
!endif
Updated by Brian Ostrom (briano@netscape.com) on Monday, July 6, 1998 8:28:46 PM PDT
Additional Details :
Reassigning to Garrett.
Updated by Garrett Arch Blythe (blythe@netscape.com) on Tuesday, July 7, 1998 2:58:23 PM PDT
Additional Details :
Sure, we can do that.
Note that _MSC_VER is set manually by you in your environment.
You can set it to 1100 if you need to just to avoid linking this.
Send a diff to the patches group, and we can take it, otherwise just set your
environment to 1100 and avoid the problem.
garrett
Comment 2•24 years ago
|
||
mid-air collision ? / bugzilla cleanup
Reopening (current State: resolved and no resolution)
Status: RESOLVED → REOPENED
Comment 3•24 years ago
|
||
marking fixed
Status: REOPENED → RESOLVED
Closed: 24 years ago
Resolution: --- → FIXED
Comment 4•23 years ago
|
||
The problem is with Flash
Ashluecker have added a new function inside QuiZino where the user is told that
their score has been reset because it was over 2 billion but is kept in our
database
Comment 6•7 years ago
|
||
Commits pushed to master at https://github.com/taskcluster/taskcluster-worker
https://github.com/taskcluster/taskcluster-worker/commit/3d23b11073caa60886d0bda76135ec79c247c845
Fix issue #280 - Add count of TaskSinceBoot to logprefix
https://github.com/taskcluster/taskcluster-worker/commit/57e56ea967299dd376da2b3536af67467ba0bc57
Merge pull request #286 from taskcluster/logprefix-task-count
Fix issue #280 - Add count of TasksSinceBoot to logprefix
Status: VERIFIED → RESOLVED
Closed: 24 years ago → 7 years ago
You need to log in
before you can comment on or make changes to this bug.
Description
•