1 #undef PACKAGE_NAME 2 #undef PACKAGE_VERSION 3 #undef PACKAGE_BUGREPORT 4 5 /* Features */ 6 #undef UNIX_COMPAT 7 #undef IRIX_COMPAT 8 #undef WINSCP_COMPAT 9 #undef GFTP_COMPAT 10 #undef SVN_COMPAT 11 #undef RSYNC_COMPAT 12 #undef QUOTA_COMPAT 13 #undef UNISON_COMPAT 14 #undef PASSWD_COMPAT 15 #undef ENABLE_SCP2 16 #undef ENABLE_SFTP 17 #undef SVNSERV_COMPAT 18 #undef ENABLE_WILDCARDS 19 #undef RESTRICTIVE_FILENAMES 20 #undef CHROOTED_NAME 21 #undef CHROOT_CHECKDIR 22 #undef HAVE_WORDEXP 23 #undef HAVE_GLOB 24 #undef HAVE_GETOPT 25 #undef HAVE_GETOPT_H 26 #undef HAVE_OPTRESET 27 28 #undef ENABLE_DEFAULT_CHDIR 29 /* cd to this directory after authentication */ 30 #ifdef ENABLE_DEFAULT_CHDIR 31 #undef DEFAULT_CHDIR 32 #endif 33 34 /* Binaries launched in sftp compat mode */ 35 #ifdef ENABLE_SFTP 36 #undef PROG_SFTP_SERVER 37 #endif 38 39 /* Binaries launched by vanilla- and win-SCP modes */ 40 #ifdef ENABLE_SCP2 41 #undef PROG_LS 42 #undef PROG_SCP 43 #undef PROG_RM 44 #undef PROG_LN 45 #undef PROG_MV 46 #undef PROG_CHMOD 47 #undef PROG_CHOWN 48 #undef PROG_CHGRP 49 #undef PROG_MKDIR 50 #undef PROG_RMDIR 51 #define PROG_CD "cd" 52 #endif /*ENABLE_SCP2*/ 53 54 /* Binaries launched in WinSCP compatibility mode */ 55 #ifdef WINSCP_COMPAT 56 #undef PROG_PWD 57 #undef PROG_GROUPS 58 #undef PROG_ID 59 #undef PROG_ECHO 60 #endif 61 62 /* Rsync compatability mode */ 63 #ifdef RSYNC_COMPAT 64 #undef PROG_RSYNC 65 #endif 66 67 /* Unison compatability mode */ 68 #ifdef UNISON_COMPAT 69 #undef PROG_UNISON 70 #define USE_SAFE_ENVIRONMENT 71 #endif 72 73 /* subversion cli compatibility */ 74 #ifdef SVN_COMPAT 75 #undef PROG_SVN 76 #endif 77 78 /* subversion svnserv compatibility */ 79 #ifdef SVNSERV_COMPAT 80 #undef PROG_SVNSERV 81 #endif 82 83 /* passwd compatibility */ 84 #ifdef PASSWD_COMPAT 85 #undef PROG_PASSWD 86 #endif 87 88 /* quota compatibility */ 89 #ifdef QUOTA_COMPAT 90 #undef PROG_QUOTA 91 #endif 92