]> sigrok.org Git - sigrok-util.git/commitdiff
sigrok-cross-mingw: Drop DDK include path again.
authorUwe Hermann <redacted>
Tue, 5 Aug 2014 19:15:36 +0000 (21:15 +0200)
committerUwe Hermann <redacted>
Tue, 5 Aug 2014 19:15:36 +0000 (21:15 +0200)
This doesn't seem to be needed with MinGW-w64 (which we now require).

cross-compile/mingw/sigrok-cross-mingw

index 0989a5f6829f4bd12f1205484cc2435ab563e3cd..7208ab88de135845824e0f37720d47cd5314a08d 100755 (executable)
@@ -60,7 +60,6 @@ P2="$MXE/usr/$TOOLCHAIN_TRIPLET/lib/pkgconfig"
 C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX"
 CM="-DCMAKE_TOOLCHAIN_FILE=$MXE/usr/$TOOLCHAIN_TRIPLET/share/cmake/mxe-conf.cmake"
 L="--disable-shared --enable-static"
-DDK="$MXE/usr/$TOOLCHAIN_TRIPLET/include/ddk"
 
 if [ $TARGET == "i686" ]; then
        export PKG_CONFIG_PATH_i686_w64_mingw32_static="$P:$P2"
@@ -127,7 +126,7 @@ cp -f zadig.exe zadig_xp.exe $PREFIX
 $GIT_CLONE git://sigrok.org/libserialport
 cd libserialport
 ./autogen.sh
-CFLAGS="-I$DDK" ./configure $C $L
+./configure $C $L
 make $PARALLEL V=1
 make install
 cd ..