git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added necessary headers in netlink/nfq checks.
[stg.git]
/
projects
/
rscriptd
/
build
diff --git
a/projects/rscriptd/build
b/projects/rscriptd/build
index 59927348bab369f99774c204ffbc1fd3e409a52c..5af638ebb34c42f6140e0a1c049e8d9042987cc2 100755
(executable)
--- a/
projects/rscriptd/build
+++ b/
projects/rscriptd/build
@@
-7,7
+7,8
@@
OS=unknown
sys=`uname -s`
OS=unknown
sys=`uname -s`
-release=`uname -r | cut -b1`
+release=`uname -r`
+major=`printf "%s" "$release" | cut -d. -f1`
BUILD_DIR=`pwd`
CONFFILE="../../Makefile.conf"
PREFIX="/"
BUILD_DIR=`pwd`
CONFFILE="../../Makefile.conf"
PREFIX="/"
@@
-35,13
+36,12
@@
LDFLAGS="$LDFLAGS -L/usr/local/lib"
if [ "$sys" = "Linux" ]
then
OS=linux
if [ "$sys" = "Linux" ]
then
OS=linux
- release=""
MAKE="make"
fi
if [ "$sys" = "FreeBSD" ]
then
MAKE="make"
fi
if [ "$sys" = "FreeBSD" ]
then
- case $
release
in
+ case $
major
in
4) OS=bsd;;
5) OS=bsd5;;
6) OS=bsd5;;
4) OS=bsd;;
5) OS=bsd5;;
6) OS=bsd5;;
@@
-51,10
+51,17
@@
then
MAKE="gmake"
fi
MAKE="gmake"
fi
+if [ "$sys" = "Darwin" ]
+then
+ OS=darwin
+ ETC_DIR="./inst/freebsd/etc/stargazer"
+ MAKE="gmake"
+fi
+
if [ "$OS" = "unknown" ]
then
printf "#############################################################################\n"
if [ "$OS" = "unknown" ]
then
printf "#############################################################################\n"
- printf "# Sorry, but rscriptd
currently supported by Linux, FreeBSD 4.x, 5.x, 6.x
#\n"
+ printf "# Sorry, but rscriptd
is currently supported by Linux, FreeBSD and Darwin.
#\n"
printf "#############################################################################\n"
exit 1
fi
printf "#############################################################################\n"
exit 1
fi
@@
-77,14
+84,19
@@
else
if [ "$OS" = "bsd" ]
then
DEFS="$DEFS -DFREE_BSD"
if [ "$OS" = "bsd" ]
then
DEFS="$DEFS -DFREE_BSD"
- LIB_THREAD=-lc_r
else
else
- DEFS="$DEFS -DFREE_BSD5"
if [ "$OS" = "bsd7" ]
then
if [ "$OS" = "bsd7" ]
then
+ DEFS="$DEFS -DFREE_BSD5"
LIB_THREAD=-lpthread
else
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
fi
fi
fi
@@
-169,5
+181,9
@@
printf "DATA_MODE=$DATA_MODE\n" >> $CONFFILE
printf "DIR_MODE=$DIR_MODE\n" >> $CONFFILE
printf "OWNER=$OWNER\n" >> $CONFFILE
printf "DIR_MODE=$DIR_MODE\n" >> $CONFFILE
printf "OWNER=$OWNER\n" >> $CONFFILE
-$MAKE $MAKEOPTS
-
+if [ "$1" != "debug" ]
+then
+ $MAKE $MAKEOPTS
+else
+ printf "\n\n\nDebug build. Type $MAKE explicitly\n"
+fi