Displaying 3 results from an estimated 3 matches for "use_rand_help".
Did you mean:
use_rand_helper
2002 Apr 03
2
cross compilation?
...$saved_LIBS"
@@ -856,6 +847,9 @@
[
AC_MSG_RESULT(no)
AC_MSG_ERROR(Your OpenSSL headers do not match your library)
+
],
+
[
+
AC_MSG_RESULT(hoping so)
]
)
@@ -885,6 +879,12 @@
# Default to use of the rand helper if OpenSSL doesn't
# seed itself
USE_RAND_HELPER=yes
+
],
+
[
+
AC_MSG_RESULT(not sure)
+
# Default to use of the rand helper if OpenSSL doesn't
+
# seed itself
+
USE_RAND_HELPER=yes
]
)
@@ -1457,7 +1457,10 @@
#else
main() { exit(0); }
#endif
-
], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ]
+
],
+
[ true ],
+
[ AC...
2002 Jun 29
0
[Bug 321] New: configure does not work when cross compiling
...]
)
fi
@@ -784,6 +780,10 @@
[
AC_MSG_RESULT(no)
AC_MSG_ERROR(Your OpenSSL headers do not match your library)
+
],
+
[
+
AC_MSG_RESULT(yes)
+
AC_MSG_WARN(Not sure, hoping so)
]
)
@@ -813,6 +813,13 @@
# Default to use of the rand helper if OpenSSL doesn't
# seed itself
USE_RAND_HELPER=yes
+
],
+
[
+
AC_MSG_RESULT(no)
+
# Default to use of the rand helper if OpenSSL doesn't
+
# seed itself
+
USE_RAND_HELPER=yes
+
AC_MSG_WARN(Not sure, assuming no)
]
)
@@ -1417,7 +1424,8 @@
#else
main() { exit(0); }
#endif
-
], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ]
+
], [ t...
2004 Dec 27
0
[patch] some buildsystem fixes for crosscompiling
...hes.])
+ ],
+ [
+ AC_MSG_RESULT(yes)
+ AC_MSG_WARN([Cannot run test when crosscompiling, defaulted to yes.])
]
+
)
# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
@@ -1092,6 +1122,11 @@
# Default to use of the rand helper if OpenSSL doesn't
# seed itself
USE_RAND_HELPER=yes
+ ],
+ [
+ OPENSSL_SEEDS_ITSELF=yes
+ AC_MSG_RESULT(yes)
+ AC_MSG_WARN([Cannot run test when crosscompiling, defaulted to yes.])
]
)
@@ -1682,7 +1717,8 @@
#else
main() { exit(0); }
#endif
- ], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ]
+ ], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ],...