Changeset 98248 in vbox
- Timestamp:
- Jan 23, 2023 5:15:58 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 155447
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r98247 r98248 4976 4976 4977 4977 ifdef VBOX_WITH_LIBVORBIS 4978 SDK_VB OX_VORBIS:= libvorbis for dll linking.4979 SDK_VB OX_VORBIS_DEFAULT_INCS := $(PATH_ROOT)/src/libs/libvorbis-1.3.7/include4980 SDK_VB OX_VORBIS_INCS ?= $(SDK_VBOX_VORBIS_DEFAULT_INCS)4981 SDK_VB OX_VORBIS_LIBS ?= $(PATH_STAGE_LIB)/VBox-libvorbis$(VBOX_SUFF_LIB)4978 SDK_VBoxLibVorbis := libvorbis for dll linking. 4979 SDK_VBoxLibVorbis_DEFAULT_INCS := $(PATH_ROOT)/src/libs/libvorbis-1.3.7/include 4980 SDK_VBoxLibVorbis_INCS ?= $(SDK_VBoxLibVorbis_DEFAULT_INCS) 4981 SDK_VBoxLibVorbis_LIBS ?= $(PATH_STAGE_LIB)/VBox-libvorbis$(VBOX_SUFF_LIB) 4982 4982 endif 4983 4983 -
trunk/configure
r98247 r98248 1839 1839 if test_compile "$LIBVRB $I_INCVRB" vorbis vorbis nofatal; then 1840 1840 if test_execute; then 1841 cnf_append "SDK_VB OX_VORBIS_INCS" "$INCVRB"1842 cnf_append "SDK_VB OX_VORBIS_LIBS" "`strip_l "$LIBVRB"`"1841 cnf_append "SDK_VBoxLibVorbis_INCS" "$INCVRB" 1842 cnf_append "SDK_VBoxLibVorbis_LIBS" "`strip_l "$LIBVRB"`" 1843 1843 fi 1844 1844 else -
trunk/src/VBox/Main/Makefile.kmk
r98247 r98248 1042 1042 ifdef VBOX_WITH_LIBVORBIS 1043 1043 VBOX_MAIN_DEFS += VBOX_WITH_LIBVORBIS 1044 VBoxC_SDKS += VB OX_VORBIS1044 VBoxC_SDKS += VBoxLibVorbis 1045 1045 ## @todo We also need to specify this for VBoxSVC, as we need to have VBOX_WITH_LIBVORBIS defined 1046 1046 ## for SystemProperties::getSupportedRecordingAudioCodecs(). 1047 1047 # SystemPropertiesImpl_DEFS += VBOX_WITH_LIBVORBIS didn't work for precompiled headers on Windows -- 1048 1048 # needs to be solved properly so that we can remove the following _SDKS from VBoxSVC again. 1049 VBoxSVC_SDKS += VB OX_VORBIS1049 VBoxSVC_SDKS += VBoxLibVorbis 1050 1050 endif 1051 1051 VBoxC_SOURCES += src-client/DrvAudioRec.cpp -
trunk/src/libs/Makefile.kmk
r98247 r98248 141 141 # libvorbis for supporting audio with video recording. 142 142 if defined(VBOX_WITH_LIBVORBIS) \ 143 && ("$(SDK_VB OX_VORBIS_INCS)" == "$(SDK_VBOX_VORBIS_DEFAULT_INCS)")143 && ("$(SDK_VBoxLibVorbis_INCS)" == "$(SDK_VBoxLibVorbis_DEFAULT_INCS)") 144 144 include $(PATH_SUB_CURRENT)/libvorbis-1.3.7/Makefile.kmk 145 145 endif
Note:
See TracChangeset
for help on using the changeset viewer.