diff --git a/mythtv/configure b/mythtv/configure
index ae4c1ea..0275e37 100755
a
|
b
|
enable $arch |
2621 | 2621 | if enabled proc_opt_old; then |
2622 | 2622 | # first try to tune based on processor info |
2623 | 2623 | # Intel i7 processors (EMT64T capable) |
2624 | | if expr "$processor" : ".*Intel(R).*Core(TM) i7 CPU.*" > /dev/null ; then |
| 2624 | if expr "$processor" : ".*Intel(R).*Core(TM) i[357] CPU.*" > /dev/null ; then |
2625 | 2625 | cpu="core2" |
2626 | 2626 | # EM64T era Intel Xeon |
2627 | 2627 | elif expr "$processor" : ".*Intel(R) Xeon(R) CPU.*51[1-6][08]" > /dev/null ; then |
… |
… |
fi |
4020 | 4020 | enabled libfftw3 && check_lib2 fftw3.h fftw_init_threads -lfftw3_threads -lfftw3f -lfftw3 || |
4021 | 4021 | disable libfftw3 |
4022 | 4022 | |
| 4023 | if enabled libxml2 ; then |
| 4024 | if pkg-config --exists libxml-2.0 ; then |
| 4025 | libxml2_path=`pkg-config --cflags-only-I libxml-2.0 | sed s/-I//` |
| 4026 | else |
| 4027 | disable libxml2 |
| 4028 | fi |
| 4029 | fi |
4023 | 4030 | enabled libxml2 && check_cc -I"$libxml2_path" <<EOF && add_extralibs "-lxml2" || disable libxml2 |
4024 | 4031 | #include <libxml/xmlversion.h> |
4025 | 4032 | int main(void) { |