-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure
executable file
·105 lines (94 loc) · 3.52 KB
/
configure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Anticonf (tm) script by Jeroen Ooms (2024)
# This script will query 'pkg-config' for the required cflags and ldflags.
# If pkg-config is unavailable or does not find the library, try setting
# INCLUDE_DIR and LIB_DIR manually via e.g:
# R CMD INSTALL --configure-vars='INCLUDE_DIR=/.../include LIB_DIR=/.../lib'
# Library settings
PKG_CONFIG_NAME="libopenmpt portaudio-2.0 portaudiocpp"
PKG_DEB_NAME="libopenmpt-dev portaudio19-dev"
PKG_RPM_NAME="libopenmpt-devel portaudio-devel"
PKG_BREW_NAME="libopenmpt"
PKG_LIBS="-llibportaudio -llibportaudiocpp -llibopenmpt"
PKG_TEST_HEADER="<libopenmpt/libopenmpt.h>"
# Use pkg-config if available
if [ `command -v pkg-config` ]; then
PKGCONFIG_CFLAGS=`pkg-config --cflags --silence-errors ${PKG_CONFIG_NAME}`
PKGCONFIG_LIBS=`pkg-config --libs ${PKG_CONFIG_NAME}`
fi
# Note that cflags may be empty in case of success
if [ "$INCLUDE_DIR" ] || [ "$LIB_DIR" ]; then
echo "Found INCLUDE_DIR and/or LIB_DIR!"
PKG_CFLAGS="-I$INCLUDE_DIR $PKG_CFLAGS"
PKG_LIBS="-L$LIB_DIR $PKG_LIBS"
elif [ "$PKGCONFIG_CFLAGS" ] || [ "$PKGCONFIG_LIBS" ]; then
echo "Found pkg-config cflags and libs!"
PKG_CFLAGS=${PKGCONFIG_CFLAGS}
PKG_LIBS=${PKGCONFIG_LIBS}
elif [ `uname` = "Darwin" ]; then
PKG_TEST_HEADER="\"inst/include/ropenmpt.hpp\""
test ! "$CI" && brew --version 2>/dev/null
if [ $? -eq 0 ]; then
BREWDIR=`brew --prefix`
PKG_CFLAGS="-I$BREWDIR/include $PKG_CFLAGS"
PKG_LIBS="-L$BREWDIR/lib $PKG_LIBS"
else
curl -sfL "https://autobrew.github.io/scripts/libopenmpt" > autobrew
. ./autobrew
fi
fi
# For debugging
echo "Using PKG_CFLAGS=$PKG_CFLAGS"
echo "Using PKG_LIBS=$PKG_LIBS"
# Find compiler
CXX=`${R_HOME}/bin/R CMD config CXX`
CXXFLAGS=`${R_HOME}/bin/R CMD config CXXFLAGS`
CPPFLAGS=`${R_HOME}/bin/R CMD config CPPFLAGS`
# Test configuration
echo "#include $PKG_TEST_HEADER" | ${CXX} ${CPPFLAGS} ${PKG_CFLAGS} ${CFLAGS} -E -xc++ - >/dev/null 2>configure.log
# Customize the error
if [ $? -ne 0 ]; then
echo "--------------------------- [ANTICONF] --------------------------------"
echo "Configuration failed because $PKG_CONFIG_NAME was not found. Try installing:"
echo " * deb: $PKG_DEB_NAME (Debian, Ubuntu, etc)"
echo " * rpm: $PKG_RPM_NAME (Fedora, EPEL)"
echo "If $PKG_CONFIG_NAME is already installed, check that 'pkg-config' is in your"
echo "PATH and PKG_CONFIG_PATH contains a $PKG_CONFIG_NAME.pc file. If pkg-config"
echo "is unavailable you can set INCLUDE_DIR and LIB_DIR manually via:"
echo "R CMD INSTALL --configure-vars='INCLUDE_DIR=... LIB_DIR=...'"
echo "-------------------------- [ERROR MESSAGE] ---------------------------"
cat configure.log
echo "--------------------------------------------------------------------"
exit 1
fi
# Print debug information
echo "PKG_CFLAGS: $PKG_CFLAGS"
echo "PKG_LIBS: $PKG_LIBS"
if [ `uname` != "Darwin" ]
then
# Create a temporary C++ file to test the compatibility with libopenmpt
cat <<EOF > conftest.cpp
#include <fstream>
#include <iostream>
#include <libopenmpt/libopenmpt.hpp>
int main() {
std::ifstream file( "inst/cyberrid/cyberrid.mod", std::ios::binary );
openmpt::module mod( file );
mod.ctl_get_integer("dither");
return 0;
}
EOF
# Test libopenmpt
if ! ${CXX} -c conftest.cpp -o conftest.o ${PKG_LIBS} ${PKG_CFLAGS}
then
echo "openmpt cannot be compiled with this setup"
rm -rf conftest.cpp conftest.o
# Fail
exit 1
else
rm -rf conftest.cpp conftest.o
fi
fi
# Write to Makevars
sed -e "s|@cflags@|$PKG_CFLAGS|" -e "s|@libs@|$PKG_LIBS|" src/Makevars.in > src/Makevars
# Success
exit 0