Module Name: othersrc Committed By: lukem Date: Sat Jul 4 05:43:30 UTC 2020
Modified Files: othersrc/libexec/tnftpd: INSTALL Log Message: INSTALL: update for --with-blocklist, --with-sia To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 othersrc/libexec/tnftpd/INSTALL Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: othersrc/libexec/tnftpd/INSTALL diff -u othersrc/libexec/tnftpd/INSTALL:1.10 othersrc/libexec/tnftpd/INSTALL:1.11 --- othersrc/libexec/tnftpd/INSTALL:1.10 Sun Sep 21 16:35:24 2008 +++ othersrc/libexec/tnftpd/INSTALL Sat Jul 4 05:43:29 2020 @@ -1,4 +1,4 @@ -$NetBSD: INSTALL,v 1.10 2008/09/21 16:35:24 lukem Exp $ +$NetBSD: INSTALL,v 1.11 2020/07/04 05:43:29 lukem Exp $ INSTALLATION INTRODUCTION ------------------------- @@ -44,26 +44,37 @@ tnftpd is configured using an `autoconf' * Specific options: --enable-ipv6 Enable IPv6 support (if your OS supports it). + [default=enabled] --disable-ipv6 Disable IPv6 support (even if your OS supports it). - [default: enabled] - --enable-builtinls Enable built-in /bin/ls. [default: enabled] + --enable-builtinls Enable built-in /bin/ls. [default=enabled] --disable-builtinls Disable built-in /bin/ls. - --with-pam Enable support for Pluggable Authentication Modules. - --with-skey Enable support for S/Key authentication. --disable-largefile Omit support for large files. + --with-blocklist enable support for NetBSD blocklist daemon + [default=auto] + --with-pam enable support for Pluggable Authentication Modules + (PAM) authentication [default=auto] + --with-sia enable support for Tru64 Security Integration + Architecture (SIA) authentication [default=auto] + --with-skey enable support for S/Key authentication (not + compatible with --with-pam) [default=no] 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> + LIBS libraries to pass to the linker, e.g. -l<library> + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if + you have headers in a nonstandard directory <include dir> + CPP C preprocessor + YACC The `Yet Another Compiler Compiler' implementation to use. + Defaults to the first program found out of: `bison -y', `byacc', + `yacc'. + YFLAGS The list of arguments that will be passed by default to $YACC. + This script will default YFLAGS to the empty string to avoid a + default value of `-d' given by some make applications. This can be achieved with: env CC="compiler" CFLAGS="cflags" LDFLAGS="ldflags" ./configure - - ============================================ - = = - = NOTE: You will need an ANSI C compiler. = - = = - ============================================