X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/762a2c91535d98ff0fa95aed91abbb5155c2e946..69735c5cc15a0f895867af0e77fc7d78b436d5e5:/projects/stargazer/build

diff --git a/projects/stargazer/build b/projects/stargazer/build
index 129c0966..1779160b 100755
--- a/projects/stargazer/build
+++ b/projects/stargazer/build
@@ -112,11 +112,11 @@ 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
 	  pinger.lib 
 	  dotconfpp.lib"
@@ -158,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