#7874 closed defect (fixed)
BUG: configure imlib2 without mmx on mactel
Reported by: | doug@… | Owned by: | blb@… |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | ports | Version: | 1.2 |
Keywords: | Cc: | ||
Port: |
Description
There are some compile problems with imlib2 on my macbook pro with OS 10.4.5. It complains about the assembly in one of the file (sorry, lost the records). When I looked in that file it was talking about mmx optimizations, so I added configure.env --enable-mmx=no to the Portfile. With this configuration imlib2 was able to build and run just fine. I think there are some assumptions about my platform being i686 and mmx that don't hold true on the Mac Intels.
Change History (4)
comment:1 Changed 19 years ago by mww@…
Owner: | changed from darwinports-bugs@… to blb@… |
---|---|
Summary: | configure imlib2 without mmx on mactel → BUG: configure imlib2 without mmx on mactel |
comment:2 Changed 19 years ago by keithws@…
i added the following to my portfile and it worked:
platform x86 { configure.args-append --disable-mmx --disable-amd-64 }
i disabled the amd 64bit optimizations to be more "future" safe.
comment:3 Changed 19 years ago by keithws@…
i've submited an update of imlib2-1.2.1 to imlib2-1.2.2 and include the --disable-mmx in the configure-args on x86 platforms. see: #8792
comment:4 Changed 19 years ago by blb@…
Resolution: | → fixed |
---|---|
Status: | new → closed |
The fix has been committed, thanks.
so adding
fixes this issue?