]> git.stg.codes - stg.git/blobdiff - projects/sgauth/build
Add initialization of LOADSTAT with zero
[stg.git] / projects / sgauth / build
index eef6026f5db7b23e8a1f224d6230f90a46e6679d..7155188b6aa5da5d204f846c1b63fb34fae7fe82 100755 (executable)
@@ -67,9 +67,8 @@ echo "##########################################################################
 
 STG_LIBS="crypto.lib 
          common.lib 
-         common_settings.lib
          conffiles.lib
-         ia_auth_c.lib"
+         ia.lib"
 
 if [ "$OS" = "linux" ]
 then
@@ -93,6 +92,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