Closed
Bug 245189
Opened 21 years ago
Closed 21 years ago
sunbird should not need hacks to build
Categories
(SeaMonkey :: Build Config, defect)
SeaMonkey
Build Config
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: mvl, Assigned: mvl)
Details
Attachments
(1 file)
7.13 KB,
patch
|
benjamin
:
review+
|
Details | Diff | Splinter Review |
the sunbird build instructions currently tell you to set MOZ_PHOENIX, and
afterward to copy some makefiles and run make there. Ugly hacks.
This should be done properly but setting MOZ_SUNBIRD.
(filing in browser/buildconfig because it touches mostly stuff outside
/calendar, so i need to be able to set proper review flags)
![]() |
Assignee | |
Comment 1•21 years ago
|
||
Patch that should do the work. doesn't include changes to configure, as it is
automaticly generated.
set MOZ_SUNBIRD to build sunbird.
![]() |
Assignee | |
Updated•21 years ago
|
Attachment #149711 -
Flags: review?
![]() |
Assignee | |
Updated•21 years ago
|
Attachment #149711 -
Flags: review? → review?(bsmedberg)
Comment 2•21 years ago
|
||
Comment on attachment 149711 [details] [diff] [review]
patch v1
> dnl ========================================================
>+dnl = Sunbird
>+dnl ========================================================
>+if test "$MOZ_SUNBIRD"; then
>+ AC_DEFINE(MOZ_SUNBIRD)
>+
>+ MOZ_XUL_APP=1
>+ AC_DEFINE(MOZ_XUL_APP)
>+ MOZ_APP_NAME=sunbird
>+ MOZ_APP_VERSION=`cat $topsrcdir/calendar/sunbird/config/version.txt`
>+fi
>+
>+AC_SUBST(MOZ_SUNBIRD)
>+AC_SUBST(MOZ_XUL_APP)
>+
This is not quite right... you are adding a duplicate AC_SUBST for MOZ_XUL_APP,
when you should be just moving it from above. And you need to move
AC_DEFINE_UNQUOTED(MOZ_APP_NAME) down after this section.
With those changes, r=me (no sr needed)
Attachment #149711 -
Flags: review?(bsmedberg) → review+
![]() |
Assignee | |
Comment 4•21 years ago
|
||
checked in.
Status: NEW → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•