From kde-core-devel Wed Nov 19 22:14:21 2003 From: Sergio Visinoni Date: Wed, 19 Nov 2003 22:14:21 +0000 To: kde-core-devel Subject: [TRIVIAL] kdelibs 3_1_BRANCH build fix against alsa-lib 1.0.0pre1 X-MARC-Message: https://marc.info/?l=kde-core-devel&m=106928097313698 MIME-Version: 1 Content-Type: multipart/mixed; boundary="--5vNYLRcllDrimb99" --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject says it all, SND_LIB_MAJOR is set to 1 in the latest alsa-lib development release. greetings, sergio --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="kdelibs-3.1.4-alsa1.patch" --- kdelibs/libkmid/configure.in.in.alsa1 2003-11-19 22:10:13.000000000 +0100 +++ kdelibs/libkmid/configure.in.in 2003-11-19 22:10:55.000000000 +0100 @@ -71,8 +71,8 @@ #include #endif ],[ - #if (SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9) - /* we have ALSA 0.9.x */ + #if ((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9)) || (SND_LIB_MAJOR == 1) + /* we have ALSA 0.9.x or 1.x */ #else #error not ALSA 0.9.x #endif --5vNYLRcllDrimb99--