]> git.stg.codes - stg.git/blobdiff - projects/stargazer/build
Explicit constructor initialization for the base class added
[stg.git] / projects / stargazer / build
index 637dc739f1c039b6217e48b26809885a081415d0..1779160b5f504f9915c145e6b9e158e4de621f74 100755 (executable)
@@ -112,13 +112,12 @@ echo "##########################################################################
 echo "       Building STG 2.4 for $sys $release"
 echo "#############################################################################"
 
-STG_LIBS="stg_logger.lib 
-          stg_locker.lib
+STG_LIBS="logger.lib 
+          locker.lib
          crypto.lib 
          common.lib 
-         script_executer.lib 
+         scriptexecuter.lib 
          conffiles.lib
-          hostallow.lib 
          pinger.lib 
          dotconfpp.lib"
 
@@ -159,6 +158,25 @@ else
     SHELL="/usr/local/bin/bash"
 fi
 
+echo -n "Checking gcc... "
+gcc --version > /dev/null 2> /dev/null
+if [ $? != 0 ]
+then
+    echo "FAIL!"
+    echo "gcc not found"
+    exit;
+fi
+echo "found"
+echo -n "Checking g++... "
+g++ --version > /dev/null 2> /dev/null
+if [ $? != 0 ]
+then
+    echo "FAIL!"
+    echo "g++ not found"
+    exit;
+fi
+echo "found"
+
 echo -n "Checking endianess... "
 echo "int main() { int probe = 0x00000001; return *(char *)&probe; }" > build_check.c
 gcc $CXXFLAGS $LDFLAGS build_check.c -o fake > /dev/null 2> /dev/null