Sort in the (approx.?) rpm versioning order.
[nethome.git] / bin / errs1
index bace2b5..ab30d3b 100755 (executable)
--- a/bin/errs1
+++ b/bin/errs1
@@ -1,16 +1,24 @@
 #! /bin/sh
 # $Id$
 
-configure="./configure"
-if [ "${1#*/configure}" != "$1" ];then
-       configure="$1"
-       shift
-fi
 customss="--enable-static --disable-shared"
 if [ "$1" = "--origss" ];then
        customss=
        shift
 fi
+
+customm="-m64"
+if [ "$1" = "--origm" ];then
+       customm=
+       shift
+fi
+
+configure="./configure"
+if [ "${1#*/configure}" != "$1" ];then
+       configure="$1"
+       shift
+fi
+
 (
        set -ex
        rm -f config.cache
@@ -27,6 +35,9 @@ fi
                fi
                gcc $flags -c errs1.c -o /dev/null && break
        done
+       if test -n "$customm" && gcc $customm -c errs1.c -o /dev/null;then
+               flags="$customm $flags"
+       fi
        rm -f errs1.c
        export CFLAGS="$flags"
        export CXXFLAGS="$flags"