Skip to content

Commit

Permalink
[linux] remove unused '--enable-vcpkg' configure parameter
Browse files Browse the repository at this point in the history
Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
  • Loading branch information
AenBleidd committed Jul 30, 2024
1 parent f0fed14 commit f6ad3bd
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 27 deletions.
2 changes: 1 addition & 1 deletion android/build_boinc_armv6.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ if [ -n "$COMPILEBOINC" ]; then
fi
if [ -n "$CONFIGURE" ]; then
./_autosetup
if [ $BUILD_WITH_VCPKG = "yes" ]; then
if [ $BUILD_APPS_WITH_VCPKG = "yes" ]; then
export _libcurl_pc="$VCPKG_DIR/lib/pkgconfig/libcurl.pc"
fi
./configure --host=armv6-linux --with-boinc-platform="arm-android-linux-gnu" $CONFIG_FLAGS --disable-server --disable-manager --disable-shared --enable-static --disable-largefile
Expand Down
6 changes: 0 additions & 6 deletions android/build_example_arm64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,6 @@ export CXXFLAGS="--sysroot=$TCSYSROOT -DANDROID -DANDROID_64 -Wall -funroll-loo
export LDFLAGS="$CONFIG_LDFLAGS -L$TCSYSROOT/usr/lib -L$TCINCLUDES/lib -llog -fPIE -pie -latomic -static-libstdc++ -lz"
export GDB_CFLAGS="--sysroot=$TCSYSROOT -Wall -g -I$TCINCLUDES/include"

ENABLE_VCPKG_FLAG=""

if [ $BUILD_WITH_VCPKG = "yes" ]; then
ENABLE_VCPKG_FLAG="--enable-vcpkg"
fi

MAKE_FLAGS=""

if [ $VERBOSE = "no" ]; then
Expand Down
6 changes: 0 additions & 6 deletions android/build_example_armv6.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,6 @@ export CXXFLAGS="--sysroot=$TCSYSROOT -DANDROID -Wall -funroll-loops -fexceptio
export LDFLAGS="$CONFIG_LDFLAGS -L$TCSYSROOT/usr/lib -L$TCINCLUDES/lib -llog -fPIE -pie -latomic -static-libstdc++ -march=armv6"
export GDB_CFLAGS="--sysroot=$TCSYSROOT -Wall -g -I$TCINCLUDES/include"

ENABLE_VCPKG_FLAG=""

if [ $BUILD_WITH_VCPKG = "yes" ]; then
ENABLE_VCPKG_FLAG="--enable-vcpkg"
fi

MAKE_FLAGS=""

if [ $VERBOSE = "no" ]; then
Expand Down
6 changes: 0 additions & 6 deletions android/build_example_x86_64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,6 @@ export CXXFLAGS="--sysroot=$TCSYSROOT -DANDROID -DANDROID_64 -Wall -funroll-loo
export LDFLAGS="$CONFIG_LDFLAGS -L$TCSYSROOT/usr/lib -L$TCINCLUDES/lib -llog -fPIE -pie -latomic -static-libstdc++ -lz"
export GDB_CFLAGS="--sysroot=$TCSYSROOT -Wall -g -I$TCINCLUDES/include"

ENABLE_VCPKG_FLAG=""

if [ $BUILD_WITH_VCPKG = "yes" ]; then
ENABLE_VCPKG_FLAG="--enable-vcpkg"
fi

MAKE_FLAGS=""

if [ $VERBOSE = "no" ]; then
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1128,7 +1128,7 @@ AM_CONDITIONAL(OS_ARM_LINUX, [echo $host_alias | grep '^arm-linux' > /dev/null])
AM_CONDITIONAL(OS_ARMV6_LINUX, [echo $host_alias | grep '^armv6-linux' > /dev/null])
AM_CONDITIONAL(ANDROID, [test x"${ANDROID}" = xyes])

AM_CONDITIONAL(BUILD_WITH_VCPKG, [test "${enable_apps_vcpkg}" = yes])
AM_CONDITIONAL(BUILD_APPS_WITH_VCPKG, [test "${enable_apps_vcpkg}" = yes])
AM_CONDITIONAL(BUILD_WITH_VBOX, [test "${enable_apps_vbox}" = yes])
AM_CONDITIONAL(BUILD_WITH_MINGW, [test "${enable_apps_mingw}" = yes])
AM_CONDITIONAL(BUILD_WITH_GUI, [test "${enable_apps_gui}" = yes])
Expand Down
6 changes: 3 additions & 3 deletions samples/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ if BUILD_WITH_GUI
export BUILD_WITH_GUI="yes"
endif

if BUILD_WITH_VCPKG
export BUILD_WITH_VCPKG="yes"
if BUILD_APPS_WITH_VCPKG
export BUILD_APPS_WITH_VCPKG="yes"
endif

## list the apps that should be build
Expand All @@ -26,7 +26,7 @@ if BUILD_WITH_VBOX
SUBDIRS += vboxmonitor vboxwrapper
endif

if BUILD_WITH_VCPKG
if BUILD_APPS_WITH_VCPKG
SUBDIRS += wrappture
endif

Expand Down
2 changes: 1 addition & 1 deletion samples/condor/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ CXXFLAGS += \
-L$(BOINC_ZIP_DIR)


ifdef BUILD_WITH_VCPKG
ifdef BUILD_APPS_WITH_VCPKG
BUILD_DIR = $(BOINC_DIR)/3rdParty/linux
VCPKG_DIR ?= $(BUILD_DIR)/vcpkg/installed/x64-linux

Expand Down
2 changes: 1 addition & 1 deletion samples/example_app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ LIBUI = -lX11 -lXmu
LIBFTGL = -lftgl
LIBJPEG = -ljpeg

ifdef BUILD_WITH_VCPKG
ifdef BUILD_APPS_WITH_VCPKG
BUILD_DIR = $(BOINC_DIR)/3rdParty/linux
VCPKG_DIR ?= $(BUILD_DIR)/vcpkg/installed/x64-linux

Expand Down
2 changes: 1 addition & 1 deletion samples/sporadic/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ CXXFLAGS += -g \
-L$(BOINC_LIB_DIR) \
-L.

ifdef BUILD_WITH_VCPKG
ifdef BUILD_APPS_WITH_VCPKG
BUILD_DIR = $(BOINC_DIR)/3rdParty/linux
VCPKG_DIR ?= $(BUILD_DIR)/vcpkg/installed/x64-linux

Expand Down
2 changes: 1 addition & 1 deletion wasm/ci_configure_client.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ if [ "debug" == "$1" ]; then
fi

export _libcurl_pc="$VCPKG_DIR/lib/pkgconfig/libcurl.pc"
emconfigure ./configure $debug_flags --enable-wasm --enable-vcpkg --with-libcurl=$VCPKG_DIR --with-ssl=$VCPKG_DIR --disable-server --enable-client --disable-manager
emconfigure ./configure $debug_flags --enable-wasm --with-libcurl=$VCPKG_DIR --with-ssl=$VCPKG_DIR --disable-server --enable-client --disable-manager

0 comments on commit f6ad3bd

Please sign in to comment.