view buildsys/lua/bootstrap.sh @ 553:a93bb23fca8c

win build fix
author Tassilo Philipp
date Mon, 20 Jun 2022 15:25:01 +0200
parents 3e629dc19168
children
line wrap: on
line source

#!/bin/sh
if [ -z "${DL}" ]; then
  DL=wget
fi
case `uname -s` in
  Darwin)
    LPLAF=macosx
    ;;
  Linux)
    LPLAF=linux
    ;;
  FreeBSD)
    LPLAF=freebsd
    ;;
  SunOS)
    LPLAF=solaris
    ;;
  AIX)
    LPLAF=aix
    ;;
  DragonFly)
    LPLAF=bsd
    ;;
  *BSD)
    LPLAF=bsd
    ;;
  *)
    LPLAF=posix
    ;;
esac
DL="${DL}" make -f `dirname $0`/Makefile lua-5.1.4
(cd lua-5.1.4; make ${LPLAF})