X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/fc0e3a75f76a611f67a846737dabda1c64b2ecd0..154bc708621a9073b7b434fb0591f5795542f843:/projects/rscriptd/build?ds=sidebyside diff --git a/projects/rscriptd/build b/projects/rscriptd/build index 62681932..451e08aa 100755 --- a/projects/rscriptd/build +++ b/projects/rscriptd/build @@ -46,15 +46,20 @@ then 5) OS=bsd5;; 6) OS=bsd5;; 7) OS=bsd7;; - 8) OS=bsd7;; - 9) OS=bsd7;; - *) OS=unknown;; + *) OS=bsd7;; esac MAKE="gmake" fi +if [ "$sys" = "Darwin" ] +then + OS=darwin + ETC_DIR="./inst/freebsd/etc/stargazer" + MAKE="gmake" +fi + if [ "$OS" = "unknown" ] -then +then printf "#############################################################################\n" printf "# Sorry, but rscriptd currently supported by Linux, FreeBSD 4.x, 5.x, 6.x #\n" printf "#############################################################################\n" @@ -65,12 +70,11 @@ printf "######################################################################## printf " Building rscriptd for $sys $release\n" printf "#############################################################################\n" -STG_LIBS="logger.lib - locker.lib - crypto.lib - common.lib - scriptexecuter.lib - conffiles.lib" +STG_LIBS="logger.lib + crypto.lib + common.lib + scriptexecuter.lib + conffiles.lib" if [ "$OS" = "linux" ] then @@ -80,14 +84,19 @@ else if [ "$OS" = "bsd" ] then DEFS="$DEFS -DFREE_BSD" - LIB_THREAD=-lc_r else - DEFS="$DEFS -DFREE_BSD5" if [ "$OS" = "bsd7" ] then + DEFS="$DEFS -DFREE_BSD5" LIB_THREAD=-lpthread else - LIB_THREAD=-lc_r + if [ "$OS" == "darwin" ] + then + DEFS="$DEFS -DDARWIN" + LIB_THREAD=-lpthread + else + LIB_THREAD=-lc_r + fi fi fi fi