summaryrefslogtreecommitdiff
path: root/devel/ftnchek/DESCR
diff options
context:
space:
mode:
authorzuntum <zuntum@pkgsrc.org>2001-11-01 00:57:41 +0000
committerzuntum <zuntum@pkgsrc.org>2001-11-01 00:57:41 +0000
commitc72c1cf5f95cbe537b005028f1743cddb16ef203 (patch)
tree93b6296152ccfbaa88b43de043b2d69ce6e63fc5 /devel/ftnchek/DESCR
parent37637e483f1bf6574e9306aebbd013bb63d888d6 (diff)
downloadpkgsrc-c72c1cf5f95cbe537b005028f1743cddb16ef203.tar.gz
Move pkg/ files into package's toplevel directory
Diffstat (limited to 'devel/ftnchek/DESCR')
-rw-r--r--devel/ftnchek/DESCR13
1 files changed, 13 insertions, 0 deletions
diff --git a/devel/ftnchek/DESCR b/devel/ftnchek/DESCR
new file mode 100644
index 00000000000..127f8515993
--- /dev/null
+++ b/devel/ftnchek/DESCR
@@ -0,0 +1,13 @@
+Ftnchek (short for Fortran checker) is designed to detect certain
+errors in a Fortran program that a compiler usually does not. ftnchek
+is not primarily intended to detect syntax errors. Its purpose is to
+assist the user in finding semantic errors. Semantic errors are legal
+in the Fortran language but are wasteful or may cause incorrect
+operation. For example, variables which are never used may indicate
+some omission in the program; uninitialized variables contain garbage
+which may cause incorrect results to be calculated; and variables
+which are not declared may not have the intended type. ftnchek is
+intended to assist users in the debugging of their Fortran program.
+It is not intended to catch all syntax errors. This is the function
+of the compiler. Prior to using ftnchek, the user should verify that
+the program compiles correctly.