summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Łyszczek <michal.lyszczek@bofc.pl>2018-11-23 23:22:22 +0100
committerMichał Łyszczek <michal.lyszczek@bofc.pl>2018-11-23 23:23:59 +0100
commit38c9a7fecc6375f0f2a31dd960967b2e869c42e2 (patch)
tree44552f151d55ff42e171c4b12f0a6eff0a3ca836
parente917d971d9e6ed3eb28b101157c0d9b16864a888 (diff)
downloadu3-38c9a7fecc6375f0f2a31dd960967b2e869c42e2.tar.gz
u3-38c9a7fecc6375f0f2a31dd960967b2e869c42e2.tar.bz2
u3-38c9a7fecc6375f0f2a31dd960967b2e869c42e2.zip
configure.ac: fix bad description
-rw-r--r--configure.ac10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 981908a..e025b18 100644
--- a/configure.ac
+++ b/configure.ac
@@ -83,13 +83,13 @@ AS_IF([test "x$enable_malloc" = "xyes"],
AC_ARG_ENABLE([standalone],
- AS_HELP_STRING([--enable-standalone], [Enable use of malloc]),
+ AS_HELP_STRING([--enable-standalone], [Create standalone binaries]),
[], [enable_standalone="yes"])
AM_CONDITIONAL([ENABLE_STANDALONE], [test "x$enable_standalone" = "xyes"])
AS_IF([test "x$enable_standalone" = "xyes"],
[
- AC_DEFINE([ENABLE_STANDALONE], [1], [Enable use of standalone])
+ AC_DEFINE([ENABLE_STANDALONE], [1], [Create standalone binaries])
],
# else
[
@@ -103,13 +103,13 @@ AS_IF([test "x$enable_standalone" = "xyes"],
AC_ARG_ENABLE([library],
- AS_HELP_STRING([--enable-library], [Enable use of malloc]),
+ AS_HELP_STRING([--enable-library], [Create libraries from programs]),
[], [enable_library="yes"])
AM_CONDITIONAL([ENABLE_LIBRARY], [test "x$enable_library" = "xyes"])
AS_IF([test "x$enable_library" = "xyes"],
[
- AC_DEFINE([ENABLE_LIBRARY], [1], [Enable use of library])
+ AC_DEFINE([ENABLE_LIBRARY], [1], [Create libraries from programs])
],
# else
[
@@ -133,7 +133,7 @@ AC_OUTPUT
echo
echo "u3 compilation configuration summary"
-echo "build standalone...,...: $enable_standalone"
+echo "build standalone.......: $enable_standalone"
echo "build library..........: $enable_library"
echo ""
echo "enable malloc..........: $enable_malloc"