Module Name: othersrc
Committed By: lukem
Date: Sun May 16 08:28:01 UTC 2021
Modified Files:
othersrc/usr.bin/tnftp: ChangeLog INSTALL
Log Message:
update INSTALL notes
To generate a diff of this commit:
cvs rdiff -u -r1.75 -r1.76 othersrc/usr.bin/tnftp/ChangeLog
cvs rdiff -u -r1.6 -r1.7 othersrc/usr.bin/tnftp/INSTALL
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: othersrc/usr.bin/tnftp/ChangeLog
diff -u othersrc/usr.bin/tnftp/ChangeLog:1.75 othersrc/usr.bin/tnftp/ChangeLog:1.76
--- othersrc/usr.bin/tnftp/ChangeLog:1.75 Sun Apr 25 09:29:43 2021
+++ othersrc/usr.bin/tnftp/ChangeLog Sun May 16 08:28:01 2021
@@ -1,4 +1,9 @@
-$NetBSD: ChangeLog,v 1.75 2021/04/25 09:29:43 lukem Exp $
+$NetBSD: ChangeLog,v 1.76 2021/05/16 08:28:01 lukem Exp $
+
+
+Sun May 16 08:25:55 UTC 2021 lukem
+
+ * Update INSTALL notes to reflect current configure.
Sun Apr 25 09:24:51 UTC 2021 lukem
Index: othersrc/usr.bin/tnftp/INSTALL
diff -u othersrc/usr.bin/tnftp/INSTALL:1.6 othersrc/usr.bin/tnftp/INSTALL:1.7
--- othersrc/usr.bin/tnftp/INSTALL:1.6 Mon Aug 6 01:58:04 2007
+++ othersrc/usr.bin/tnftp/INSTALL Sun May 16 08:28:01 2021
@@ -3,58 +3,48 @@ INSTALLATION INTRODUCTION
This file describes how to compile and install tnftp on your system.
- ============================================
- = =
- = NOTE: You will need an ANSI C compiler. =
- = =
- ============================================
-
+NOTE: You will need an ANSI C compiler.
For most systems, execute the following to compile and install tnftp:
./configure
make
make install
-A preformatted manual page (src/ftp.cat1) is also installed.
-If you wish to install the source (src/ftp.1), ensure that your system
-has up-to-date mandoc macros, such as those that are shipped with groff.
-
CONFIGURATION OPTIONS
---------------------
-tnftp is configured using an `autoconf' generated `configure'
-script. `configure' supports the following options:
+tnftp is configured using an `autoconf' generated `configure' script.
+
+`configure' supports various options including:
* The standard `autoconf configure' options, including:
+ -h, --help display this help and exit
--prefix=PREFIX install architecture-independent files in PREFIX
[/usr/local]
--exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
- [same as prefix]
- --srcdir=DIR find the sources in DIR [configure dir or ..]
- BSD or GNU make may be required for this to work.
+ [PREFIX]
* Specific options:
- --enable-editcomplete Turn on command line editing and completion.
- (default: enabled)
- --enable-ipv6 Enable IPv6 support (if your OS supports it).
- (default: enabled)
- --disable-largefile omit support for large files
+ --enable-editcomplete turn on command line editing and completion
+ (requires system or local libedit) [default=enabled]
+ --enable-ipv6 enable IPv6 support (if your OS supports it)
+ [default=enabled]
+ --enable-ssl enable SSL support (requires --with-openssl)
+ [default=auto]
+ --with-local-libedit use local libedit instead of system library: yes;
+ auto (try system, fallback to local); no
+ [default=auto]
--with-socks enable support for (Dante) SOCKS5 proxy
+ [default=auto]
+ --with-openssl=DIR root of the OpenSSL directory
The following environment variables can be set to override various
compiler related settings.
- CC=compiler specify name of the C compiler (default: gcc or cc)
- CFLAGS=flags specify flags to C compiler (default: -O -g or just -O)
- LDFLAGS=flags specify flags to linker (default: none)
+ CC C compiler command
+ CFLAGS C compiler flags
+ LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
+ nonstandard directory <lib dir>
This can be achieved with:
env CC="compiler" CFLAGS="flags" LDFLAGS="flags" ./configure
-
-
- ============================================
- = =
- = NOTE: You will need an ANSI C compiler. =
- = =
- ============================================
-