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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397
|
#!/usr/bin/env bash
#
# vim:set ts=4 et:
#
# generate config.mk for gbsplay Makefile
#
# 2003-2025 (C) by Christian Garbs <mitch@cgarbs.de>
# Tobias Diedrich <ranma+gbsplay@tdiedrich.de>
#
# Licensed under GNU GPL v1 or, at your option, any later version.
#
## initialize interpreter parameters
set -u # bail on use of uninitialized variables
trap 'exit_trap' EXIT
## initialize variables
EXTRA_ALL=
EXTRA_INSTALL=
EXTRA_SRCS=
EXTRA_UNINSTALL=
EXTRA_I18NFLAGS=
CC="${CC-gcc}" # use gcc by default
CONFIGURE_FLAGS="${CONFIGURE_FLAGS- }"
CFLAGS="${CFLAGS-}"
LDFLAGS="${LDFLAGS-}"
HOSTCC="$CC"
HOSTOS=$(uname)
HOSTARCH=$(uname -m)
BUILDCC="$HOSTCC"
BUILDOS="$HOSTOS"
BUILDARCH="$HOSTARCH"
TMPDIR=${TMPDIR-/tmp}
package=gbsplay
prefix=/usr/local
exec_prefix=
bindir=
libdir=
mandir=
docdir=
localedir=
mimedir=
appdir=
includedir=
pkgconfigdir=
sysconfdir=
buildalias=
hostalias=
windows_build=
windows_libprefix=
EXTRA_INCLUDEDIRS_TO_CHECK=
EXTRA_LIBDIRS_TO_CHECK=
## define sane environment
unset LC_ALL LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY \
LC_MESSAGES LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE \
LC_MEASUREMENT LC_IDENTIFICATION
LANG=C
export LANG
## set default version number to unknown
# will be overwritten on git build or tar.gz export using 'make dist'
VERSION=unknown
##### begin of subroutines
exit_trap()
{
EXIT_CODE=$?
test $EXIT_CODE -ne 0 && tail config.err
exit $EXIT_CODE
}
## die with error
die()
{
test -n "$1" && echo "$1"
rm -rf "$TEMPDIR"
exit 1
}
## guesstimate most recent gbsplay release
get_version_from_history()
{
local date dash version
while read -r date dash version _; do
if [ "$dash" = - ] \
&&[[ $date =~ ^[0-9]{4}/[0-9]{2}/[0-9]{2} ]] \
&& [[ $version =~ [0-9]+.[0-9]+.[0-9]+ ]]; then
# fix linebreaks on MSYS and MINGW builds - yuck!
version=$(echo "${version}" | tr -d $'\r')
echo "${version}ish"
return
fi
done < HISTORY
echo "undetermined"
}
## check for presense of include files
check_include()
{
local include="$1"
local includedirs="${2-} /usr/local/include /opt/local/include ${EXTRA_INCLUDEDIRS_TO_CHECK}"
local extraline="${3-}"
local includename="$(echo "$include" | sed -e 's@[/\.-]@_@g')"
eval "value=\${have_${includename}-}"
test -z "$value" || return
local flags=""
for dir in "" $includedirs; do
msg="checking for $include"
test -z "$dir" || msg="$msg in $dir"
test -z "$dir" || flags="-I$dir"
if cc_check "$msg" "have_$includename" "$flags" ok <<EOF; then
$extraline
#include <$include>
int main(int argc, char **argv) {
return 0;
}
EOF
eval "include_${includename}_path=\"$dir \""
return 0
fi
done
return 1
}
## find library path needed for lib
find_lib()
{
local INFILE="$TEMPDIR/fl.c"
local lib="$1"
local libname="$(echo "$lib" | sed -e 's@[/\.-]@_@g')"
local libdirs="${2-} /usr/local/lib /opt/local/lib ${EXTRA_LIBDIRS_TO_CHECK}"
cat > "$INFILE"
eval "val=\"\${lib${libname}_path-}\""
if [ ! -z "$val" ]; then
return 0
else
for dir in "" $libdirs; do
msg="looking for -l$lib"
flags="-l$lib"
test -z "$dir" || msg="$msg in $dir"
test -z "$dir" || flags="$flags -L$dir"
if cc_check "$msg" "" "$flags" ok < "$INFILE"; then
eval "lib${libname}_path=\"$dir \""
return 0
fi
done
fi
return 1
}
## remove duplicate flags
remove_dupes()
{
local flags="$1"
local newflags=""
for i in $flags; do
local dupe=0
for j in $newflags; do
test "$i" = "$j" && dupe=1
done
if [ $dupe -eq 0 ]; then
newflags="$(test -z "$newflags" || printf "%s " "$newflags")$i"
fi
done
echo "$newflags"
}
append_nodupe()
{
local varname="$1"
local dupe=0
while [ -n "${2-}" ]; do
eval "flags=\"\$$varname\""
local append="$2"
if [ -n "$flags" ]; then
for i in $flags; do
test "$i" = "$append" && dupe=1
done
fi
if [ $dupe -eq 0 ]; then
if [ -z "$flags" ]; then
eval "${varname}=\"$append\""
else
eval "${varname}=\"$flags $append\""
fi
fi
shift
done
}
## check for needed extra libraries and library paths for a lib
check_libs()
{
local INFILE="$TEMPDIR/cl.c"
local OUTFILE="$TEMPDIR/cl"
local checklib="$1"
local libname="$(echo "$checklib" | sed -e 's@[/\.-]@_@g' -e 's/ //g')"
local extralibs="${checklib} ${2-}"
local extralibdirs="${3-}"
local name="${4-}"
local extraflags="${5-}"
local msg="${6-$checklib}"
local cflags="$CFLAGS $LDFLAGS"
# don't let -pedantic mess with our checks
cflags="$(sed -E 's/-pedantic ?//g'<<<"$cflags")"
eval "lib${libname}_flags="
cat > "$INFILE"
cc_check "checking if we need additional libs for $msg" "" "$extraflags" "no" "yes" < "$INFILE"
test $? -eq 0 && return 0
for extralib in $extralibs; do
local libname="$(echo "$extralib" | sed -e 's@[/\.-]@_@g')"
find_lib "$extralib" "$extralibdirs" < "$INFILE"
test $? -ne 0 && return 1
eval "val=\"\$lib${libname}_path\""
if [ "$val" != " " ]; then
append_nodupe extraflags "-L$val"
fi
done
local minerrs=$($BUILDCC -o "$OUTFILE" "$INFILE" $cflags $extraflags 2>&1 | wc -l)
for extralib in $extralibs; do
local errs=$($BUILDCC -o "$OUTFILE" "$INFILE" $cflags "-l$extralib" $extraflags 2>&1 | wc -l)
if [ "$errs" -lt "$minerrs" ]; then
minerrs=$errs
append_nodupe extraflags "-l$extralib"
fi
done
if [ "$minerrs" -ne 0 ]; then
echo "...but it still won't compile cleanly"
# log the default result to config.err
(
echo "minerrs: $minerrs > 0"
cat "$INFILE"
$BUILDCC -o "$OUTFILE" "$INFILE" $cflags "-l$checklib" $extraflags
) 1>&2
return 1
fi
eval "lib${libname}_flags=\"$extraflags\""
return 0
}
## generalized 'does it compile' check
cc_check()
{
local INFILE="$TEMPDIR/cc.c"
local OUTFILE="$TEMPDIR/cc"
local name="$1"
local varname="$2"
local flags="$CFLAGS $LDFLAGS ${3-}"
local okmsg="${4-ok}"
local errmsg="${5-not found}"
test "$name" && printf "%s: " "$name"
cat > "$INFILE"
if "$BUILDCC" -o "$OUTFILE" "$INFILE" $flags; then
test "$name" && echo "$okmsg"
test "$varname" && eval "$varname=yes"
return 0
else
test "$name" && echo "$errmsg"
test "$varname" && eval "$varname=no"
return 1
fi
}
cc_has_flag()
{
local flag="$1"
cc_check "checking if cc supports ${flag}" "" "${flag} -Werror" yes no <<EOF
int main(int argc, char **argv) { return 0; }
EOF
}
need_include() {
if ! check_include "$1"; then
die "Could not find $1, which is needed for compilation."
fi
}
## config.h helper
have_x() {
local localvar="have_$(echo $1 | tr A-Z a-z)"
eval "result=\$$localvar"
if [ "$result" = "yes" ]; then
echo "#define HAVE_$1 1"
else
echo "/* #undef HAVE_$1 */"
fi
}
plugout_x() {
local localvar="use_$(echo $1 | tr A-Z a-z)"
eval "result=\$$localvar"
if [ "$result" = "yes" ]; then
echo "#define PLUGOUT_$1 1"
else
echo "/* #undef PLUGOUT_$1 */"
fi
}
use_x() {
local localvar="use_$(echo $1 | tr A-Z a-z)"
eval "result=\$$localvar"
if [ "$result" = "yes" ]; then
echo "#define USE_$1 1"
else
echo "/* #undef USE_$1 */"
fi
}
# set variable to default value if empty
# really the same as $var="${var-$default}"
setdefault()
{
eval "value=\$$1"
if [ -z "$value" ]; then
eval "$1=$2"
fi
}
# check if $1 is a known feature
isknown()
{
for i in $OPTS; do
if [ "$i" = "$1" ]; then
return 0
fi
done
if [ "${1#use_}" != "$1" ]; then
echo "unknown feature '${1#use_}'"
elif [ "${1#build_}" != "$1" ]; then
echo "unknown module '${1#build_}'"
else
echo "unknown option '$2'"
fi
echo
return 1
}
# list enabled $1 (modules, features)
# of type $2 (build, use)
printoptional()
{
printf "%s %s:" "${3-optional}" "$1"
for i in $OPTS; do
eval "val=\$$i"
if [ "${i#${2}_}" != "$i" ]; then
if [ "$val" = "yes" ]; then
printf " +%s" "${i#${2}_}"
elif [ "$val" = "no" ]; then
printf " -%s" "${i#${2}_}"
fi
fi
done
echo
}
# remember state of use_$1
remember_use()
{
eval "remembered=\$use_$1"
}
# check state of use_$1 against remembered state
# error out if option was requested but can't be satisfied after checks
recheck_use()
{
eval "val=\$use_$1"
if [ "$remembered" = 'yes' ] && [ "$val" != 'yes' ]; then
die "error: --enable-$1 was requested but is not available"
fi
}
# parse option $1
parseoption()
{
case $1 in
--prefix=*)
prefix="${1#--prefix=}"
;;
--exec-prefix=*)
exec_prefix="${1#--exec-prefix=}"
;;
--bindir=*)
bindir="${1#--bindir=}"
;;
--mandir=*)
mandir="${1#--mandir=}"
;;
--docdir=*)
docdir="${1#--docdir=}"
;;
--localedir=*)
localedir="${1#--localedir=}"
;;
--mimedir=*)
mimedir="${1#--mimedir=}"
;;
--appdir=*)
appdir="${1#--appdir=}"
;;
--includedir=*)
includedir="${1#--includedir=}"
;;
--pkgconfigdir=*)
pkgconfigdir="${1#--pkgconfigdir=}"
;;
--sysconfdir=*)
sysconfdir="${1#--sysconfdir=}"
;;
--infodir=*)
infodir="${1#--infodir=}"
;;
--datadir=*)
datadir="${1#--datadir=}"
;;
--localstatedir=*)
localstatedir="${1#--localstatedir=}"
;;
--host=*)
hostalias="${1#--host=}"
HOSTCC="${hostalias}-${CC}"
;;
--build=*)
buildalias="${1#--build=}"
BUILDCC="${buildalias}-${CC}"
;;
--have-*)
eval "have_${1#--have-}=yes"
isknown "have_${1#--have-}" "$1" || usage 1
;;
--donthave-*)
eval "have_${1#--donthave-}=no"
isknown "have_${1#--donthave-}" "$1" || usage 1
;;
--enable-*)
eval "use_${1#--enable-}=yes"
isknown "use_${1#--enable-}" || usage 1
;;
--disable-*)
eval "use_${1#--disable-}=no"
isknown "use_${1#--disable-}" || usage 1
;;
--with-*)
eval "build_${1#--with-}=yes"
isknown "build_${1#--with-}" || usage 1
;;
--without-*)
eval "build_${1#--without-}=no"
isknown "build_${1#--without-}" || usage 1
;;
CFLAGS=*)
CFLAGS="${1#CFLAGS=}"
;;
LDFLAGS=*)
LDFLAGS="${1#LDFLAGS=}"
;;
--help)
usage 0
;;
*)
echo "unknown option '$1'"
echo
usage 1
;;
esac
}
##### end of subroutines
## enable logging of errors
ERRORLOG=config.err
exec 2> $ERRORLOG
## find a path for tmp directory
TMPPATH="/tmp"
if [ "$TMPDIR" ]; then
TMPPATH="$TMPDIR"
fi
if [ ! -d "$TMPPATH" ]; then
TMPPATH="."
fi
## generate tmp directory
BASENAME="$(basename "$0")"
if command -v mktemp >/dev/null; then
TEMPDIR="$(mktemp -d "$TMPPATH/$BASENAME.XXXXXXXXXX")"
RESULT=$?
else
TEMPDIR="$TMPPATH/$BASENAME.$$"
mkdir "$TEMPDIR"
RESULT=$?
fi
if [ $RESULT -ne 0 ]; then
echo "can't create temporary directory at <$TMPPATH>!"
exit 1;
fi
usage()
{
cat<<EOF
Usage: $0 [OPTION]...
Configuration:
--help display this help and exit
Installation directories:
--prefix=PREFIX install architecture-independent files in PREFIX
[/usr/local]
--exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
[PREFIX]
--bindir=BINDIR install binaries in BINDIR
[EPREFIX/bin]
--libdir=BINDIR install binaries in LIBDIR
[EPREFIX/lib]
--mandir=MANDIR install manpages in MANDIR
[PREFIX/man]
--docdir=DOCDIR install documentation in DOCDIR
[PREFIX/share/doc/$package]
--sysconfdir=SCONFDIR look for system-wide configuration file in SCONFDIR
[/etc]
Optional Features:
--disable-i18n omit libintl support
--disable-hardening disable hardening flags
--disable-zlib disable transparent gzip decompression
--enable-debug build with debug code
--enable-sharedlibgbs build libgbs as a shared library
--enable-verbosebuild give verbose output during build
Optional Modules:
--with-xgbsplay build graphical frontend xgbsplay
--without-contrib don't install contrib scripts
--without-test don't test gbsplay output during build
Output Plugins:
--disable-alsa omit ALSA sound output plugin
--disable-devdsp omit /dev/dsp sound output plugin
--disable-dsound omit Direct Sound output plugin
--disable-iodumper omit iodumper plugin
--disable-midi omit MIDI file writer plugin
--disable-altmidi omit alternative MIDI file writer plugin
--disable-nas omit NAS sound output plugin
--disable-pipewire omit PipeWire sound output plugin
--disable-pulse omit PulseAudio sound output plugin
--disable-sdl omit SDL sound output plugin
--disable-stdout omit stdout file writer plugin
--disable-vgm omit VGM file writer plugin
--disable-wav omit WAV file writer plugin
EOF
exit "$1"
}
OPTS=""
OPTS="${OPTS} build_contrib"
OPTS="${OPTS} build_test"
OPTS="${OPTS} build_xgbsplay"
OPTS="${OPTS} use_alsa"
OPTS="${OPTS} use_debug"
OPTS="${OPTS} use_devdsp"
OPTS="${OPTS} use_dsound"
OPTS="${OPTS} use_hardening"
OPTS="${OPTS} use_i18n"
OPTS="${OPTS} use_iodumper"
OPTS="${OPTS} use_midi"
OPTS="${OPTS} use_altmidi"
OPTS="${OPTS} use_nas"
OPTS="${OPTS} use_pipewire"
OPTS="${OPTS} use_pulse"
OPTS="${OPTS} use_sdl"
OPTS="${OPTS} use_sharedlibgbs"
OPTS="${OPTS} use_stdout"
OPTS="${OPTS} use_vgm"
OPTS="${OPTS} use_wav"
OPTS="${OPTS} use_verbosebuild"
OPTS="${OPTS} use_zlib"
for OPT in $OPTS; do
eval "${OPT}="
done
## load user config
if [ -f config.conf ]; then
printf "loading config.conf... "
while read -r line; do
parseoption "$line"
done < config.conf
echo ok
fi
## flags from CONFIGURE_FLAGS env (for travis-ci)
for flag in ${CONFIGURE_FLAGS}; do
parseoption "$flag"
done
## commandline flags
while [ "${1-}" ]; do
parseoption "$1"
shift
done
case "$BUILDOS" in
Linux)
if { [ "$BUILDARCH" = "i386" ] \
|| [ "$BUILDARCH" = "i486" ] \
|| [ "$BUILDARCH" = "i586" ] \
|| [ "$BUILDARCH" = "i686" ] \
|| [ "$BUILDARCH" = "x86_64" ]; \
}; then
setdefault build_test yes
else
# expected test failures:
# MD5 sum mismatch due to floating point discrepancies in libimpulse
setdefault build_test no
fi
;;
Darwin)
setdefault build_test yes
append_nodupe CFLAGS "-D_DARWIN_C_SOURCE=1"
EXTRA_INCLUDEDIRS_TO_CHECK=/opt/homebrew/include
EXTRA_LIBDIRS_TO_CHECK=/opt/homebrew/lib
;;
MSYS_*)
setdefault build_test yes
;;
MINGW32_*|MINGW64_*)
# known test failure:
# - util.c does not test-compile properly
# - srand(0) in test_shuffle() in util.c gives a different order
setdefault build_test no
;;
*)
setdefault build_test no
;;
esac
## more defaults
setdefault build_xgbsplay no
setdefault build_contrib yes
## disable test when cross-compiling
if [ -n "$buildalias" ] && [ "$buildalias" != "$hostalias" ]; then
build_test=no
fi
## determine version that is built
if [ -f .git/HEAD ]; then
# from git if the build happens in a repository
if ! VERSION=$(git describe --tags); then
# no tags available (we might be in a GitHub CI build), so cobble something together
if ! gitversion=$(git describe --tags --always); then
# we might be in a GitHub CI build where no git command is available (eg. the FreeBSD build VM)
if [ "$GITHUB_SHA" ]; then
gitversion="${GITHUB_SHA::7}"
else
gitversion="unknown"
fi
fi
VERSION="$(get_version_from_history)-git-${gitversion}"
fi
elif [ "$VERSION" = unknown ]; then
# get a rough version number based on HISTORY file
VERSION="$(get_version_from_history)"
fi
echo "configure gbsplay $VERSION"
## check for C compiler
printf "checking for working compiler: "
INFILE="$TEMPDIR/cc.c"
OUTFILE="$TEMPDIR/cc"
cat > "$INFILE" <<EOF
int main(int argc, char **argv) {
return 0;
}
EOF
$BUILDCC -o "$OUTFILE" "$INFILE" $CFLAGS $LDFLAGS
RESULT=$?
if [ $RESULT -eq 0 ]; then
if [ "$buildalias" ] && [ "$buildalias" != "$hostalias" ]; then
echo "cross-compiling, skipping execute check"
else
if [ -s "$OUTFILE" ]; then
if "$OUTFILE"; then
echo "ok"
else
die "can't execute generated code"
fi
else
die "no code generated"
fi
fi
else
die "error executing '$BUILDCC'"
fi
## check for windows environment
# see http://msys2.org/wiki/Porting/
cc_check "checking if target is windows" windows_build "" yes no <<EOF
int main(int argc, char **argv)
{
#if defined(_WIN32) || defined(_WIN64) || defined(__CYGWIN__)
return 0;
#else
not windows, fail compile
#endif
}
EOF
if [ "$windows_build" = yes ]; then
# stack-protector has some bugs on Windows
setdefault use_hardening no
# don't look for audio libs that are unavailable on Windows
setdefault use_alsa no
setdefault use_nas no
setdefault use_pipewire no
setdefault use_pulse no
if cc_check "" "" "" <<EOF; then
int main(int argc, char **argv)
{
#if defined(__MSYS__)
return 0;
#else
not msys, fail compile
#endif
}
EOF
windows_libprefix=msys2
elif cc_check "" "" "" <<EOF; then
int main(int argc, char **argv)
{
#if defined(__CYGWIN__)
return 0;
#else
not cygwin, fail compile
#endif
}
EOF
windows_libprefix=cyg
else
# mingw
windows_libprefix=lib
fi
else
# not windows
setdefault use_hardening yes
fi
## check for various headers
need_include inttypes.h
if [ "$use_zlib" != no ]; then
remember_use zlib
check_include zlib.h
retval1=$?
retval2=1
if [ $retval1 -eq 0 ]; then
check_libs "z" <<EOF
#include <zlib.h>
int main(int argc, char** argv) {
z_stream strm = {0};
inflateInit(&strm);
return 0;
}
EOF
retval2=$?
fi
use_zlib=no
if [ "$retval1" -eq 0 ] && [ "$retval2" -eq 0 ]; then
use_zlib="$have_zlib_h"
append_nodupe LDFLAGS "-lz"
fi
recheck_use zlib
fi
if [ "$use_devdsp" != no ]; then
remember_use devdsp
check_include sys/soundcard.h
use_devdsp="$have_sys_soundcard_h"
# this check is needed for FreeBSD but it only works when the C11 flags are used
C11_FLAGS="-D_XOPEN_SOURCE=500 -D_POSIX_C_SOURCE=200809L"
if [ "$have_sys_soundcard_h" = yes ]; then
if ! cc_check "checking if we need additional flags for sys/soundcard.h" "" "$C11_FLAGS" "no" "yes" <<EOF; then
#include <sys/soundcard.h>
int main(int argc, char **argv)
{
#ifdef OPEN_SOUND_SYSTEM
return 0;
#else
return 1;
#endif
}
EOF
if cc_check "checking if we need __BSD_VISIBLE for sys/soundcard.h" "" "$C11_FLAGS -D__BSD_VISIBLE" "yes" "no" <<EOF; then
#include <sys/soundcard.h>
int main(int argc, char **argv)
{
#ifdef OPEN_SOUND_SYSTEM
return 0;
#else
return 1;
#endif
}
EOF
append_nodupe CFLAGS "-D__BSD_VISIBLE"
else
echo "no way found to make sys/soundcard.h work"
use_devdsp=no
fi
fi
fi
recheck_use devdsp
fi
if [ "$use_alsa" != no ]; then
remember_use alsa
check_include alsa/asoundlib.h
use_alsa="$have_alsa_asoundlib_h"
cc_check "checking for ESTRPIPE support" have_estrpipe <<EOF
#include <errno.h>
#include <alsa/asoundlib.h>
int main(int argc, char **argv)
{
if (ESTRPIPE == 0)
return 1; /* Never reached. */
return 0;
}
EOF
recheck_use alsa
fi
if [ "$use_dsound" != no ]; then
remember_use dsound
check_include dsound.h /usr/include/w32api "#include <windows.h>"
retval1=$?
retval2=1
if [ $retval1 -eq 0 ]; then
check_libs dsound <<EOF
#include <windows.h>
#include <dsound.h>
int main(int argc, char** argv) {
LPDIRECTSOUND8 lp;
HRESULT hr = DirectSoundCreate8(NULL, &lp, NULL);
if (SUCCEEDED(hr)) IDirectSound8_Release(lp);
return 0;
}
EOF
retval2=$?
fi
use_dsound=no
if [ "$retval1" -eq 0 ] && [ "$retval2" -eq 0 ]; then
use_dsound="$have_dsound_h"
fi
recheck_use dsound
fi
if [ "$use_pipewire" != no ]; then
remember_use pipewire
pipewire_version='libpipewire-0.3'
if command -v pkg-config >/dev/null && pkg-config ${pipewire_version}; then
pipewire_have_pkg_config=yes
else
pipewire_have_pkg_config=no
fi
if [ "$pipewire_have_pkg_config" = yes ]; then
pipewire_include_flags="$(pkg-config --cflags-only-I ${pipewire_version})"
pipewire_cflags="$(pkg-config --cflags-only-other ${pipewire_version})"
else
pipewire_include_flags='-I/usr/include/pipewire-0.3 -I/usr/include/spa-0.2'
pipewire_cflags=''
fi
pipewire_include_path="$(sed -e 's/^-I//' -e 's/ -I/ /g' <<<"${pipewire_include_flags}")"
check_include spa/support/plugin.h "$pipewire_include_path"
if [ "$have_spa_support_plugin_h" = yes ]; then
append_nodupe CFLAGS "-I${include_spa_support_plugin_h_path}"
check_include pipewire/pipewire.h "$pipewire_include_path"
if [ "$have_pipewire_pipewire_h" = yes ]; then
append_nodupe CFLAGS "-I${include_pipewire_pipewire_h_path} ${pipewire_cflags}"
if [ "$pipewire_have_pkg_config" = yes ]; then
pipewire_ldpath_flags="$(pkg-config --libs-only-L ${pipewire_version})"
pipewire_libname_flags="$(pkg-config --libs-only-l ${pipewire_version})"
pipewire_ldflags="$(pkg-config --libs-only-other ${pipewire_version})"
else
pipewire_ldpath_flags=''
pipewire_libname_flags='-lpipewire-0.3'
pipewire_ldflags=''
fi
pipewire_ldpath="$(sed -e 's/^-L//' -e 's/ -L/ /g' <<<"${pipewire_ldpath_flags}")"
pipewire_libname="${pipewire_libname_flags#*-l}"
check_libs "${pipewire_libname}" "" "${pipewire_ldpath}" "" "${pipewire_ldflags}" <<EOF
#include <pipewire/pipewire.h>
int main(int argc, char **argv) {
pw_init(0, NULL);
pw_deinit();
return 0;
}
EOF
if [ "$?" -eq 0 ]; then
use_pipewire=yes
fi
fi
fi
recheck_use pipewire
fi
if [ "$use_pulse" != no ]; then
remember_use pulse
check_include pulse/simple.h
use_pulse="$have_pulse_simple_h"
recheck_use pulse
fi
if [ "$use_nas" != no ]; then
remember_use nas
check_include audio/audiolib.h "/usr/X11R6/include"
retval1=$?
retval2=1
if [ $retval1 -eq 0 ]; then
check_libs audio "X11 Xt m" "/usr/X11R6/lib /usr/X11/lib /usr/lib/X11" <<EOF
int main(int argc, char **argv) { return 0; }
EOF
retval2=$?
fi
use_nas=no
if [ "$retval1" -eq 0 ] && [ "$retval2" -eq 0 ]; then
if [ "$include_audio_audiolib_h_path" != " " ]; then
append_nodupe CFLAGS "-I$include_audio_audiolib_h_path"
fi
use_nas=yes
fi
recheck_use nas
fi
if [ "$use_sdl" != no ]; then
remember_use sdl
if command -v sdl2-config >/dev/null; then
sdl2_include_path="$(sdl2-config --cflags)"
sdl2_include_path="${sdl2_include_path#*-I}"
sdl2_include_path="${sdl2_include_path%% -*}"
else
sdl2_include_path='/usr/include/SDL2 /usr/local/include/SDL2 /opt/local/include/SDL2 /opt/homebrew/include/SDL2'
fi
check_include SDL.h "$sdl2_include_path" "#define SDL_MAIN_HANDLED"
if [ "$have_SDL_h" = yes ]; then
if [ "$include_SDL_h_path" != ' ' ]; then
append_nodupe CFLAGS "-I$include_SDL_h_path"
fi
if command -v sdl2-config >/dev/null; then
sdl2_lib_path="$(sdl2-config --libs)"
sdl2_lib_path="${sdl2_lib_path#*-L}"
sdl2_lib_path="${sdl2_lib_path%% -*}"
else
sdl2_lib_path="/usr/lib /usr/local/lib /opt/local/lib /opt/homebrew/lib"
fi
check_libs SDL2 "" "$sdl2_lib_path" <<EOF
#define SDL_MAIN_HANDLED
#include <SDL.h>
int main(int argc, char **argv) {
SDL_Init(0);
return 0;
}
EOF
if [ "$?" -eq 0 ]; then
use_sdl=yes
fi
fi
recheck_use sdl
fi
# plugout_stdout produces garbage if stdout writes in text mode and converts LF to CRLF
if [ "$use_stdout" != no ]; then
remember_use stdout
printf "checking if stdout converts line endings: "
cc_check "" "" <<EOF
#include <stdio.h>
int main(int argc, char **argv) {
fputs("\n", stdout);
return 0;
}
EOF
bytes_written="$("$TEMPDIR/cc" | wc -c)"
if [ "$bytes_written" -eq 1 ]; then
echo "no"
else
echo "yes"
# LF/CRLF conversion should only happen on Windows and setmode() should be available to fix it
if cc_check "checking for setmode() in fcntl.h" have_setmode <<EOF; then
#include <fcntl.h>
#include <unistd.h>
int main(int argc, char **argv) {
return setmode(STDOUT_FILENO, O_BINARY);
}
EOF
have_setmode=yes
else
have_setmode=no
use_stdout=no
fi
fi
recheck_use stdout
fi
if [ "$use_i18n" != no ]; then
remember_use i18n
check_include locale.h
check_include libintl.h
## check for gettext
printf "checking for gettext tools: "
have_xgettext=yes
for i in xgettext msgmerge msgfmt msgen; do
if ! command -v $i >/dev/null; then
test "$have_xgettext" = "yes" && echo "not ok"
have_xgettext=no
echo "$i is missing"
fi
done
test "$have_xgettext" = "yes" && echo "ok"
use_i18n=no
if [ "$have_locale_h" = "yes" ] && [ "$have_libintl_h" = "yes" ]; then
if [ "$include_locale_h_path" != " " ]; then
append_nodupe CFLAGS "-I$include_locale_h_path"
EXTRA_I18NFLAGS="$EXTRA_I18NFLAGS -I$include_locale_h_path"
fi
if [ "$include_libintl_h_path" != " " ]; then
append_nodupe CFLAGS "-I$include_libintl_h_path"
EXTRA_I18NFLAGS="$EXTRA_I18NFLAGS -I$include_libintl_h_path"
fi
check_libs intl "" "" "" "$EXTRA_I18NFLAGS" <<EOF
#include <libintl.h>
int main(int argc, char **argv)
{
bindtextdomain("foo", "bar");
textdomain("foo");
gettext("msg");
return 0;
}
EOF
if [ $? -eq 0 ]; then
use_i18n=yes
if [ "$libintl_flags" != "" ]; then
append_nodupe LDFLAGS "$libintl_flags"
fi
fi
fi
recheck_use i18n
fi
printf "checking for doxygen: "
if command -v doxygen >/dev/null; then
echo "ok"
have_doxygen=yes
else
echo "not found"
have_doxygen=no
fi
## can xgbsplay be built?
if [ "$build_xgbsplay" != "no" ]; then
## check for XCB
check_include xcb/xcb.h \
&& check_include xcb/xcb_icccm.h "" "#include <xcb/xcb.h>" \
&& check_include "cairo/cairo-xcb.h"
retval1=$?
retval2=1
if [ $retval1 -eq 0 ]; then
check_libs xcb <<EOF
#include <xcb/xcb.h>
#include <stdio.h>
int main(int argc, char **argv) {
printf("%d\n", xcb_connect != NULL);
return 0;
}
EOF
retval2=$?
check_libs xcb-icccm <<EOF
#include <xcb/xcb.h>
#include <xcb/xcb_icccm.h>
#include <stdio.h>
int main(int argc, char **argv) {
printf("%d\n", xcb_icccm_set_wm_name != NULL);
return 0;
}
EOF
retval3=$?
check_libs cairo <<EOF
#include <xcb/xcb.h>
#include <cairo/cairo-xcb.h>
#include <stdio.h>
int main(int argc, char **argv) {
printf("%d\n", cairo_create != NULL);
return 0;
}
EOF
retval4=$?
# combine returncodes for next if block
if [ $retval3 -ne 0 ] || [ $retval4 -ne 0 ]; then
retval2=1
fi
fi
if [ $retval1 -eq 0 ] && [ $retval2 -eq 0 ]; then
if [ "$include_xcb_xcb_h_path" != " " ]; then
append_nodupe CFLAGS "-I$include_xcb_xcb_h_path"
fi
if [ "$include_xcb_xcb_icccm_h_path" != " " ]; then
append_nodupe CFLAGS "-I$include_xcb_xcb_icccm_h_path"
fi
if [ "$include_cairo_cairo_xcb_h_path" != " " ]; then
append_nodupe CFLAGS "-I$include_cairo_cairo_xcb_h_path"
fi
EXTRA_INSTALL="$EXTRA_INSTALL xgbsplay"
EXTRA_UNINSTALL="$EXTRA_UNINSTALL xgbsplay"
else
build_xgbsplay=no
fi
fi
## enable a slightly more modern c dialect (C11 or C17)
if cc_has_flag "-std=c17"; then
# C17 only has bugfixes and is otherwise identical to C11
append_nodupe CFLAGS "-std=c17"
else
if cc_has_flag "-std=c11"; then
append_nodupe CFLAGS "-std=c11"
fi
fi
## check compiler features
if cc_has_flag "-Wdeclaration-after-statement"; then
append_nodupe CFLAGS "-Wdeclaration-after-statement"
fi
if cc_has_flag "-Wvla"; then
append_nodupe CFLAGS "-Wvla"
fi
if cc_has_flag "-Wimplicit-fallthrough"; then
append_nodupe CFLAGS "-Wimplicit-fallthrough"
fi
if cc_has_flag "-Wswitch-unreachable"; then
append_nodupe CFLAGS "-Wswitch-unreachable"
fi
if [ "$use_hardening" != "no" ]; then
append_nodupe CFLAGS -D_FORTIFY_SOURCE=2
if cc_has_flag "-Wl,-z,relro"; then
append_nodupe LDFLAGS "-Wl,-z,relro"
fi
if cc_has_flag "-Wl,-z,now"; then
append_nodupe LDFLAGS "-Wl,-z,now"
fi
if cc_has_flag "-Wl,-pie"; then
append_nodupe LDFLAGS "-Wl,-pie"
elif cc_has_flag "-pie"; then
append_nodupe LDFLAGS "-pie"
fi
if cc_has_flag "-fstack-protector-strong" \
&& cc_check "checking if -fstack-protector-strong actually works" "" "-fstack-protector-strong" "yes" "no" <<EOF; then
int main(int argc, char **argv)
{
char buf[65536];
return 0;
}
EOF
append_nodupe CFLAGS "-fstack-protector-strong"
append_nodupe LDFLAGS "-fstack-protector-strong"
elif cc_has_flag "-fstack-protector" \
&& cc_check "checking if working -fstack-protector actually works" "" "-fstack-protector" "yes" "no" <<EOF; then
int main(int argc, char **argv)
{
char buf[65536];
return 0;
}
EOF
append_nodupe CFLAGS "-fstack-protector"
append_nodupe LDFLAGS "-fstack-protector"
append_nodupe CFLAGS "--param=ssp-buffer-size=4"
fi
if cc_has_flag "-fstack-clash-protection" \
&& cc_check "checking if -fstack-clash-protection actually works" "" "-fstack-clash-protection" "yes" "no" <<EOF; then
int main(int argc, char **argv)
{
char buf[65536];
return 0;
}
EOF
append_nodupe CFLAGS "-fstack-clash-protection"
append_nodupe LDFLAGS "-fstack-clash-protection"
fi
fi
## set variables we have no test for to default values if not set
setdefault exec_prefix "$prefix"
setdefault bindir "$exec_prefix/bin"
setdefault libdir "$exec_prefix/lib"
setdefault mandir "$prefix/man"
setdefault docdir "$prefix/share/doc/$package"
setdefault localedir "$prefix/share/locale"
setdefault mimedir "$prefix/share/mime"
setdefault appdir "$prefix/share/applications"
setdefault includedir "$prefix/include/libgbs"
setdefault pkgconfigdir "$prefix/share/pkgconfig"
setdefault sysconfdir "/etc"
setdefault use_sharedlibgbs no
setdefault use_verbosebuild no
setdefault use_debug no
setdefault use_midi yes
setdefault use_altmidi yes
setdefault use_stdout yes
setdefault use_vgm yes
setdefault use_wav yes
setdefault use_iodumper yes
printoptional modules build
printoptional features use
append_nodupe CFLAGS -Wall -fsigned-char
if [ "$use_debug" = "yes" ]; then
append_nodupe CFLAGS -g3
else
append_nodupe CFLAGS -Os -pipe -fomit-frame-pointer
fi
EXTRA_CFLAGS="$CFLAGS"
EXTRA_LDFLAGS="$LDFLAGS"
echo "EXTRA_CFLAGS=$EXTRA_CFLAGS"
echo "EXTRA_LDFLAGS=$EXTRA_LDFLAGS"
## generate pkg-config configuration
# can't be done in Makefile because $DESTDIR would show up in the paths
cat > libgbs.pc << __EOF__
Name: libgbs
Description: The Gameboy sound player library
Version: ${VERSION}
Cflags: -I${includedir}/libgbs
Libs: -L${libdir} -lgbs -lm
__EOF__
## write configuration
(
set +u # Allow uninitialised vars here
while read -r var; do
eval "echo \"$var := \$$var\""
done << __EOF__
EXTRA_ALL
EXTRA_CFLAGS
EXTRA_INSTALL
EXTRA_LDFLAGS
EXTRA_SRCS
EXTRA_UNINSTALL
VERSION
prefix
exec_prefix
bindir
libdir
mandir
docdir
localedir
mimedir
appdir
includedir
pkgconfigdir
sysconfdir
CC
BUILDCC
HOSTCC
build_contrib
build_test
build_xgbsplay
have_doxygen
have_xgettext
use_i18n
use_sharedlibgbs
use_verbosebuild
windows_build
windows_libprefix
libaudio_flags
libpipewire_0_3_flags
libSDL2_flags
__EOF__
echo plugout_alsa := $use_alsa
echo plugout_devdsp := $use_devdsp
echo plugout_dsound := $use_dsound
echo plugout_iodumper := $use_iodumper
echo plugout_midi := $use_midi
echo plugout_altmidi := $use_altmidi
echo plugout_nas := $use_nas
echo plugout_pipewire := $use_pipewire
echo plugout_pulse := $use_pulse
echo plugout_sdl := $use_sdl
echo plugout_stdout := $use_stdout
echo plugout_vgm := $use_vgm
echo plugout_wav := $use_wav
echo configured := yes
) > config.mk
(
set +u # Allow uninitialised vars here
echo "#ifndef _CONFIG_H_"
echo "#define GBS_VERSION \"$VERSION\""
echo "#define LOCALE_PREFIX \"$localedir\""
echo "#define SYSCONF_PREFIX \"$sysconfdir\""
plugout_x ALSA
plugout_x DEVDSP
plugout_x DSOUND
plugout_x IODUMPER
plugout_x MIDI
plugout_x ALTMIDI
plugout_x NAS
plugout_x PIPEWIRE
plugout_x PULSE
plugout_x STDOUT
plugout_x SDL
plugout_x VGM
plugout_x WAV
use_x I18N
use_x ZLIB
have_x ESTRPIPE
have_x SETMODE
echo "#endif"
) > config.h
(
echo "s/%%%VERSION%%%/$VERSION/g"
) > config.sed
# show configuration if verbose
if [ "$use_verbosebuild" = yes ]; then
for file in config.mk config.h config.sed libgbs.pc; do
echo
echo "content of generated $file:"
echo "--------"
cat $file
echo "--------"
done
fi
## end
rm -rf "$TEMPDIR"
test -s $ERRORLOG || rm $ERRORLOG
|