�&ǐk�@'bJ�h�ۊL'}T� :��'2�Z#$��n�a��� �>a��`��_3d�Qpt�/�P -��#5�,�M��� �pA:©�q�����NW��ډ�A���� �9nʺج���� �TSM��{J6?7��r�@�\����D��� �׶���s�f�TJj?"��D��`?��̒� b�#�%�C*v�$�{�$����5Ծ�F�s��y�e/8��h-�f�̰&(����Gj�L:U� 2�� ����v�_k����Y��gp,�k�WF�R������_C�R��N@���R�@�ߔ?A�w9���F("iNa-S���Q�o�3tDMLh*�#4k�T/iQ��Y*�G��m����)��8�hBm/�I�,g�ﯖ���Z��}�Cz�q@´��d.����L�ŕ�,��1�Z�܌�: ̪���F+J-'��c�tvJ8��]Q-��b��y �6;*J`r_�d ��'�G ~p��)'�C,�%F��E(��2�k�����lР�z�!�=t ��_�0��f7��� ;�p�|�U �% if [ xyes = xno ]; then case $includedir in $prefix/include/ncursesw) includedir=`echo "$includedir" | sed -e 's,/[^/]*$,,'` ;; esac fi LIBS="" if [ "tinfo" = "ncurses" ]; then LIBS="-l${THIS} $LIBS" else LIBS="-l${THIS} -l${TINFO_LIB} $LIBS" fi # Ignore -L options which do not correspond to an actual directory, or which # are standard library directories (i.e., the linker is supposed to search # those directories). # # There is no portable way to find the list of standard library directories. # Require a POSIX shell anyway, to keep this simple. lib_flags= for opt in $LIBS do case $opt in -specs*) # ignore linker specs-files which were used to build library continue ;; -Wl,-z,*) # ignore flags used to manipulate shared image continue ;; -L*) lib_check=`echo "x$opt" | sed -e 's/^.-L//'` [ -d "$lib_check" ] || continue case "$lib_check" in ////) # skip standard libdir (disabled for multilib) if [ "$lib_check" = "$libdir" ] then lib_first=yes IFS_save="$IFS" IFS='|' LIBDIRS="" for lib_check in $LIBDIRS do if [ -d "$lib_check" ] then if [ "$lib_check" != "$libdir" ] then lib_first=no fi break fi done IFS="$IFS_save" [ $lib_first = yes ] && continue found=no for check in $lib_flags do if [ "x$check" = "x$opt" ] then found=yes break fi done [ $found = yes ] && continue : else continue fi ;; *) found=no for check in $lib_flags do if [ "x$check" = "x$opt" ] then found=yes break fi done [ $found = yes ] && continue ;; esac ;; esac lib_flags="$lib_flags $opt" done [ $# = 0 ] && exec /bin/sh $0 --error while [ $# -gt 0 ]; do case "$1" in # basic configuration --prefix) echo "$prefix" ;; --exec-prefix) echo "$exec_prefix" ;; # compile/link --cflags) INCS=" -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600" if [ "xyes" = xno ]; then INCS="$INCS -I${includesubdir}" fi if [ "${includedir}" != /usr/include ]; then INCS="$INCS -I${includedir}" fi sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO $INCS ENDECHO ;; --libs) OPTS= for opt in $lib_flags do [ -n "$OPTS" ] && OPTS="$OPTS " OPTS="${OPTS}${opt}" done printf "%s\n" "$OPTS" ;; --libs-only-L) OPTS= for opt in $lib_flags do case "x$opt" in x-L*) [ -n "$OPTS" ] && OPTS="$OPTS " OPTS="${OPTS}${opt}" ;; esac done printf "%s\n" "$OPTS" ;; --libs-only-l) OPTS= for opt in $lib_flags do case "x$opt" in x-l*) [ -n "$OPTS" ] && OPTS="$OPTS " OPTS="${OPTS}${opt}" ;; esac done printf "%s\n" "$OPTS" ;; --libs-only-other) OPTS= for opt in $lib_flags do case "x$opt" in x-[lL]*) ;; *) [ -n "$OPTS" ] && OPTS="$OPTS " OPTS="${OPTS}${opt}" ;; esac done printf "%s\n" "$OPTS" ;; # identification --version) echo "6.2.20210508" ;; --abi-version) echo "6" ;; --mouse-version) echo "2" ;; # locations --bindir) echo "${bindir}" ;; --datadir) echo "${datadir}" ;; --includedir) INCS= if [ "xyes" = xno ]; then INCS="${includesubdir}" elif [ "${includedir}" != /usr/include ]; then INCS="${includedir}" fi echo $INCS ;; --libdir) ;; --mandir) echo "${mandir}" ;; --terminfo) echo "/usr/share/terminfo" ;; --terminfo-dirs) echo "/etc/terminfo:/usr/share/terminfo" ;; --termpath) echo "" ;; # general info --help) cat <&2 exit 1 ;; esac shift done # vi:ts=4 sw=4 # vile:shmode