Closed
Bug 538990
Opened 15 years ago
Closed 15 years ago
add a resource manifest to mozilla-runtime.exe
Categories
(Core :: IPC, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: jimm, Assigned: jimm)
References
Details
Attachments
(1 file, 1 obsolete file)
|
950 bytes,
patch
|
ted
:
review+
|
Details | Diff | Splinter Review |
Spin off from bug 538918 - some plugins generate common controls based UI (like Flash's print dialog) so we need to add a common controls manifest to the exe to enable newer windows UI.
Attachment #421059 -
Flags: review?(ted.mielczarek)
Comment 1•15 years ago
|
||
Comment on attachment 421059 [details] [diff] [review]
resource patch
>diff --git a/ipc/app/Makefile.in b/ipc/app/Makefile.in
>--- a/ipc/app/Makefile.in
>+++ b/ipc/app/Makefile.in
>@@ -65,16 +65,20 @@ else
> MOZ_WINCONSOLE = 0
> endif
> endif
>
> # This switches $(INSTALL) to copy mode, like $(SYSINSTALL), so things that
> # shouldn't get 755 perms need $(IFLAGS1) for either way of calling nsinstall.
> NSDISTMODE = copy
>
>+ifeq ($(OS_ARCH),WINNT)
>+RCINCLUDE = resource.rc
>+endif
>+
I don't think this should be necessary, our build system should automatically insert the manifest after linking:
http://mxr.mozilla.org/mozilla-central/source/config/rules.mk#1006
Did you find that to not be the case?
Attachment #421059 -
Flags: review?(ted.mielczarek) → review-
| Assignee | ||
Comment 2•15 years ago
|
||
(In reply to comment #1)
> >+ifeq ($(OS_ARCH),WINNT)
> >+RCINCLUDE = resource.rc
> >+endif
> >+
>
> I don't think this should be necessary, our build system should automatically
> insert the manifest after linking:
> http://mxr.mozilla.org/mozilla-central/source/config/rules.mk#1006
>
> Did you find that to not be the case?
I had no idea this was built in to build, let me test to see.
| Assignee | ||
Comment 3•15 years ago
|
||
That works too!
Attachment #421059 -
Attachment is obsolete: true
Attachment #421289 -
Flags: review?(ted.mielczarek)
Comment 4•15 years ago
|
||
Comment on attachment 421289 [details] [diff] [review]
mozilla-runtime manifest
You'll want to include the trustInfo section like the firefox.exe.manifest has:
http://mxr.mozilla.org/mozilla-central/source/browser/app/firefox.exe.manifest
Apparently we can wind up with folder virtualization without that (see bug 378598).
r+ with that added.
Attachment #421289 -
Flags: review?(ted.mielczarek) → review+
| Assignee | ||
Comment 5•15 years ago
|
||
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•