Closed
Bug 1049935
Opened 11 years ago
Closed 11 years ago
Port |Bug 1045783 - move OS_LIBS += $(call EXPAND_LIBNAME,...) calls to moz.build| to comm-central
Categories
(MailNews Core :: Build Config, defect)
MailNews Core
Build Config
Tracking
(thunderbird34 fixed)
RESOLVED
FIXED
Thunderbird 34.0
Tracking | Status | |
---|---|---|
thunderbird34 | --- | fixed |
People
(Reporter: iannbugzilla, Assigned: iannbugzilla)
References
Details
Attachments
(1 file, 3 obsolete files)
15.02 KB,
patch
|
jcranmer
:
review+
|
Details | Diff | Splinter Review |
Now that the fix to Bug 1045783 has landed on m-c, should probably port it to c-c.
This patch also fixes the incorrect indentation for xpcomglue in mail/app/moz.build
Attachment #8468848 -
Flags: review?(Pidgeot18)
Comment 1•11 years ago
|
||
Comment on attachment 8468848 [details] [diff] [review]
Port OS_LIBS moving to moz.build
Review of attachment 8468848 [details] [diff] [review]:
-----------------------------------------------------------------
You've negated the case of two of the zlib additions, which concerns me--I want to double check that the correct result builds on Windows before giving r+. Of course, Windows is broken for other reasons (relating to DEFFILE I think).
::: mailnews/build/moz.build
@@ +28,5 @@
> 'js',
> ]
>
> +if CONFIG['OS_ARCH'] == 'WINNT':
> + OS_LIBS += CONFIG['MOZ_ZLIB_LIBS']
This case happens if CONFIG['OS_ARCH'] != 'WINNT'
::: mailnews/import/build/moz.build
@@ +56,5 @@
> if CONFIG['MOZ_MAPI_SUPPORT']:
> LOCAL_INCLUDES += [
> '../outlook/src',
> ]
> + OS_LIBS += CONFIG['MOZ_ZLIB_LIBS']
Again, this is CONFIG['OS_ARCH'] != 'WINNT'
Attachment #8468848 -
Flags: review?(Pidgeot18) → feedback+
Interesting that it still built and ran okay on linux even without those libs.
Attachment #8470227 -
Flags: review?(Pidgeot18)
Rebased on top of patch from Bug 1051619
Attachment #8468848 -
Attachment is obsolete: true
Attachment #8470227 -
Attachment is obsolete: true
Attachment #8470227 -
Flags: review?(Pidgeot18)
Attachment #8471067 -
Flags: review?(Pidgeot18)
I missed the -framework changes that were part of bug 1045783
Attachment #8471067 -
Attachment is obsolete: true
Attachment #8471067 -
Flags: review?(Pidgeot18)
Attachment #8471122 -
Flags: review?(Pidgeot18)
Updated•11 years ago
|
Attachment #8471122 -
Flags: review?(Pidgeot18) → review+
Comment on attachment 8471122 [details] [diff] [review]
Port of OS_LIBS move and framework move [Checked in: Comment 5]
http://hg.mozilla.org/comm-central/rev/7a18986c0671
Attachment #8471122 -
Attachment description: Port of OS_LIBS move and framework move → Port of OS_LIBS move and framework move [Checked in: Comment 5]
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → Thunderbird 34.0
Updated•11 years ago
|
status-thunderbird34:
--- → fixed
You need to log in
before you can comment on or make changes to this bug.
Description
•