Ticket #7519: osx-packager-32-bit.patch
File osx-packager-32-bit.patch, 1.1 KB (added by , 16 years ago) |
---|
-
osx-packager.pl
570 570 # Currently needed for Mac OS 10.6 builds: 571 571 #'--disable-mmx', '--enable-disable-mmx-for-debugging', 572 572 #'--disable-gpl', # plus comment out libfaad above 573 574 # Currently needed for Mac OS 10.6 builds on 64-bit CPUs (>=Core2): 575 '--extra-cflags=-m32', 576 '--extra-cxxflags=-m32', 577 '--extra-ldflags=-m32', 573 578 ], 574 579 ); 575 580 … … 776 781 push(@configure, './configure', 777 782 '--prefix=$PREFIX', 778 783 '--disable-static', 779 '--enable-shared'); 784 '--enable-shared', 785 # Currently needed for Mac OS 10.6 builds on 64-bit CPUs (>=Core2): 786 'CFLAGS=-m32', 787 'CPPFLAGS=-m32', 788 'CXXFLAGS=-m32', 789 'LDFLAGS=-m32' 790 ); 780 791 } 781 792 if ($pkg->{'conf'}) 782 793 {