Merge pull request #9211 from orbea/opts

qb: Refactor how config.h and config.mk are created.
This commit is contained in:
Twinaphex 2019-07-29 04:31:04 +02:00 committed by GitHub
commit 72cccf9ca5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 67 additions and 31 deletions

View File

@ -1,3 +1,9 @@
# Use add_opt to set HAVE_FOO variables the first time
# example: add_opt FOO no
#
# Only needed when check_enabled ($2), check_platform, check_lib, check_pkgconf,
# check_header, check_macro and check_switch are not used.
check_switch '' C99 -std=gnu99 "Cannot find C99 compatible compiler." check_switch '' C99 -std=gnu99 "Cannot find C99 compatible compiler."
check_switch '' NOUNUSED -Wno-unused-result check_switch '' NOUNUSED -Wno-unused-result
add_define MAKEFILE NOUNUSED "$HAVE_NOUNUSED" add_define MAKEFILE NOUNUSED "$HAVE_NOUNUSED"
@ -59,7 +65,7 @@ if [ "$HAVE_VIDEOCORE" != "no" ]; then
[ -d /opt/vc/lib ] && add_dirs LIBRARY /opt/vc/lib /opt/vc/lib/GL [ -d /opt/vc/lib ] && add_dirs LIBRARY /opt/vc/lib /opt/vc/lib/GL
check_lib '' VIDEOCORE -lbcm_host bcm_host_init "-lvcos -lvchiq_arm" check_lib '' VIDEOCORE -lbcm_host bcm_host_init "-lvcos -lvchiq_arm"
else else
HAVE_VIDEOCORE="$HAVE_VC_TEST" add_opt VIDEOCORE "$HAVE_VC_TEST"
fi fi
fi fi
@ -115,7 +121,7 @@ check_pkgconf EXYNOS libdrm_exynos
if [ "$LIBRETRO" ]; then if [ "$LIBRETRO" ]; then
die : 'Notice: Explicit libretro used, disabling dynamic libretro loading ...' die : 'Notice: Explicit libretro used, disabling dynamic libretro loading ...'
HAVE_DYNAMIC='no' add_opt DYNAMIC no
else else
LIBRETRO="-lretro" LIBRETRO="-lretro"
fi fi
@ -144,7 +150,7 @@ fi
check_platform 'Linux Win32' CDROM 'CD-ROM is' user check_platform 'Linux Win32' CDROM 'CD-ROM is' user
if [ "$OS" = 'Win32' ]; then if [ "$OS" = 'Win32' ]; then
HAVE_DYLIB=yes add_opt DYLIB yes
else else
check_lib '' DYLIB "$DYLIB" dlopen check_lib '' DYLIB "$DYLIB" dlopen
fi fi
@ -152,8 +158,8 @@ fi
check_lib '' NETWORKING "$SOCKETLIB" socket "" "$SOCKETHEADER" check_lib '' NETWORKING "$SOCKETLIB" socket "" "$SOCKETHEADER"
if [ "$HAVE_NETWORKING" != 'no' ]; then if [ "$HAVE_NETWORKING" != 'no' ]; then
HAVE_GETADDRINFO=auto add_opt GETADDRINFO auto
HAVE_SOCKET_LEGACY=no add_opt SOCKET_LEGACY no
# WinXP+ implements getaddrinfo() # WinXP+ implements getaddrinfo()
if [ "$OS" = 'Win32' ]; then if [ "$OS" = 'Win32' ]; then
@ -166,9 +172,9 @@ if [ "$HAVE_NETWORKING" != 'no' ]; then
fi fi
fi fi
HAVE_NETWORK_CMD=yes add_opt NETWORK_CMD yes
else else
HAVE_NETWORK_CMD=no add_opt NETWORK_CMD no
fi fi
check_enabled NETWORKING CHEEVOS cheevos 'Networking is' false check_enabled NETWORKING CHEEVOS cheevos 'Networking is' false
@ -184,9 +190,9 @@ check_lib '' MINIUPNPC '-lminiupnpc'
check_lib '' STDIN_CMD "$CLIB" fcntl check_lib '' STDIN_CMD "$CLIB" fcntl
if [ "$HAVE_NETWORK_CMD" = "yes" ] || [ "$HAVE_STDIN_CMD" = "yes" ]; then if [ "$HAVE_NETWORK_CMD" = "yes" ] || [ "$HAVE_STDIN_CMD" = "yes" ]; then
HAVE_COMMAND='yes' add_opt COMMAND yes
else else
HAVE_COMMAND='no' add_opt COMMAND no
fi fi
check_lib '' GETOPT_LONG "$CLIB" getopt_long check_lib '' GETOPT_LONG "$CLIB" getopt_long
@ -348,7 +354,7 @@ if [ "$HAVE_OPENGL" != 'no' ] && [ "$HAVE_OPENGLES" != 'yes' ]; then
check_pkgconf OSMESA osmesa check_pkgconf OSMESA osmesa
fi fi
else else
HAVE_OPENGL='no' add_opt OPENGL no
fi fi
check_enabled EGL OPENGLES OpenGLES 'EGL is' false check_enabled EGL OPENGLES OpenGLES 'EGL is' false
@ -505,13 +511,13 @@ if [ "$HAVE_MENU" != 'no' ]; then
else else
if [ "$HAVE_CACA" != 'yes' ] && [ "$HAVE_SIXEL" != 'yes' ] && if [ "$HAVE_CACA" != 'yes' ] && [ "$HAVE_SIXEL" != 'yes' ] &&
[ "$HAVE_SDL" != 'yes' ] && [ "$HAVE_SDL2" != 'yes' ]; then [ "$HAVE_SDL" != 'yes' ] && [ "$HAVE_SDL2" != 'yes' ]; then
HAVE_RGUI=no add_opt RGUI no
fi fi
HAVE_MATERIALUI=no add_opt MATERIALUI no
HAVE_OZONE=no add_opt OZONE no
HAVE_XMB=no add_opt XMB no
HAVE_STRIPES=no add_opt STRIPES no
HAVE_MENU_WIDGETS=no add_opt MENU_WIDGETS no
fi fi
die : 'Notice: Hardware rendering context not available.' die : 'Notice: Hardware rendering context not available.'
fi fi

View File

@ -16,7 +16,7 @@ int main(void) { puts("Hai world!"); return 0; }
EOF EOF
cc_works=0 cc_works=0
HAVE_CC=no add_opt CC no
if [ "$CC" ]; then if [ "$CC" ]; then
"$CC" -o "$TEMP_EXE" "$TEMP_C" >/dev/null 2>&1 && cc_works=1 "$CC" -o "$TEMP_EXE" "$TEMP_C" >/dev/null 2>&1 && cc_works=1
else else
@ -53,7 +53,7 @@ int main() { std::cout << "Hai guise" << std::endl; return 0; }
EOF EOF
cxx_works=0 cxx_works=0
HAVE_CXX=no add_opt CXX no
if [ "$CXX" ]; then if [ "$CXX" ]; then
"$CXX" -o "$TEMP_EXE" "$TEMP_CXX" >/dev/null 2>&1 && cxx_works=1 "$CXX" -o "$TEMP_EXE" "$TEMP_CXX" >/dev/null 2>&1 && cxx_works=1
else else

View File

@ -16,7 +16,7 @@ SHARE_DIR="${SHARE_DIR:-${PREFIX}/share}"
# $2 = define # $2 = define
# $3 = value # $3 = value
add_define() add_define()
{ eval "${1}_DEFINES=\"\${${1}_DEFINES} $2=$3\""; } { eval "${1}_DEFINES=\"\${${1}_DEFINES} $2=$3\""; }
# add_dirs: # add_dirs:
# $1 = INCLUDE or LIBRARY # $1 = INCLUDE or LIBRARY
@ -54,7 +54,8 @@ check_compiler()
# $4 = feature # $4 = feature
# $5 = enable lib when true, disable errors with 'user' [checked only if non-empty] # $5 = enable lib when true, disable errors with 'user' [checked only if non-empty]
check_enabled() check_enabled()
{ setval="$(eval "printf %s \"\$HAVE_$2\"")" { add_opt "$2"
setval="$(eval "printf %s \"\$HAVE_$2\"")"
for val in $(printf %s "$1"); do for val in $(printf %s "$1"); do
tmpvar="$(eval "printf %s \"\$HAVE_$val\"")" tmpvar="$(eval "printf %s \"\$HAVE_$val\"")"
@ -89,7 +90,8 @@ check_enabled()
# $3 = feature # $3 = feature
# $4 = enable feature when 'true', disable errors with 'user' [checked only if non-empty] # $4 = enable feature when 'true', disable errors with 'user' [checked only if non-empty]
check_platform() check_platform()
{ tmpval="$(eval "printf %s \"\$HAVE_$2\"")" { add_opt "$2"
tmpval="$(eval "printf %s \"\$HAVE_$2\"")"
[ "$tmpval" = 'no' ] && return 0 [ "$tmpval" = 'no' ] && return 0
error= error=
@ -137,7 +139,8 @@ check_platform()
# $7 = include directory [checked only if non-empty] # $7 = include directory [checked only if non-empty]
# $8 = critical error message [checked only if non-empty] # $8 = critical error message [checked only if non-empty]
check_lib() check_lib()
{ tmpval="$(eval "printf %s \"\$HAVE_$2\"")" { add_opt "$2"
tmpval="$(eval "printf %s \"\$HAVE_$2\"")"
[ "$tmpval" = 'no' ] && return 0 [ "$tmpval" = 'no' ] && return 0
check_compiler "$1" "$4" check_compiler "$1" "$4"
@ -203,7 +206,8 @@ check_lib()
# $4 = critical error message [checked only if non-empty] # $4 = critical error message [checked only if non-empty]
# $5 = force check_lib when true [checked only if non-empty, set by check_val] # $5 = force check_lib when true [checked only if non-empty, set by check_val]
check_pkgconf() check_pkgconf()
{ tmpval="$(eval "printf %s \"\$HAVE_$1\"")" { add_opt "$1"
tmpval="$(eval "printf %s \"\$HAVE_$1\"")"
eval "TMP_$1=\$tmpval" eval "TMP_$1=\$tmpval"
[ "$tmpval" = 'no' ] && return 0 [ "$tmpval" = 'no' ] && return 0
@ -263,7 +267,8 @@ check_pkgconf()
# $1 = HAVE_$1 # $1 = HAVE_$1
# $@ = header files # $@ = header files
check_header() check_header()
{ tmpval="$(eval "printf %s \"\$HAVE_$1\"")" { add_opt "$1"
tmpval="$(eval "printf %s \"\$HAVE_$1\"")"
[ "$tmpval" = 'no' ] && return 0 [ "$tmpval" = 'no' ] && return 0
rm -f -- "$TEMP_C" rm -f -- "$TEMP_C"
val="$1" val="$1"
@ -292,7 +297,8 @@ check_header()
# $2 = macro name # $2 = macro name
# $3 = header name [included only if non-empty] # $3 = header name [included only if non-empty]
check_macro() check_macro()
{ tmpval="$(eval "printf %s \"\$HAVE_$1\"")" { add_opt "$1"
tmpval="$(eval "printf %s \"\$HAVE_$1\"")"
[ "$tmpval" = 'no' ] && return 0 [ "$tmpval" = 'no' ] && return 0
header_include='' header_include=''
ECHOBUF='' ECHOBUF=''
@ -328,7 +334,8 @@ EOF
# $3 = switch # $3 = switch
# $4 = critical error message [checked only if non-empty] # $4 = critical error message [checked only if non-empty]
check_switch() check_switch()
{ check_compiler "$1" '' { add_opt "$2"
check_compiler "$1" ''
printf %s\\n 'int main(void) { return 0; }' > "$TEMP_CODE" printf %s\\n 'int main(void) { return 0; }' > "$TEMP_CODE"
answer='no' answer='no'

View File

@ -1,7 +1,7 @@
# Creates config.mk and config.h. # Creates config.mk and config.h.
vars='' vars=''
add_define MAKEFILE GLOBAL_CONFIG_DIR "$GLOBAL_CONFIG_DIR" add_define MAKEFILE GLOBAL_CONFIG_DIR "$GLOBAL_CONFIG_DIR"
set -- $(set | grep ^HAVE_) eval "set -- $CONFIG_OPTS"
while [ $# -gt 0 ]; do while [ $# -gt 0 ]; do
tmpvar="${1%=*}" tmpvar="${1%=*}"
shift 1 shift 1

View File

@ -16,7 +16,7 @@ public:
}; };
EOF EOF
HAVE_MOC=no add_opt MOC no
if [ "$HAVE_QT" = "yes" ]; then if [ "$HAVE_QT" = "yes" ]; then
moc_works=0 moc_works=0
if [ "$MOC" ]; then if [ "$MOC" ]; then

View File

@ -1,4 +1,23 @@
print_help_option() # $1 = option $@ = description # add_opt
# $1 = HAVE_$1
# $2 = value ['auto', 'no' or 'yes', checked only if non-empty]
add_opt()
{ setval="$(eval "printf %s \"\$USER_$1\"")"
[ "${2:-}" ] && ! match "$setval" no yes && eval "HAVE_$1=\"$2\""
for opt in $(printf %s "$CONFIG_OPTS"); do
case "$opt" in
"$1") return 0 ;;
esac
done
CONFIG_OPTS="${CONFIG_OPTS} $1"
}
# print_help_option
# $1 = option
# $@ = description
print_help_option()
{ {
_opt="$1" _opt="$1"
shift 1 shift 1
@ -68,12 +87,16 @@ opt_exists() # $opt is returned if exists in OPTS
parse_input() # Parse stuff :V parse_input() # Parse stuff :V
{ BUILD='' { BUILD=''
OPTS='' OPTS=''
CONFIG_OPTS=''
config_opts='./configure' config_opts='./configure'
while read -r VAR _; do while read -r VAR _; do
TMPVAR="${VAR%=*}" TMPVAR="${VAR%=*}"
NEWVAR="${TMPVAR##HAVE_}" NEWVAR="${TMPVAR##HAVE_}"
OPTS="$OPTS $NEWVAR" OPTS="${OPTS} $NEWVAR"
case "$TMPVAR" in
HAVE_*) CONFIG_OPTS="${CONFIG_OPTS} $NEWVAR" ;;
esac
eval "USER_$NEWVAR=auto" eval "USER_$NEWVAR=auto"
done < 'qb/config.params.sh' done < 'qb/config.params.sh'
#OPTS contains all available options in config.params.sh - used to speedup #OPTS contains all available options in config.params.sh - used to speedup
@ -99,7 +122,7 @@ parse_input() # Parse stuff :V
opt_exists "${1##--disable-}" "$1" opt_exists "${1##--disable-}" "$1"
eval "HAVE_$opt=no" eval "HAVE_$opt=no"
eval "USER_$opt=no" eval "USER_$opt=no"
eval "HAVE_NO_$opt=yes" add_opt "NO_$opt" yes
;; ;;
--with-*) --with-*)
arg="${1##--with-}" arg="${1##--with-}"