Opened 18 years ago

Closed 18 years ago

Last modified 8 years ago

#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 18 years ago by mww@…

Owner: changed from darwinports-bugs@… to blb@…
Summary: configure imlib2 without mmx on mactelBUG: configure imlib2 without mmx on mactel

so adding

platform i386 {
   configure.args-append --enable-mmx=no
}

fixes this issue?

Last edited 8 years ago by ryandesign (Ryan Carsten Schmidt) (previous) (diff)

comment:2 Changed 18 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.

Last edited 8 years ago by ryandesign (Ryan Carsten Schmidt) (previous) (diff)

comment:3 Changed 18 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

Last edited 8 years ago by ryandesign (Ryan Carsten Schmidt) (previous) (diff)

comment:4 Changed 18 years ago by blb@…

Resolution: fixed
Status: newclosed

The fix has been committed, thanks.

Note: See TracTickets for help on using tickets.