|
@@ -192,6 +192,10 @@ AC_ARG_ENABLE([coverage],
|
|
|
[ --enable-coverage : coverage analysis of the codebase. ],
|
|
[ --enable-coverage : coverage analysis of the codebase. ],
|
|
|
[ default="no" ])
|
|
[ default="no" ])
|
|
|
|
|
|
|
|
|
|
+AC_ARG_ENABLE([small-memory-footprint],
|
|
|
|
|
+ [ --enable-small-memory-footprint : Use small message queues and small messages sizes. ],
|
|
|
|
|
+ [ default="no" ])
|
|
|
|
|
+
|
|
|
AC_ARG_ENABLE([nss],
|
|
AC_ARG_ENABLE([nss],
|
|
|
[ --enable-nss : Network Security Services encryption. ],,
|
|
[ --enable-nss : Network Security Services encryption. ],,
|
|
|
[ enable_nss="yes" ])
|
|
[ enable_nss="yes" ])
|
|
@@ -353,6 +357,12 @@ else
|
|
|
COVERAGE_LDFLAGS=""
|
|
COVERAGE_LDFLAGS=""
|
|
|
fi
|
|
fi
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
+if test "x${enable_small_memory_footprint}" = xyes ; then
|
|
|
|
|
+ AC_DEFINE_UNQUOTED([HAVE_SMALL_MEMORY_FOOTPRINT], 1, [have small_memory_footprint])
|
|
|
|
|
+ PACKAGE_FEATURES="$PACKAGE_FEATURES small-memory-footprint"
|
|
|
|
|
+fi
|
|
|
|
|
+
|
|
|
if test "x${enable_ansi}" = xyes && \
|
|
if test "x${enable_ansi}" = xyes && \
|
|
|
cc_supports_flag -std=iso9899:199409 ; then
|
|
cc_supports_flag -std=iso9899:199409 ; then
|
|
|
AC_MSG_NOTICE([Enabling ANSI Compatibility])
|
|
AC_MSG_NOTICE([Enabling ANSI Compatibility])
|