]> git.stg.codes - stg.git/blobdiff - projects/sgauthstress/build
Added "smart" iconv 2nd arg const-ness detection.
[stg.git] / projects / sgauthstress / build
index 1593af28b623170057d67524474e8432e09a7d3f..92be70d91283ba1404ee03a0fd294f192798e871 100755 (executable)
@@ -154,6 +154,19 @@ else
     fi
 fi
 rm -f fake
+
+printf "Checking for iconv 2nd argument... "
+printf "#include <iconv.h>\nint main(){ const char** src = 0; iconv(0, src, 0, 0, 0); }\n" > build_check.c
+$CXX $CXXFLAGS $LDFLAGS -Werror build_check.c -o fake > /dev/null 2> /dev/null
+if [ $? != 0 ]
+then
+    printf "non-const\n"
+else
+    DEFS="$DEFS -DCONST_ICONV"
+    printf "const\n"
+fi
+rm -f fake
+
 rm -f build_check.c
 
 printf "Checking for fb_config... "