Update of /cvsroot/libfunutil/libfunutil/toc/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv24307
Modified Files:
qt.sh readline.sh
Log Message:
added some help text
Index: qt.sh
===================================================================
RCS file: /cvsroot/libfunutil/libfunutil/toc/tests/qt.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- qt.sh 26 Aug 2003 08:31:28 -0000 1.4
+++ qt.sh 29 Aug 2003 11:47:07 -0000 1.5
@@ -1,3 +1,4 @@
+# toc_begin_help =
# Calls toc_add_make for the following:
# - QTINCDIR directory containing Qt headers
# - QTLIBDIR directory containing Qt libraries
@@ -17,6 +18,12 @@
# before running this test:
# qt_required_version - human-readable version number like "3.1.x"
# qt_required_version_glob - version glob like "3.1.*"
+# Optionally, pass the version as $1 and glob as $2 (be sure to quote the
+# glob!).
+# = toc_end_help
+
+qt_required_version_version=${1-${qt_required_version_version-'3.x'}}
+qt_required_version_glob=${2-${qt_required_version_glob-'3.*'}}
function qt_check_dir
{
Index: readline.sh
===================================================================
RCS file: /cvsroot/libfunutil/libfunutil/toc/tests/readline.sh,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- readline.sh 28 Aug 2003 09:29:43 -0000 1.6
+++ readline.sh 29 Aug 2003 11:47:07 -0000 1.7
@@ -1,4 +1,8 @@
# a basic toc test for libreadline.
+# toc_begin_help =
+# Searches for GNU libreadline.
+# Use --with-libreadline to enable it.
+# Sets the LIBREADLINE_LDADD make var and the HAVE_READLINE config.h var.
#
# Sample snippet for your shared makefile:
#
@@ -15,7 +19,7 @@
# In your config.h.at put something like:
#
# #define HAVE_READLINE @HAVE_READLINE@
-#
+# = toc_end_help
toc_add_config_h HAVE_READLINE=0
toc_add_make configure_with_libreadline=0
|