* scripts/mkver.in (ConfStr): Use -r if we're using RSAREF,
otherwise use -a if we're using autokey, otherwise use no extra
suffix.
bk: 391b43b89CvmCq7C2aax-hu0fT5kNg
+2000-05-11 Harlan Stenn <stenn@whimsy.udel.edu>
+
+ * scripts/mkver.in (ConfStr): Use -r if we're using RSAREF,
+ otherwise use -a if we're using autokey, otherwise use no extra
+ suffix.
+
2000-05-11 Sven Dietrich <sven_dietrich@trimble.com>
* ports/winnt/include/config.h: New defines to support AUTOKEY
ConfStr="$ConfStr @VERSION@"
-case "@AUTOKEY@" in
- '') ConfStr="${ConfStr}-a" ;;
-esac
case "@LIBRSAREF@" in
- '') ;;
+ '')
+ case "@AUTOKEY@" in
+ '') ;;
+ *) ConfStr="${ConfStr}-a" ;;
+ esac
+ ;;
*) ConfStr="${ConfStr}-r" ;;
esac