1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-02 22:25:48 +01:00

Small fixes for 0.51.0, and a missing file.

This commit is contained in:
dan
1999-01-25 21:17:45 +00:00
parent 416e3a82be
commit 75a7f74723
6 changed files with 829 additions and 13 deletions

14
configure vendored
View File

@@ -5297,10 +5297,11 @@ cat <<EOF >get-wraster-flags
prefix="$prefix"
exec_prefix=\$prefix
WFLAGS="-I\$prefix/include $XCFLAGS"
WLIBS="-L\$exec_prefix/lib $XLFLAGS -lwraster $GFXLIBS $XLIBS -lm"
WCFLAGS="-I\$prefix/include $XCFLAGS $GFXFLAGS"
WLFLAGS="-L\$exec_prefix/lib $XLFLAGS $GFXLFLAGS"
WLIBS="-lwraster $GFXLIBS $XLIBS -lm"
usage="Usage: get-wraster-flags #lp#--libs#rp# #lp#--incs#rp#"
usage="Usage: get-wraster-flags #lp#--cflags#rp# #lp#--lflags#rp# #lp#--libs#rp#"
if test \$# -eq 0; then
echo "\${usage}" 1>&2
@@ -5309,8 +5310,11 @@ fi
while test \$# -gt 0; do
case \$1 in
--incs)
echo \$WFLAGS
--cflags)
echo \$WCFLAGS
;;
--lflags)
echo \$WLFLAGS
;;
--libs)
echo \$WLIBS