From dac809d685d0067ba07723fabb239a2ebacb90c7 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Thu, 25 Jun 2020 15:18:04 +0200 Subject: [PATCH] Configure: VideoMaster headers are now in Include also in Windows --- configure.ac | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/configure.ac b/configure.ac index 3cac4843f..3f4c4d30c 100644 --- a/configure.ac +++ b/configure.ac @@ -997,18 +997,12 @@ if test $system = Linux -o $system = Windows then AC_LANG_PUSH(C++) - if test $system = Windows; then - HEADER_SUBDIR="Header" - else - HEADER_SUBDIR="Include" - fi - if test -n "$DELTACAST_PATH" then CXXFLAGS_SAVE=$CXXFLAGS - CXXFLAGS="$CXXFLAGS -I$DELTACAST_PATH/$HEADER_SUBDIR" + CXXFLAGS="$CXXFLAGS -I$DELTACAST_PATH/Include" CPPFLAGS_SAVE=$CPPFLAGS - CPPFLAGS="$CPPFLAGS -I$DELTACAST_PATH/$HEADER_SUBDIR" + CPPFLAGS="$CPPFLAGS -I$DELTACAST_PATH/Include" fi if test $system = Windows; then @@ -1081,7 +1075,7 @@ if test $deltacast_req != no -a $deltacast_found = yes then if test -n "$DELTACAST_PATH" then - DELTACAST_INC="-I$DELTACAST_PATH/$HEADER_SUBDIR" + DELTACAST_INC="-I$DELTACAST_PATH/Include" fi DELTACAST_CAP_OBJ="src/video_capture/deltacast.o src/video_capture/deltacast_dvi.o" DELTACAST_DISP_OBJ="src/video_display/deltacast.o"