Changeset 113


Ignore:
Timestamp:
May 18, 2016, 4:55:47 PM (9 years ago)
Author:
Valery V. Sedletski
Message:

configure: Use rpm SDL instead of svn-supplied one.

Author: _diver. Additions from Dmik and valerius -- now both RPM and SDK
SDL detected. For SDK ones PATH_SDK_LIBSDL is needed.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/Makefile.kmk

    r14 r113  
    9090
    9191# The SDL DLLs
    92 if1of ($(KBUILD_TARGET), win os2)
     92if1of ($(KBUILD_TARGET), win) # os2
    9393 ifdef VBOX_WITH_VBOXSDL
    9494  include $(KBUILD_PATH)/sdks/LIBSDL.kmk
  • TabularUnified trunk/configure

    r94 r113  
    11491149      fail
    11501150    fi
    1151   elif [ "$OS" = "os2" ]; then
    1152     # OS/2 requires special SDL setup, see $KBUILD_PATH/sdks/LIBSDL.kmk
    1153     if [ -n "$PATH_SDK_LIBSDL" ]; then
    1154       INCSDL="-I$PATH_SDK_LIBSDL/SDL/include"
    1155       FLDSDL="-L$PATH_SDK_LIBSDL/SDL -lSDL12"
    1156       foundsdl=1
    1157     else
    1158       log_failure "PATH_SDK_LIBSDL is not set, will expect SDL in \"$DEVDIR/$OS.$BUILD_MACHINE\""
    1159     fi
     1151  elif [ "$OS" = "os2" -a -n "$PATH_SDK_LIBSDL" ]; then
     1152    # OS/2 requires special SDL setup for non-rpm SDL SDK case,
     1153    # see $KBUILD_PATH/sdks/LIBSDL.kmk
     1154    INCSDL="-I$PATH_SDK_LIBSDL/SDL/include"
     1155    FLDSDL="-L$PATH_SDK_LIBSDL/SDL -lSDL12"
     1156    foundsdl=1
    11601157  else
    11611158    if which_wrapper sdl-config > /dev/null; then
     
    11681165    fi
    11691166  fi
    1170   [ "$OS" = "linux" -o "$OS" = "darwin" -o "$OS" = "solaris" ] && LIBSDLMAIN=""
     1167  [ "$OS" = "os2" -o  "$OS" = "linux" -o "$OS" = "darwin" -o "$OS" = "solaris" ] && LIBSDLMAIN=""
    11711168  if [ -n "$foundsdl" ]; then
    11721169    cat > $ODIR.tmp_src.cc << EOF
     
    11911188    if test_compile "$LIBSDL $LIBSDLMAIN $I_INCSDL $FLDSDL" SDL SDL; then
    11921189      if test_execute; then
    1193         if [ "$OS" = "os2" ]; then
    1194           cnf_append "PATH_SDK_LIBSDL" "$PATH_SDK_LIBSDL"
    1195         else
    11961190          cnf_append "LIB_SDK_LIBSDL_SDL"     "`strip_l "$LIBSDL"`"
    11971191          cnf_append "SDK_LIBSDL_LIBPATH"     "`strip_L "$LIBSDL"`"
     
    11991193          [ -n "$INCSDL" ] && cnf_append "SDK_LIBSDL_INCS"    "$INCSDL"
    12001194          [ -n "$FLDSDL" ] && cnf_append "SDK_LIBSDL_LDFLAGS" "$FLDSDL"
    1201         fi
     1195          if [ "$OS" = "os2" ]; then
     1196            cnf_append "PATH_SDK_LIBSDL"      "`strip_L "$LIBSDL"`"
     1197          fi
    12021198      fi
    12031199    fi
Note: See TracChangeset for help on using the changeset viewer.