uncommitted - pure-ftpd

Ready changes

Summary

Import uploads missing from VCS:

Diff

diff --git a/.pc/.quilt_patches b/.pc/.quilt_patches
new file mode 100644
index 0000000..6857a8d
--- /dev/null
+++ b/.pc/.quilt_patches
@@ -0,0 +1 @@
+debian/patches
diff --git a/.pc/.quilt_series b/.pc/.quilt_series
new file mode 100644
index 0000000..c206706
--- /dev/null
+++ b/.pc/.quilt_series
@@ -0,0 +1 @@
+series
diff --git a/.pc/.version b/.pc/.version
new file mode 100644
index 0000000..0cfbf08
--- /dev/null
+++ b/.pc/.version
@@ -0,0 +1 @@
+2
diff --git a/.pc/applied-patches b/.pc/applied-patches
new file mode 100644
index 0000000..0f2833f
--- /dev/null
+++ b/.pc/applied-patches
@@ -0,0 +1 @@
+maria-db-cross.diff
diff --git a/.pc/maria-db-cross.diff/configure.ac b/.pc/maria-db-cross.diff/configure.ac
new file mode 100644
index 0000000..7f23737
--- /dev/null
+++ b/.pc/maria-db-cross.diff/configure.ac
@@ -0,0 +1,1416 @@
+dnl AM_ACLOCAL_INCLUDE(m4)
+
+AC_PREREQ([2.65])
+AC_INIT([pure-ftpd], [1.0.50],
+        [https://github.com/jedisct1/pure-ftpd], [pure-ftpd], [https://www.pureftpd.org])
+AC_CONFIG_SRCDIR(src/ftpd.c)
+AC_CONFIG_HEADERS([config.h])
+AM_INIT_AUTOMAKE([1.11.2 dist-bzip2 tar-ustar])
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
+AM_MAINTAINER_MODE
+AM_DEP_TRACK
+AC_CONFIG_LIBOBJ_DIR(src)
+
+AC_SUBST(VERSION)
+
+dnl Checks for programs.
+LX_CFLAGS=${CFLAGS-NONE}
+AC_USE_SYSTEM_EXTENSIONS
+
+AM_PROG_AR
+AC_PROG_CC
+AC_PROG_RANLIB
+AC_PROG_FGREP
+
+AC_SEARCH_LIBS([strerror],[cposix])
+
+AX_CHECK_COMPILE_FLAG([-fPIC], [
+  AX_CHECK_LINK_FLAG([-fPIC],
+    [CFLAGS="$CFLAGS -fPIC"]
+  )
+])
+
+AS_IF([test "$enable_pie" != "no"],[
+  AX_CHECK_COMPILE_FLAG([-fPIE], [
+    AX_CHECK_LINK_FLAG([-pie], [
+      [CFLAGS="$CFLAGS -fPIE"
+       LDFLAGS="$LDFLAGS -pie"]
+    ])
+  ])
+])
+
+AX_CHECK_COMPILE_FLAG([-fwrapv], [CFLAGS="$CFLAGS -fwrapv"])
+AX_CHECK_COMPILE_FLAG([-fno-strict-aliasing], [CFLAGS="$CFLAGS -fno-strict-aliasing"])
+AX_CHECK_COMPILE_FLAG([-fno-strict-overflow], [CFLAGS="$CFLAGS -fno-strict-overflow"])
+AS_IF([echo `(uname -s) 2>/dev/null` | $FGREP "CYGWIN" > /dev/null], [
+  AX_CHECK_LINK_FLAG([-Wl,--nxcompat], [LDFLAGS="$LDFLAGS -Wl,--nxcompat"])
+], [
+  AS_IF([test `(uname -s) 2>/dev/null` = "DragonFly"],
+    [
+      AX_CHECK_COMPILE_FLAG([-fstack-protector], [
+        AX_CHECK_LINK_FLAG([-fstack-protector],
+          [CFLAGS="$CFLAGS -fstack-protector"]
+        )
+      ])
+    ],
+    [
+      AX_CHECK_COMPILE_FLAG([-fstack-protector-all], [
+        AX_CHECK_LINK_FLAG([-fstack-protector-all],
+          [CFLAGS="$CFLAGS -fstack-protector-all"]
+        )
+      ])
+    ]
+  )
+])
+
+AX_CHECK_COMPILE_FLAG([-Winit-self], [CFLAGS="$CFLAGS -Winit-self"])
+AX_CHECK_COMPILE_FLAG([-Wwrite-strings], [CFLAGS="$CFLAGS -Wwrite-strings"])
+AX_CHECK_COMPILE_FLAG([-Wdiv-by-zero], [CFLAGS="$CFLAGS -Wdiv-by-zero"])
+
+AX_CHECK_COMPILE_FLAG([$CFLAGS -Wno-unused-command-line-argument],
+[CFLAGS="$CFLAGS -Wno-unused-command-line-argument"])
+
+AC_ARG_VAR([CWFLAGS], [define to compilation flags for generating extra warnings])
+AX_CHECK_COMPILE_FLAG([-Wall], [CWFLAGS="$CWFLAGS -Wall"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wextra], [CWFLAGS="$CWFLAGS -Wextra"])
+
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wbad-function-cast], [CWFLAGS="$CWFLAGS -Wbad-function-cast"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wcast-align], [CWFLAGS="$CWFLAGS -Wcast-align"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wcast-qual], [CWFLAGS="$CWFLAGS -Wcast-qual"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wchar-subscripts], [CWFLAGS="$CWFLAGS -Wchar-subscripts"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wcomment], [CWFLAGS="$CWFLAGS -Wcomment"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wfloat-equal], [CWFLAGS="$CWFLAGS -Wfloat-equal"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wformat=2], [CWFLAGS="$CWFLAGS -Wformat=2"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wimplicit], [CWFLAGS="$CWFLAGS -Wimplicit"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wmissing-declarations], [CWFLAGS="$CWFLAGS -Wmissing-declarations"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wmissing-prototypes], [CWFLAGS="$CWFLAGS -Wmissing-prototypes"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wnormalized=id], [CWFLAGS="$CWFLAGS -Wnormalized=id"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Woverride-init], [CWFLAGS="$CWFLAGS -Woverride-init"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wparentheses], [CWFLAGS="$CWFLAGS -Wparentheses"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wpointer-arith], [CWFLAGS="$CWFLAGS -Wpointer-arith"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wredundant-decls], [CWFLAGS="$CWFLAGS -Wredundant-decls"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wstrict-prototypes], [CWFLAGS="$CWFLAGS -Wstrict-prototypes"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wswitch-enum], [CWFLAGS="$CWFLAGS -Wswitch-enum"])
+AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wvariable-decl], [CWFLAGS="$CWFLAGS -Wvariable-decl"])
+
+AX_CHECK_LINK_FLAG([-Wl,-z,relro], [LDFLAGS="$LDFLAGS -Wl,-z,relro"])
+AX_CHECK_LINK_FLAG([-Wl,-z,now], [LDFLAGS="$LDFLAGS -Wl,-z,now"])
+AX_CHECK_LINK_FLAG([-Wl,-z,noexecstack], [LDFLAGS="$LDFLAGS -Wl,-z,noexecstack"])
+
+if test "x$cross_compiling" != "xyes"; then
+  for path in \
+    /usr/kerberos \
+    /usr/local /opt /usr/local/opt \
+    /usr/openssl@1.1 /opt/openssl@1.1 /usr/local/opt/openssl@1.1 \
+    /usr/openssl /opt/openssl /usr/local/opt/openssl; do
+    if test -d $path/include; then
+      CPPFLAGS="$CPPFLAGS -I${path}/include"
+    fi
+    if test -d $path/lib; then
+      LDFLAGS="$LDFLAGS -L${path}/lib"
+    fi
+  done
+fi
+
+CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2"
+
+dnl Checks for header files
+
+AC_SYS_LARGEFILE
+
+AC_HEADER_STAT
+AC_HEADER_DIRENT
+AC_HEADER_SYS_WAIT
+AC_CHECK_HEADERS(unistd.h string.h strings.h sys/param.h ioctl.h sys/ioctl.h)
+AC_CHECK_HEADERS(sys/vfs.h sys/statvfs.h sys/sendfile.h sys/uio.h)
+AC_CHECK_HEADERS(sys/time.h sys/resource.h sys/capability.h)
+AC_CHECK_HEADERS(shadow.h getopt.h stddef.h stdint.h)
+AC_CHECK_HEADERS(netinet/in_systm.h netinet/in.h sys/pstat.h sys/file.h)
+AC_CHECK_HEADERS(sys/mount.h, [], [],
+[#ifdef HAVE_SYS_PARAM_H
+# include <sys/param.h>
+#endif])
+AC_CHECK_HEADERS(fcntl.h sys/fcntl.h sys/loadavg.h sys/ptrace.h)
+AC_CHECK_HEADERS(security/pam_appl.h security/pam_misc.h)
+AC_CHECK_HEADERS(security/pam_modules.h security/pam_filter.h)
+AC_CHECK_HEADERS(pam/pam_appl.h pam/pam_misc.h pam/pam_modules.h)
+AC_CHECK_HEADERS(pam/pam_filter.h)
+AC_CHECK_HEADERS(sgtty.h termio.h)
+AC_CHECK_HEADERS(locale.h)
+AC_CHECK_HEADERS(stdarg.h varargs.h)
+AC_CHECK_HEADERS(windows.h io.h)
+AC_CHECK_HEADERS(crypt.h)
+AC_CHECK_HEADERS(utime.h)
+AC_CHECK_HEADERS(openssl/ssl.h openssl/ec.h)
+AC_CHECK_HEADERS(CoreFoundation/CoreFoundation.h)
+AC_SYS_POSIX_TERMIOS
+
+if test "x$ac_cv_sys_posix_termios" = "xyes"; then
+AC_DEFINE(HAVE_POSIX_TERMIOS,,[Define if you have POSIX termios])
+fi
+
+dnl Check for endianness
+AC_C_BIGENDIAN
+
+dnl Checks for types
+AC_TYPE_SIZE_T
+AC_TYPE_SSIZE_T
+AC_TYPE_UID_T
+AC_TYPE_PID_T
+AC_TYPE_OFF_T
+AC_TYPE_MODE_T
+AC_STRUCT_TM
+AC_STRUCT_TIMEZONE
+AC_CHECK_MEMBER(struct tm.tm_gmtoff, [AC_DEFINE(STRUCT_TM_TM_GMTOFF,,[Define if you have struct tm/tm_gmtoff])],,[
+#include <sys/types.h>
+#include <$ac_cv_struct_tm>
+])
+
+AC_MSG_CHECKING([whether timezone is scalar])
+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+#include <sys/types.h>
+#include <$ac_cv_struct_tm>    
+    ]], [[timezone = 42L]])],[
+         AC_MSG_RESULT(yes)
+         AC_DEFINE(HAVE_SCALAR_TIMEZONE,,[Define if your timezone is a scalar number])
+    ],[    AC_MSG_RESULT(no)    ])   
+
+AC_CHECK_TYPE(nlink_t, , [AC_DEFINE(nlink_t, int, [nlink_t type])],
+[
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/stat.h>
+])
+
+
+AC_CHECK_TYPE(dev_t, , [AC_DEFINE(dev_t, unsigned int, [dev_t type])],
+[
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/stat.h>
+])
+
+
+AC_CHECK_TYPE(ino_t, , [AC_DEFINE(ino_t, unsigned long, [ino_t type])],
+[
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/stat.h>
+])
+
+dnl Check for sizes
+AC_CHECK_SIZEOF(short)
+AC_CHECK_SIZEOF(int)
+AC_CHECK_SIZEOF(long)
+AC_CHECK_SIZEOF(long long)
+AC_CHECK_SIZEOF(mode_t)
+
+dnl Socket things
+
+AC_CHECK_FUNC(connect, , [AC_CHECK_LIB(socket, connect)])
+
+AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(resolv, gethostbyname)])
+
+AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl, gethostbyname)])
+
+if test "x$ac_cv_lib_nsl_gethostbyname" != "xyes" && test "x$ac_cv_func_gethostbyname" != "xyes" ; then
+  AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(socket, gethostbyname)])
+fi
+
+if test "$ac_cv_lib_nsl_gethostbyname" = "$ac_cv_func_gethostbyname" ; then
+  AC_MSG_CHECKING([if we can include libnsl + libsocket])
+  LIBS="-lnsl -lsocket $LIBS"
+  AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[(void) gethostbyname]])],[my_ac_link_result=yes],[my_ac_link_result=no ])
+  if test "$my_ac_link_result" = "no" ; then
+    AC_MSG_RESULT([failure])
+    AC_MSG_ERROR([unable to use gethostbyname()])
+  else
+    AC_MSG_RESULT([success])
+  fi
+fi
+
+AC_CHECK_LIB(sendfile, sendfile)
+
+dnl Types - continued
+
+AC_CHECK_TYPE(socklen_t, , [AC_DEFINE(socklen_t, int, [socklen_t type])],
+[
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/socket.h>
+#ifdef HAVE_NETINET_IN_SYSTM_H
+# include <netinet/in_systm.h>
+#endif
+#include <netinet/in.h>
+])
+
+AC_CHECK_TYPE(in_port_t, , [AC_DEFINE(in_port_t, unsigned short, [in_port_t type])],
+[
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/socket.h>
+#ifdef HAVE_NETINET_IN_SYSTM_H
+# include <netinet/in_systm.h>
+#endif
+#include <netinet/in.h>
+])
+
+AC_CHECK_TYPE(sig_atomic_t, , [AC_DEFINE(sig_atomic_t, signed char, [sig_atomic_t type])],
+[
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <signal.h>
+])
+
+dnl Compiler characteristics
+
+AC_PROG_GCC_TRADITIONAL
+AC_C_CONST
+AC_C_INLINE
+
+dnl Options
+
+AM_WITH_DMALLOC
+
+AC_ARG_ENABLE(pie,
+[AS_HELP_STRING(--enable-pie,Produce position independent executables @<:@default=yes@:>@)],
+ enable_pie=$enableval, enable_pie="maybe")
+
+AC_ARG_ENABLE(ssp,
+[AS_HELP_STRING(--disable-ssp,Don't compile with -fstack-protector)],
+[AS_IF([test "x$enableval" = "xno"], [
+    nxflags=""
+    for flag in `echo $CFLAGS`; do
+      case "$flag" in
+       -fstack-protector*) ;;
+        *) AS_VAR_APPEND([nxflags], [" $flag"]) ;;
+      esac
+    done
+    CFLAGS="$nxflags"
+  ])
+])
+
+AC_ARG_WITH(standalone,
+[AS_HELP_STRING(--without-standalone,Don't compile the standalone server code)],
+[ if test "x$withval" = "xno" ; then
+    AC_DEFINE(NO_STANDALONE,,[without standalone])
+    no_standalone=yes
+  fi ])
+
+AC_ARG_WITH(inetd,
+[AS_HELP_STRING(--without-inetd,Don't support super-servers (like inetd))],
+[ if test "x$withval" = "xno" ; then
+    AC_DEFINE(NO_INETD,,[without inetd])
+    no_inetd=yes
+  fi ])
+
+if test "x$no_standalone" = "xyes" && test "x$no_inetd" = "xyes" ; then
+  AC_MSG_ERROR(You can't disable both standalone and inetd mode.)
+fi
+
+AC_ARG_WITH(capabilities,
+[AS_HELP_STRING(--without-capabilities,Don't use Linux capabilities (default=detect))],
+[ if test "x$withval" = "xno" ; then
+    no_capabilities=1
+  fi ])
+  
+if test -z "$no_capabilities" ; then
+  AC_CHECK_LIB(cap, cap_init, , )
+  if test "x$ac_cv_lib_cap_cap_init" = "xyes"; then
+    if test "x$ac_cv_header_sys_capability_h" = "xyes"; then
+      AC_DEFINE(USE_CAPABILITIES,,[use capabilities])
+    fi
+  fi
+fi
+
+AC_ARG_WITH(shadow,
+[AS_HELP_STRING(--without-shadow,Don't use shadow passwords (default=detect))],
+[ if test "x$withval" = "xno" ; then
+    no_shadow=1
+  fi ])
+  
+if test -z "$no_shadow" && test "x$ac_cv_header_shadow_h" = "xyes" ; then
+  AC_CHECK_FUNC(getspnam, AC_DEFINE(USE_SHADOW,,[use shadow passwords]),
+    AC_CHECK_LIB(shadow, getspnam, AC_DEFINE(USE_SHADOW),
+      AC_MSG_WARN(shadow.h was found, but getspnam() isn't available)
+    )
+  )
+fi
+
+AC_ARG_WITH(usernames,
+[AS_HELP_STRING(--without-usernames,Use only numerical UIDs/GIDs)],
+[ if test "x$withval" = "xno" ; then
+    AC_DEFINE(NO_FTP_USERS,,[without usernames])
+  fi ])
+
+AC_ARG_WITH(iplogging,
+[AS_HELP_STRING(--without-iplogging,Never log remote IP addresses (privacy))],
+[ if test "x$withval" = "xno" ; then
+    AC_DEFINE(DONT_LOG_IP,,[without iplogging])
+  fi ])
+
+AC_ARG_WITH(humor,
+[AS_HELP_STRING(--without-humor,Disable humor (enabled by default))],
+[ if test "x$withval" = "xno" ; then
+    AC_DEFINE(DISABLE_HUMOR,,[without humor])
+  fi ])
+
+AC_ARG_WITH(longoptions,
+[AS_HELP_STRING(--without-longoptions,Ignored - just for backward compatibility)],
+[ if test "x$withval" = "xno" ; then
+    AC_DEFINE(NO_GETOPT_LONG,,[without longoptions])
+  fi ])
+
+AC_ARG_WITH(ascii,
+[AS_HELP_STRING(--without-ascii,Don't support 7-bits (ASCII) transfers)],
+[ if test "x$withval" = "xno" ; then
+    AC_DEFINE(WITHOUT_ASCII,,[without ascii])
+  fi ])
+
+AC_ARG_WITH(globbing,
+[AS_HELP_STRING(--without-globbing,Don't include globbing code)],
+[ if test "x$withval" = "xno" ; then
+    AC_DEFINE(DISABLE_GLOBBING,,[without globbing])
+  fi ])
+
+AC_ARG_WITH(nonalnum,
+[AS_HELP_STRING(--without-nonalnum,Only allow basic alphanumeric characters in file names)],
+[ if test "x$withval" = "xno" ; then
+    AC_DEFINE(PARANOID_FILE_NAMES,,[disallow non-alphanumeric characters])
+  fi ])
+
+AC_ARG_WITH(unicode,
+[AS_HELP_STRING(--without-unicode,Disable non-latin characters in file names)],
+[ if test "x$withval" = "xno" ; then
+    AC_DEFINE(DISABLE_UNICODE_CONTROL_CHARS,,[disallow unicode control chars])
+  fi ])
+
+AC_ARG_WITH(sendfile,
+[AS_HELP_STRING(--without-sendfile,Don't use zero-copy optimizations (for network FS))],
+[ if test "x$withval" = "xno" ; then
+    AC_DEFINE(DISABLE_SENDFILE,,[without sendfile])
+  fi ])
+
+AC_ARG_WITH(privsep,
+[AS_HELP_STRING(--without-privsep,Disable privilege separation)],
+[ if test "x$withval" = "xno" ; then
+    without_privsep=yes
+  fi ])
+
+AC_ARG_WITH(boring,
+[AS_HELP_STRING(--with-boring,Display only boring messages)],
+[ if test "x$withval" = "xyes" ; then
+    AC_DEFINE(BORING_MODE,,[display only boring messages])
+    AC_DEFINE(DISABLE_HUMOR)
+  fi ])
+
+AC_ARG_WITH(brokenrealpath,
+[AS_HELP_STRING(--with-brokenrealpath,If your libc has a broken realpath() call)],
+[ if test "x$withval" = "xyes" ; then
+    AC_DEFINE(USE_BUILTIN_REALPATH,,[realpath() is broken])
+  fi ])
+
+AC_ARG_WITH(minimal,
+[AS_HELP_STRING(--with-minimal,Build only a small minimal server)],
+[ if test "x$withval" = "xyes" ; then
+    AC_DEFINE(MINIMAL,,[with minimal])
+    AC_DEFINE(NO_GETOPT_LONG)
+    AC_DEFINE(DISABLE_HUMOR)
+    AC_DEFINE(NO_FTP_USERS)
+    AC_DEFINE(WITHOUT_ASCII)    
+    AC_DEFINE(BORING_MODE)
+    CFLAGS="$CFLAGS -Os -fomit-frame-pointer -fno-unroll-loops "
+    LDFLAGS="$LDFLAGS -s "
+  fi ])
+
+AC_ARG_WITH(paranoidmsg,
+[AS_HELP_STRING(--with-paranoidmsg,Use paranoid but not admin-friendly messages)],
+[ if test "x$withval" = "xyes" ; then
+    AC_DEFINE(PARANOID_MESSAGES,,[with paranoidmsg])
+  fi ])
+
+AC_ARG_WITH(sysquotas,
+[AS_HELP_STRING(--with-sysquotas,Use system (not virtual) quotas)],
+[ if test "x$withval" = "xyes" ; then
+    AC_DEFINE(SYSTEM_QUOTAS,,[with sysquotas])
+  fi ])
+
+AC_ARG_WITH(altlog,
+[AS_HELP_STRING(--with-altlog,Support alternative log format (Apache-like))],
+[ if test "x$withval" = "xyes" ; then
+    AC_DEFINE(WITH_ALTLOG,,[with altlog]) 
+  fi ])
+
+AC_ARG_WITH(puredb,
+[AS_HELP_STRING(--with-puredb,Support virtual (FTP-only) users)],
+[ if test "x$withval" = "xyes" ; then
+    AC_DEFINE(WITH_PUREDB,,[with puredb])
+  fi ])
+
+AC_ARG_WITH(extauth,
+[AS_HELP_STRING(--with-extauth,Support external authentication modules)],
+[ if test "x$withval" = "xyes" ; then
+    AC_DEFINE(WITH_EXTAUTH,,[with extauth (*BETA*)])
+  fi ])
+
+AC_ARG_WITH(pam,
+[AS_HELP_STRING(--with-pam,Enable PAM support (default=disabled))],
+[ if test "x$withval" = "xyes" ; then
+    with_pam="yes"
+  fi ])
+
+if test "x`uname`" = "xDarwin"; then
+  if test "x$with_pam" = "x"; then
+    with_pam="yes"
+  fi
+fi
+
+if test "x$with_pam" = "xyes" ; then
+  if test "x$ac_cv_header_security_pam_appl_h" != "xyes" &&
+     test "x$ac_cv_header_pam_pam_appl_h" != "xyes"; then
+    AC_MSG_ERROR(PAM headers not found.)  
+  else
+    AC_CHECK_LIB(dl, dlopen, , )
+    LIBS="$LIBS -lpam"
+    AC_DEFINE(USE_PAM,,[use pam])
+    AC_CHECK_FUNCS(pam_getenvlist)
+    AC_MSG_CHECKING([whether pam_strerror takes only one argument])
+    AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+#include <stdio.h>
+#ifdef STDC_HEADERS
+# include <stdlib.h>
+# include <stddef.h>
+#else
+# if HAVE_STDLIB_H
+#  include <stdlib.h>
+# endif
+#endif
+#include <security/pam_appl.h>
+        ]], [[(void)pam_strerror((pam_handle_t *)NULL, -1)]])],[AC_MSG_RESULT(no)],[
+            AC_DEFINE(HAVE_OLD_PAM,,[obsolete pam])
+            AC_MSG_RESULT(yes)
+        ])   
+  fi
+fi  
+
+AC_MSG_CHECKING([whether syslog names are available])
+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+#define SYSLOG_NAMES 1
+#include <stdio.h>
+#include <syslog.h>
+]], [[
+ (void) facilitynames
+]])],[
+  AC_MSG_RESULT(yes)
+  AC_DEFINE(HAVE_SYSLOG_NAMES,,[define if syslog names are available])
+],[
+  AC_MSG_RESULT(no)
+])  
+
+
+AC_MSG_CHECKING([whether struct addrinfo is defined])
+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+#include <stdio.h>
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netdb.h>
+]], [[
+do {
+ struct addrinfo a;
+ (void) a.ai_flags;
+} while(0)
+]])],[
+  AC_MSG_RESULT(yes)
+  AC_DEFINE(HAVE_STRUCT_ADDRINFO,,[define if you have struct addrinfo])
+],[
+  AC_MSG_RESULT(no)
+])  
+
+
+AC_MSG_CHECKING([whether sin_len is defined])
+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+#include <stdio.h>
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+]], [[
+do {
+ struct sockaddr_in a;
+ (void) a.sin_len;
+} while(0)
+]])],[
+  AC_MSG_RESULT(yes)
+  AC_DEFINE(HAVE_SIN_LEN,,[define if you have sin_len])
+],[
+  AC_MSG_RESULT(no)
+])  
+
+
+AC_MSG_CHECKING([whether __ss_family is defined])
+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+#include <stdio.h>
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/socket.h>
+]], [[
+do {
+ struct sockaddr_storage a;
+ (void) a.__ss_family;
+} while(0)
+]])],[
+  AC_MSG_RESULT(yes)
+  AC_DEFINE(HAVE___SS_FAMILY,,[define if you have __ss_family])
+],[
+  AC_MSG_RESULT(no)
+])  
+
+
+AC_MSG_CHECKING([whether ss_len is defined])
+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+#include <stdio.h>
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/socket.h>
+]], [[
+do {
+ struct sockaddr_storage a;
+ (void) a.ss_len;
+} while(0)
+]])],[
+  AC_MSG_RESULT(yes)
+  AC_DEFINE(HAVE_SS_LEN,,[define if you have ss_len])
+],[
+  AC_MSG_RESULT(no)
+])  
+
+
+AC_MSG_CHECKING([whether __ss_len is defined])
+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+#include <stdio.h>
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/socket.h>
+]], [[
+do {
+ struct sockaddr_storage a;
+ (void) a.__ss_len;
+} while(0)
+]])],[
+  AC_MSG_RESULT(yes)
+  AC_DEFINE(HAVE___SS_LEN,,[define if you have __ss_len])
+],[
+  AC_MSG_RESULT(no)
+])  
+
+
+
+AC_MSG_CHECKING([if a linuxish sendfile is available])
+AC_LINK_IFELSE([AC_LANG_PROGRAM([[
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/socket.h>
+#ifdef HAVE_SYS_UIO_H
+# include <sys/uio.h>
+#endif
+#ifdef HAVE_SYS_SENDFILE_H
+# include <sys/sendfile.h>
+#endif
+]], [[
+do {
+ int fd = 0;
+ off_t *off = NULL;
+ size_t cnt = (size_t) 0;
+ 
+ (void) sendfile(fd, fd, off, cnt);
+} while(0)
+]])],[
+  AC_MSG_RESULT(yes)
+  AC_DEFINE(SENDFILE_LINUX,,[define if you have a linuxish sendfile])
+],[
+  AC_MSG_RESULT(no)
+])  
+
+AC_MSG_CHECKING([if a linuxish sendfile64 is available])
+AC_LINK_IFELSE([AC_LANG_PROGRAM([[
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/socket.h>
+#ifdef HAVE_SYS_UIO_H
+# include <sys/uio.h>
+#endif
+#ifdef HAVE_SYS_SENDFILE_H
+# include <sys/sendfile.h>
+#endif
+]], [[
+do {
+ int fd = 0;
+ off_t *off = NULL;
+ size_t cnt = (size_t) 0;
+ 
+ (void) sendfile64(fd, fd, off, cnt);
+} while(0)
+]])],[
+  AC_MSG_RESULT(yes)
+  AC_DEFINE(SENDFILE64_LINUX,,[define if you have a linuxish sendfile64])
+],[
+  AC_MSG_RESULT(no)
+])
+
+AC_MSG_CHECKING([if a freebsdish sendfile is available])
+AC_LINK_IFELSE([AC_LANG_PROGRAM([[
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/socket.h>
+#ifdef HAVE_SYS_UIO_H
+# include <sys/uio.h>
+#endif
+#ifdef HAVE_SYS_SENDFILE_H
+# include <sys/sendfile.h>
+#endif
+]], [[
+do {
+ int fd = 0;
+ off_t off = (off_t) 0;
+ size_t cnt = (size_t) 0;
+ struct sf_hdtr *hdtr = NULL;
+ 
+ (void) sendfile(fd, fd, off, cnt, hdtr, &off, 42);
+} while(0)
+]])],[
+  AC_MSG_RESULT(yes)
+  AC_DEFINE(SENDFILE_FREEBSD,,[define if you have a freebsdish sendfile])
+],[
+  AC_MSG_RESULT(no)
+])
+
+AC_MSG_CHECKING([if a hpuxish sendfile is available])
+AC_LINK_IFELSE([AC_LANG_PROGRAM([[
+#include <sys/socket.h>
+#include <stdio.h>
+]], [[
+do {
+ int fd = 0;
+ off_t off = (off_t) 0;
+ bsize_t nbytes = (size_t) 0;
+ const struct iovec *hdtrl = NULL;
+ 
+ (void) sendfile(fd, fd, off, nbytes, hdtrl, 42);
+} while(0)
+]])],[
+  AC_MSG_RESULT(yes)
+  AC_DEFINE(SENDFILE_HPUX,,[define if you have a hpuxish sendfile])
+],[
+  AC_MSG_RESULT(no)
+])
+
+AC_CHECK_FUNC(sendfilev, , [AC_CHECK_LIB(sendfile, sendfilev)])
+
+AC_MSG_CHECKING([if a solarisish sendfilev is available])
+AC_LINK_IFELSE([AC_LANG_PROGRAM([[
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/socket.h>
+#ifdef HAVE_SYS_UIO_H
+# include <sys/uio.h>
+#endif
+#ifdef HAVE_SYS_SENDFILE_H
+# include <sys/sendfile.h>
+#endif
+]], [[
+do {
+ int fd = 0, sfvcnt = 0;
+ const struct sendfilevec vec;
+ size_t xferred;
+ 
+ (void) sendfilev(fd, &vec, sfvcnt, &xferred);
+} while(0)
+]])],[
+  AC_MSG_RESULT(yes)
+  AC_DEFINE(SENDFILEV_SOLARIS,,[define if you have a solarisish sendfilev])
+],[
+  AC_MSG_RESULT(no)
+])
+
+
+AC_ARG_WITH(cookie,
+[AS_HELP_STRING(--with-cookie,Support 'fortune' cookies (-F option))],
+[ if test "x$withval" = "xyes" ; then
+    AC_DEFINE(COOKIE,,[with cookie])
+  fi ])
+
+AC_ARG_WITH(throttling,
+[AS_HELP_STRING(--with-throttling,Support bandwidth throttling (disabled by default))],
+[ if test "x$withval" = "xyes" ; then
+    AC_DEFINE(THROTTLING,,[with throttling])
+  fi ])
+
+AC_ARG_WITH(ratios,
+[AS_HELP_STRING(--with-ratios,Support for upload/download ratios)],
+[ if test "x$withval" = "xyes" ; then
+    AC_DEFINE(RATIOS,,[with ratios])
+  fi ])
+
+AC_ARG_WITH(quotas,
+[AS_HELP_STRING(--with-quotas,Support .ftpquota files)],
+[ if test "x$withval" = "xyes" ; then
+    AC_DEFINE(QUOTAS,,[with quotas])
+  fi ])
+
+AC_ARG_WITH(ftpwho,
+[AS_HELP_STRING(--with-ftpwho,Support for pure-ftpwho)],
+[ if test "x$withval" = "xyes" ; then
+    AC_DEFINE(FTPWHO,,[with ftpwho])
+  fi ])
+
+AC_ARG_WITH(welcomemsg,
+[AS_HELP_STRING(--with-welcomemsg,Support welcome.msg backward compatibility (deprecated))],
+[ if test "x$withval" = "xyes" ; then
+      AC_DEFINE(WITH_WELCOME_MSG,,[with welcomemsg])
+  fi ])
+
+AC_ARG_WITH(uploadscript,
+[AS_HELP_STRING(--with-uploadscript,Allow running an external script after an upload (experimental))],
+[ if test "x$withval" = "xyes" ; then
+      AC_DEFINE(WITH_UPLOAD_SCRIPT,,[with uploadscript])
+  fi ])
+
+AC_ARG_WITH(virtualhosts,
+[AS_HELP_STRING(--with-virtualhosts,Handle virtual servers on different IP addresses)],
+[ if test "x$withval" = "xyes" ; then
+      AC_DEFINE(WITH_VIRTUAL_HOSTS,,[with virtualhosts])
+  fi ])
+
+AC_ARG_WITH(virtualchroot,
+[AS_HELP_STRING(--with-virtualchroot,Enable the ability to follow symlinks outside a chroot jail)],
+[ if test "x$withval" = "xyes" ; then
+      AC_DEFINE(WITH_VIRTUAL_CHROOT,,[with virtual chroot])
+  fi ])
+
+AC_ARG_WITH(diraliases,
+[AS_HELP_STRING(--with-diraliases,Enable directory aliases)],
+[ if test "x$withval" = "xyes" ; then
+      AC_DEFINE(WITH_DIRALIASES,,[with directory aliases])
+  fi ])
+
+AC_ARG_WITH(nonroot,
+[AS_HELP_STRING(--with-nonroot,[Compile a limited server designed to be started as a regular user. Only enable this option as a last resort if you really don't have root privileges on the server host.])],
+[ if test "x$withval" = "xyes" ; then
+      AC_DEFINE(NON_ROOT_FTP,,[with nonroot])
+      AC_DEFINE(WITH_VIRTUAL_CHROOT)      
+      non_root_ftp=yes
+      without_privsep=yes
+  fi ])
+
+if test "x$without_privsep" = "xyes" ; then
+  AC_DEFINE(WITHOUT_PRIVSEP,,[disable privilege separation])
+fi
+
+AC_ARG_WITH(peruserlimits,
+[AS_HELP_STRING(--with-peruserlimits,Support per-user concurrency limits)],
+[ if test "x$withval" = "xyes" ; then
+      AC_DEFINE(PER_USER_LIMITS,,[with per-user limits])
+      AC_DEFINE(FTPWHO)
+  fi ])
+
+AC_ARG_WITH(implicittls,
+[AS_HELP_STRING(--with-implicittls,Implicit TLS (port 990) - DO NOT USE unless you know what you are doing)],
+[ if test "x$withval" = "xyes" ; then
+      AC_DEFINE(IMPLICIT_TLS,,[with implicit TLS])
+      with_tls="yes"
+  fi ])
+
+AC_ARG_WITH(debug,
+[AS_HELP_STRING(--with-debug,For maintainers only - please do not use)],
+[ if test "x$withval" = "xyes" ; then
+    if test "$LX_CFLAGS" = "NONE"; then
+      nxflags=""
+      for flag in `echo $CFLAGS`; do
+        case "$flag" in
+          -O*) ;;
+          -g*) ;;
+          *) nxflags="$nxflags $flag"
+        esac
+      done
+      CFLAGS="$nxflags -O0 -g3 $CWFLAGS"
+    fi
+    CPPFLAGS="$CPPFLAGS -DDEBUG=1"
+  fi ])
+
+AC_ARG_WITH(everything,
+[AS_HELP_STRING(--with-everything,Build a big server with almost everything)],
+[ if test "x$withval" = "xyes" ; then
+    AC_DEFINE(WITH_ALTLOG)
+    AC_DEFINE(COOKIE)
+    AC_DEFINE(THROTTLING)
+    AC_DEFINE(RATIOS)
+    AC_DEFINE(QUOTAS)    
+    AC_DEFINE(WITH_UPLOAD_SCRIPT)
+    AC_DEFINE(WITH_VIRTUAL_HOSTS)
+    AC_DEFINE(WITH_PUREDB)
+    AC_DEFINE(WITH_EXTAUTH)
+    AC_DEFINE(FTPWHO)
+    AC_DEFINE(WITH_DIRALIASES)
+    AC_DEFINE(PER_USER_LIMITS)
+    with_bonjour='yes'
+  fi ])
+
+AC_ARG_WITH(language,
+[AS_HELP_STRING(--with-language=,< english | albanian | german | romanian | french |
+french-funny | polish | spanish | danish | dutch | italian |
+brazilian-portuguese | slovak | korean | swedish | norwegian | russian |
+traditional-chinese | simplified-chinese | czech | turkish | hungarian |
+catalan>)],
+[ if test "x$withval" = "xenglish" ; then
+    AC_DEFINE(MESSAGES_EN,,[english])
+  elif test "x$withval" = "xalbanian" ; then
+    AC_DEFINE(MESSAGES_SQ,,[albanian])
+  elif test "x$withval" = "xgerman" ; then
+    AC_DEFINE(MESSAGES_DE,,[german])
+  elif test "x$withval" = "xromanian" ; then
+    AC_DEFINE(MESSAGES_RO,,[romanian])
+  elif test "x$withval" = "xfrench" ; then
+    AC_DEFINE(MESSAGES_FR,,[french])
+  elif test "x$withval" = "xfrench-funny" ; then
+    AC_DEFINE(MESSAGES_FR_FUNNY,,[french-funny])    
+  elif test "x$withval" = "xpolish" ; then  
+    AC_DEFINE(MESSAGES_PL,,[polish])
+  elif test "x$withval" = "xspanish" ; then
+    AC_DEFINE(MESSAGES_ES,,[spanish])
+  elif test "x$withval" = "xdanish" ; then
+    AC_DEFINE(MESSAGES_DA,,[danish])
+  elif test "x$withval" = "xdutch" ; then
+    AC_DEFINE(MESSAGES_NL,,[dutch])
+  elif test "x$withval" = "xitalian" ; then
+    AC_DEFINE(MESSAGES_IT,,[italian])
+  elif test "x$withval" = "xbrazilian-portuguese" ; then
+    AC_DEFINE(MESSAGES_PT_BR,,[brazilian portuguese])
+  elif test "x$withval" = "xslovak" ; then
+    AC_DEFINE(MESSAGES_SK,,[slovak])
+  elif test "x$withval" = "xkorean" ; then
+    AC_DEFINE(MESSAGES_KR,,[korean])
+  elif test "x$withval" = "xswedish" ; then
+    AC_DEFINE(MESSAGES_SV,,[swedish])
+  elif test "x$withval" = "xnorwegian" ; then
+    AC_DEFINE(MESSAGES_NO,,[norwegian])
+  elif test "x$withval" = "xrussian" ; then
+    AC_DEFINE(MESSAGES_RU,,[russian])
+  elif test "x$withval" = "xtraditional-chinese" ; then
+    AC_DEFINE(MESSAGES_ZH_TW,,[traditional chinese])
+  elif test "x$withval" = "xsimplified-chinese" ; then
+    AC_DEFINE(MESSAGES_ZH_CN,,[simplified chinese])
+  elif test "x$withval" = "xczech" ; then
+    AC_DEFINE(MESSAGES_CS_CZ,,[czech])
+  elif test "x$withval" = "xturkish" ; then
+    AC_DEFINE(MESSAGES_TR,,[turkish])
+  elif test "x$withval" = "xhungarian" ; then
+    AC_DEFINE(MESSAGES_HU,,[hungarian])
+  elif test "x$withval" = "xcatalan" ; then
+    AC_DEFINE(MESSAGES_CA_ES,,[catalan])
+  else 
+    AC_MSG_WARN(--with-language=$withval is not recognized)
+  fi ])
+
+
+
+dnl Checks for libraries.
+
+AC_CHECK_LIB(crypt, crypt, , )
+
+AC_CHECK_LIB(sodium, crypto_pwhash_scryptsalsa208sha256_str)
+
+dnl Checks for library functions.
+AC_FUNC_ALLOCA
+AC_FUNC_MMAP
+AC_FUNC_MEMCMP
+AC_FUNC_STRFTIME
+AC_FUNC_STAT
+AC_FUNC_VPRINTF
+AC_FUNC_GETLOADAVG(src)
+AC_FUNC_GETGROUPS
+AC_FUNC_UTIME_NULL
+AC_FUNC_STRTOD
+AC_FUNC_SELECT_ARGTYPES
+AC_FUNC_MKTIME
+AC_FUNC_LSTAT
+AC_FUNC_FORK
+AC_FUNC_ERROR_AT_LINE
+AC_FUNC_CLOSEDIR_VOID
+AC_FUNC_CHOWN
+AC_C_VOLATILE
+
+
+AC_CHECK_FUNCS(initgroups setrlimit waitpid setproctitle getopt_long)
+AC_CHECK_FUNCS(seteuid setreuid setresuid setegid setregid setresgid)
+AC_CHECK_FUNCS(statvfs statfs putenv setenv unsetenv getpagesize realpath)
+AC_CHECK_FUNCS(pread posix_fadvise ptrace)
+AC_CHECK_FUNCS(strtoull strtoq)
+AC_CHECK_FUNCS(strlcpy strlcat)
+AC_CHECK_FUNCS(memset munmap strdup fileno mapviewoffile madvise)
+AC_CHECK_FUNCS(getaddrinfo getnameinfo inet_ntop inet_pton)
+AC_CHECK_FUNCS(setusershell setgroups snprintf vsnprintf vfprintf gethostname)
+AC_CHECK_FUNCS(setlocale timegm)
+AC_CHECK_FUNCS(tzset utime utimes mknod mkfifo)
+AC_CHECK_FUNCS(random srandomdev arc4random arc4random_stir arc4random_addrandom)
+AC_CHECK_FUNCS(closefrom explicit_bzero getpwnam_shadow)
+
+AC_MSG_CHECKING([whether statvfs64() is defined])
+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+#include <stdio.h>
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#ifdef HAVE_SYS_STATVFS_H
+# include <sys/statvfs.h>
+#endif
+]], [[
+for (;;) {
+ struct statvfs64 a;
+ if (statvfs64(".", &a) == 0 || a.f_bsize != 0) {
+   break;
+ }
+} 
+]])],[
+  AC_MSG_RESULT(yes)
+  AC_DEFINE(HAVE_STATVFS64,,[define if you have statvfs64])
+],[
+  AC_MSG_RESULT(no)
+])  
+
+AC_MSG_CHECKING(whether snprintf is C99 conformant)
+AC_RUN_IFELSE([AC_LANG_SOURCE([[
+#include <stdio.h>
+#ifdef STDC_HEADERS
+# include <stdlib.h>
+# include <stddef.h>
+#else
+# if HAVE_STDLIB_H
+#  include <stdlib.h>
+# endif
+#endif
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+
+int main(void)
+{
+    char buf[4];
+    
+    (void) fprintf(fopen("conftestval", "w"), "%d\n",
+        (int) snprintf(buf, sizeof buf, "12345678"));
+    return 0;
+}
+]])],[CONF_SNPRINTF_TYPE=`cat conftestval`
+],[],[CONF_SNPRINTF_TYPE=8])
+AC_MSG_RESULT(done)
+if test "x$CONF_SNPRINTF_TYPE" = "x" ; then
+  AC_MSG_WARN(your operating system doesn't implement snprintf)
+else
+  AC_DEFINE_UNQUOTED(CONF_SNPRINTF_TYPE, $CONF_SNPRINTF_TYPE, [return value of an overflowed snprintf])
+fi
+
+
+AC_MSG_CHECKING(whether getgroups 0 is sane)
+AC_RUN_IFELSE([AC_LANG_SOURCE([[
+#include <stdio.h>
+#ifdef STDC_HEADERS
+# include <stdlib.h>
+# include <stddef.h>
+#else
+# if HAVE_STDLIB_H
+#  include <stdlib.h>
+# endif
+#endif
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+
+int main(void)
+{
+    return getgroups(0, NULL) <= 0;
+}
+]])],[
+AC_MSG_RESULT(yes)
+AC_DEFINE(SAFE_GETGROUPS_0,,[Define is getgroups(0, NULL) works on your system])
+],[AC_MSG_RESULT(no)
+],[AC_MSG_RESULT(suppose that it doesnt)])
+
+AC_MSG_CHECKING(whether realpath likes unreadable directories)
+AC_RUN_IFELSE([AC_LANG_SOURCE([[
+#include <stdio.h>
+#ifdef STDC_HEADERS
+# include <stdlib.h>
+# include <stddef.h>
+#else
+# if HAVE_STDLIB_H
+#  include <stdlib.h>
+# endif
+#endif
+#include <sys/types.h>
+#include <sys/stat.h>
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#ifdef HAVE_LIMITS_H
+# include <limits.h>
+#endif
+#ifdef HAVE_SYS_PARAM_H
+# include <sys/param.h>
+#endif
+
+#ifndef PATH_MAX
+# define PATH_MAX MAXPATHLEN
+#endif
+
+int main(void)
+{
+    char x[PATH_MAX];
+    
+    if (mkdir("x", 0300) != 0) {
+        return 1;
+    }
+    if (mkdir("x/y", 0300) != 0) {
+        rmdir("x");
+        return 2;
+    }    
+    if (chdir("x") != 0) {
+        rmdir("x/y");    
+        rmdir("x");
+        return 3;
+    }
+    if (realpath("y", x) == NULL) {
+        rmdir("y");
+        rmdir("../x");
+        return 4;
+    }
+    rmdir("y");
+    rmdir("../x");
+    
+    return 0;    
+}
+]])],[
+AC_MSG_RESULT(yes)
+AC_DEFINE(REALPATH_WORKS_WITH_UNREADABLE_DIRECTORIES,,
+[Define if realpath() works on unreadable directories])
+],[AC_MSG_RESULT(no)
+AC_DEFINE(USE_BUILTIN_REALPATH)
+],[AC_MSG_RESULT(no)
+AC_DEFINE(USE_BUILTIN_REALPATH)])
+
+AC_MSG_CHECKING([whether we are inside a Virtuozzo virtual host])
+if test -d /proc/vz; then
+  AC_MSG_RESULT(yes)
+  AC_DEFINE(VIRTUOZZO,,[Define if you are inside a Virtuozzo virtual
+host])
+else
+  AC_MSG_RESULT(no)
+fi
+
+AC_MSG_CHECKING(default TCP send buffer size)
+AC_RUN_IFELSE([AC_LANG_SOURCE([[
+#include <stdio.h>
+#ifdef STDC_HEADERS
+# include <stdlib.h>
+# include <stddef.h>
+#else
+# if HAVE_STDLIB_H
+#  include <stdlib.h>
+# endif
+#endif
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+int main(void)
+{
+    int fd,val=0,len=sizeof(int);
+    if ((fd = socket(PF_INET, SOCK_STREAM, 0)) < 0) return 1;
+        if (getsockopt(fd, SOL_SOCKET, SO_SNDBUF, &val, &len) < 0) return 1;
+    if (val <= 0) return 1;
+        fprintf (fopen("conftestval", "w"), "%d\n", val);
+    return 0;
+}
+]])],[CONF_TCP_SO_SNDBUF=`cat conftestval`],[CONF_TCP_SO_SNDBUF=65536],[CONF_TCP_SO_SNDBUF=65536])
+AC_MSG_RESULT($CONF_TCP_SO_SNDBUF)
+
+AC_DEFINE_UNQUOTED(CONF_TCP_SO_SNDBUF, $CONF_TCP_SO_SNDBUF, [default TCP send buffer])
+
+AC_MSG_CHECKING(default TCP receive buffer size)
+AC_RUN_IFELSE([AC_LANG_SOURCE([[
+#include <stdio.h>
+#ifdef STDC_HEADERS
+# include <stdlib.h>
+# include <stddef.h>
+#else
+# if HAVE_STDLIB_H
+#  include <stdlib.h>
+# endif
+#endif
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+int main(void)
+{
+    int fd,val=0,len=sizeof(int);
+    if ((fd = socket(PF_INET, SOCK_STREAM, 0)) < 0) return 1;
+        if (getsockopt(fd, SOL_SOCKET, SO_RCVBUF, &val, &len) < 0) return 1;
+    if (val <= 0) return 1;
+        fprintf (fopen("conftestval", "w"), "%d\n", val);
+    return 0;
+}
+]])],[CONF_TCP_SO_RCVBUF=`cat conftestval`],[CONF_TCP_SO_RCVBUF=65536],[CONF_TCP_SO_RCVBUF=65536])
+AC_MSG_RESULT($CONF_TCP_SO_RCVBUF)
+
+AC_DEFINE_UNQUOTED(CONF_TCP_SO_RCVBUF, $CONF_TCP_SO_RCVBUF, [defaut TCP receive buffer])
+
+
+AC_ARG_WITH(ldap,
+[AS_HELP_STRING(--with-ldap,Users database is an LDAP directory (see doc))],
+[ if test "x$withval" != "xno" ; then
+    if test "x$withval" != "x" && test "x$withval" != "xyes" ; then
+      LD_RUN_PATH="${withval}/lib${LD_RUN_PATH:+:}${LD_RUN_PATH}"
+      LDFLAGS="$LDFLAGS -L${withval}/lib"
+      CPPFLAGS="$CPPFLAGS -I${withval}/include"
+    fi
+    with_ldap="yes"
+    AC_DEFINE(WITH_LDAP,,[with ldap])
+    AC_CHECK_LIB(resolv, res_query)
+    AC_CHECK_LIB(lber, ber_init, , 
+    [AC_MSG_ERROR(liblber is needed for LDAP support)])
+    AC_CHECK_LIB(ldap, ldap_init, ,
+     [AC_MSG_WARN(Initial check for -lldap failed! May need -lssl -lcrypto) 
+      AC_CHECK_LIB(ldap, ldap_bind, [ldap_ssl_libs=true], 
+      [AC_MSG_ERROR(libldap is needed for LDAP support)], -lssl -lcrypto)
+     ])
+    if test "x$ldap_ssl_libs" = "xtrue" ; then
+      LDAP_SSL_LIBS='-lssl -lcrypto'
+    fi
+  fi ])
+
+AC_SUBST(LDAP_SSL_LIBS)
+
+AC_ARG_WITH(mysql,
+[AS_HELP_STRING(--with-mysql,Users database is a MySQL database (see doc))],
+[ if test "x$withval" != "xno" ; then
+    if test "x$withval" != "x" && test "x$withval" != "xyes" ; then
+      LD_RUN_PATH="${withval}/lib${LD_RUN_PATH:+:}${LD_RUN_PATH}"    
+      LDFLAGS="$LDFLAGS -L${withval}/lib -L${withval}/lib/mysql -L${withval}/mysql/lib"
+      CPPFLAGS="$CPPFLAGS -I${withval}/include -I${withval}/include/mysql -I${withval}/mysql/include"
+    else
+      CFLAGS="$CFLAGS `mariadb_config --cflags 2> /dev/null || mysql_config --cflags`"
+      LDFLAGS="$LDFLAGS `mariadb_config --libs 2> /dev/null || mysql_config --libs`"
+    fi
+    AC_CHECK_LIB(m, floor)
+    AC_CHECK_LIB(z, gzclose)
+    with_mysql="yes"
+    AC_DEFINE(WITH_MYSQL,,[with mysql])
+    AC_CHECK_FUNC(mysql_init, , [
+      AC_CHECK_LIB(mariadb, mysql_init, , [
+        AC_CHECK_LIB(mysqlclient, mysql_init, ,
+          [AC_MSG_ERROR(libmysqlclient is needed for MySQL support)])
+      ])
+    ])
+    AC_MSG_CHECKING(whether mysql clients can run)
+    AC_LINK_IFELSE([AC_LANG_SOURCE([[
+      #include <stdio.h>
+      #include <mysql.h>    
+      int main(void)
+      {
+          MYSQL *a = mysql_init(NULL);
+          return 0;
+      }
+      ]])],[],[
+        AC_MSG_RESULT(no)
+        AC_MSG_ERROR(Your MySQL client libraries aren't properly installed)
+    ],[])
+    AC_MSG_RESULT(yes)
+  fi ])
+
+AC_ARG_WITH(pgsql,
+[AS_HELP_STRING(--with-pgsql,Users database is a PostgreSQL database (see doc))],
+[ if test "x$withval" != "xno" ; then
+    if test "x$withval" != "x" && test "x$withval" != "xyes" ; then
+      LD_RUN_PATH="${withval}/lib${LD_RUN_PATH:+:}${LD_RUN_PATH}"
+      LDFLAGS="$LDFLAGS -L${withval}/lib -L${withval}/lib/pgsql -L${withval}/lib/postgresql -L${withval}/pgsql/lib -L${withval}/postgresql/lib"
+      CPPFLAGS="$CPPFLAGS -I${withval}/include -I${withval}/include/pgsql -I${withval}/include/postgresql -I${withval}/pgsql/include -I${withval}/postgresql/include"
+    else
+      LD_RUN_PATH="`pg_config --libdir`${LD_RUN_PATH:+:}${LD_RUN_PATH}"
+      CPPFLAGS="$CPPFLAGS -I`pg_config --includedir`"
+      LDFLAGS="$LDFLAGS -L`pg_config --libdir`"
+    fi
+    AC_CHECK_LIB(m, floor)
+    AC_CHECK_LIB(z, gzclose)
+    with_pgsql="yes"
+    AC_DEFINE(WITH_PGSQL,,[with pgsql])
+    AC_CHECK_LIB(pq, PQconnectdb, ,
+      [AC_MSG_ERROR(libpq is needed for PostgreSQL support)])        
+    AC_MSG_CHECKING(whether postgresql clients can run)
+    AC_LINK_IFELSE([AC_LANG_SOURCE([[
+      #include <stdio.h>
+      #include <libpq-fe.h>
+      int main(void)
+      {
+          PGconn *a = PQconnectdb("");
+          return 0;
+      }
+      ]])],[],[
+        AC_MSG_RESULT(no)
+        AC_MSG_ERROR(Your PostgreSQL client libraries aren't properly installed)      
+    ],[])    
+    AC_MSG_RESULT(yes)
+  fi ])
+
+AC_ARG_WITH(tls,
+[AS_HELP_STRING(--with-tls,Enable TLS support)],
+[ if test "x$withval" = "xyes" ; then
+    with_tls="yes"
+  fi ])
+
+if test "x$with_tls" = "xyes" ; then
+  if test "x$ac_cv_header_openssl_ssl_h" != "xyes" ; then
+    AC_MSG_ERROR(OpenSSL headers not found.)  
+  fi
+  AC_CHECK_LIB(crypto, DH_new)
+  AC_CHECK_LIB(ssl, SSL_accept)
+  AC_CHECK_FUNCS(DH_get_2048_256 TLS_server_method)
+  AC_DEFINE(WITH_TLS,,[Enable TLS])
+fi
+
+AC_ARG_WITH(certfile,
+[AS_HELP_STRING(--with-certfile=,certificate file (default: /etc/ssl/private/pure-ftpd.pem))],
+[ if test "x$withval" != "x" ; then
+    certfile="$withval"
+    AC_SUBST(certfile)
+    CPPFLAGS="$CPPFLAGS -DTLS_CERTIFICATE_FILE='\"$certfile\"'"
+    if test ! -e "$certfile"; then
+      AC_MSG_WARN(No certificate is installed in $certfile yet)
+    fi
+  fi ])
+
+AC_ARG_WITH(keyfile,
+[AS_HELP_STRING(--with-keyfile=,certificate key file (default: /etc/ssl/private/pure-ftpd.pem))],
+[ if test "x$withval" != "x" ; then
+    keyfile="$withval"
+    AC_SUBST(keyfile)
+    CPPFLAGS="$CPPFLAGS -DTLS_KEY_FILE='\"$keyfile\"'"
+    if test ! -e "$keyfile"; then
+      AC_MSG_WARN(No certificate key is installed in $keyfile yet)
+    fi
+  fi ])
+
+AC_ARG_WITH(bonjour,
+[AS_HELP_STRING(--with-bonjour,Enable Bonjour support on MacOS X)],
+[ if test "x$withval" = "xyes" ; then
+    with_bonjour="yes"
+  fi ])
+
+if test "x$with_bonjour" = "xyes" ; then
+  if test "x$ac_cv_header_CoreFoundation_CoreFoundation_h" = "xyes" ; then
+    AC_DEFINE(WITH_BONJOUR,,[Enable Bonjour on MacOS X])
+    BONJOUR_LDADD='-framework CoreFoundation -framework CoreServices'
+  fi
+fi
+
+AC_SUBST(BONJOUR_LDADD)
+
+if test "x$sysconfdir" = 'xNONE' || test "x$sysconfdir" = 'x'; then
+  CONFDIR='/etc'
+else
+  if test "x$sysconfdir" = 'x${prefix}/etc'; then
+    if test "x$prefix" = 'xNONE' || test "x$prefix" = 'x/usr'; then
+      CONFDIR='/etc'
+    else
+      CONFDIR="$sysconfdir"
+    fi
+  else
+    CONFDIR="$sysconfdir"
+  fi
+fi  
+
+if test "x$localstatedir" = 'xNONE' || test "x$localstatedir" = 'x'; then
+  LOCALSTATEDIR='/var'
+else
+  if test "x$localstatedir" = 'x${prefix}/var'; then
+    if test "x$prefix" = 'xNONE' || test "x$prefix" = 'x/usr' || test "x$localstatedir" = 'x${prefix}/var' ; then
+      LOCALSTATEDIR='/var'
+    else
+      LOCALSTATEDIR="$localstatedir"
+    fi
+  else
+    LOCALSTATEDIR="$localstatedir"
+  fi
+fi  
+
+if test -r /dev/urandom; then
+  AC_MSG_NOTICE([You have /dev/urandom - Great])
+  AC_DEFINE(HAVE_DEV_URANDOM,,[Define if you have /dev/urandom])
+fi
+if test -r /dev/random; then
+  AC_MSG_NOTICE([You have /dev/random - Great])
+  AC_DEFINE(HAVE_DEV_RANDOM,,[Define if you have /dev/random])
+fi
+
+CONFDIR=`eval echo "$CONFDIR"`
+LOCALSTATEDIR=`eval echo "$LOCALSTATEDIR"`
+
+sysconfdir="$CONFDIR"
+AC_SUBST(sysconfdir)
+localstatedir="$LOCALSTATEDIR"
+AC_SUBST(localstatedir)
+
+CPPFLAGS="$CPPFLAGS -DCONFDIR=\\\"$sysconfdir\\\""
+CPPFLAGS="$CPPFLAGS -DSTATEDIR=\\\"$localstatedir\\\""
+
+AC_SUBST(CONFDIR)
+AC_SUBST(LOCALSTATEDIR)
+
+AH_VERBATIM([NDEBUG], [/* Never ever ignore assertions */
+#ifdef NDEBUG
+#/**/undef/**/ NDEBUG
+#endif])
+
+AC_CONFIG_FILES(Makefile src/Makefile pam/Makefile man/Makefile
+gui/Makefile m4/Makefile pure-ftpd.conf puredb/Makefile
+puredb/src/Makefile
+man/pure-ftpd.8 man/pure-ftpwho.8 man/pure-mrtginfo.8 man/pure-uploadscript.8
+man/pure-statsdecode.8 man/pure-quotacheck.8 man/pure-pw.8 man/pure-pwconvert.8
+man/pure-authd.8 man/pure-certd.8)
+
+AC_OUTPUT
diff --git a/configure.ac b/configure.ac
index 7f23737..d497461 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1228,15 +1228,25 @@ AC_SUBST(LDAP_SSL_LIBS)
 
 AC_ARG_WITH(mysql,
 [AS_HELP_STRING(--with-mysql,Users database is a MySQL database (see doc))],
-[ if test "x$withval" != "xno" ; then
-    if test "x$withval" != "x" && test "x$withval" != "xyes" ; then
+[ AS_IF([test "x$withval" != "xno"],[
+    AS_IF([test "x$withval" != "x" && test "x$withval" != "xyes"],[
       LD_RUN_PATH="${withval}/lib${LD_RUN_PATH:+:}${LD_RUN_PATH}"    
       LDFLAGS="$LDFLAGS -L${withval}/lib -L${withval}/lib/mysql -L${withval}/mysql/lib"
       CPPFLAGS="$CPPFLAGS -I${withval}/include -I${withval}/include/mysql -I${withval}/mysql/include"
-    else
-      CFLAGS="$CFLAGS `mariadb_config --cflags 2> /dev/null || mysql_config --cflags`"
-      LDFLAGS="$LDFLAGS `mariadb_config --libs 2> /dev/null || mysql_config --libs`"
-    fi
+    ],[
+      PKG_CHECK_MODULES([LIBMARIADB],[libmariadb],[
+        CFLAGS="$CFLAGS $LIBMARIADB_CFLAGS"
+	LDFLAGS="$LDFLAGS $LIBMARIADB_LIBS"
+      ],[
+	PKG_CHECK_MODULES([MYSQLCLIENT],[mysqlclient],[
+          CFLAGS="$CFLAGS $MYSQLCLIENT_CFLAGS"
+	  LDFLAGS="$LDFLAGS $MYSQLCLIENT_LIBS"
+	],[
+          CFLAGS="$CFLAGS `mariadb_config --cflags 2> /dev/null || mysql_config --cflags`"
+          LDFLAGS="$LDFLAGS `mariadb_config --libs 2> /dev/null || mysql_config --libs`"
+	])
+      ])
+    ])
     AC_CHECK_LIB(m, floor)
     AC_CHECK_LIB(z, gzclose)
     with_mysql="yes"
@@ -1261,7 +1271,7 @@ AC_ARG_WITH(mysql,
         AC_MSG_ERROR(Your MySQL client libraries aren't properly installed)
     ],[])
     AC_MSG_RESULT(yes)
-  fi ])
+  ]) ])
 
 AC_ARG_WITH(pgsql,
 [AS_HELP_STRING(--with-pgsql,Users database is a PostgreSQL database (see doc))],
diff --git a/debian/changelog b/debian/changelog
index 2c20b89..d8d2e9c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+pure-ftpd (1.0.50-2.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * source only upload to enable migration (Closes: #1004682)
+
+ -- Paul Gevers <elbrus@debian.org>  Mon, 31 Jan 2022 19:42:16 +0100
+
 pure-ftpd (1.0.50-2) unstable; urgency=medium
 
   * Set debhelper compat level to 11 (Closes: #981387).

Debdiff

[The following lists of changes regard files as different if they have different names, permissions or owners.]

Files in second set of .debs but not in first

-rw-r--r--  root/root   /usr/lib/debug/.build-id/3f/0d5e09995479217a525aeaa53235c73fceb692.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/45/f11e48398c84a71a82927c3d5f0dd7ab1efa7f.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/62/c316683b3e8d15c6edabfada74650699464b84.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/66/da7ae52b1b88aa2dd2129d6fb949fac42d7d25.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/69/70cbc9ee42192360be6ec45b58186e7a3bff94.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/6a/ea24510883032483184fb03e99ffb6992269f3.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/7c/58d5be90466c1bb5b64e21d327f29cf5c0ae5f.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/85/39302ce8bd68917d087220ce9ed135aa9206ed.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/88/e081a53f6996d97ae07fb9ca426ea47ebc42b1.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/a7/e355eb7f0ab6f1a8a575217b222fa809c64635.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/aa/fb82836fe5c97dbd2a572c13f2634ef2924a69.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/bd/bb58f3861245d8eb4d6bbfb2e0bad9b1887c64.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/c1/3e4f7b533fba5e68da1d8e97d047fc945bb6e3.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/c8/81131901e3bdf3ad8e2bbf8ea08aa266896ee0.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/db/f04c4a05d9235cb35b9fa97aeef0e7aed0c7e6.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/eb/fda9f9255ba5254b9a46c95ce7a9a3c7c343f3.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/f1/068e08f98ea972c539c66119d7b94716f7032f.debug

Files in first set of .debs but not in second

-rw-r--r--  root/root   /usr/lib/debug/.build-id/06/0cf0986dfed633ed6e85a883d64906eb4d5bcb.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/16/715128e16450217b0f95e4f143423a4406180e.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/39/b9fb452f9fbe12e79f10c78d83eadb429b53d4.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/3c/fd28bbcaf94a7ce69d51e016ca3266c5042905.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/47/1fed1aa0ae04532d2cbad5b821d680141bac14.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/66/b321d78ba54da76dabbf780f97cb3a8c259c49.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/76/874fcc80fb5577bcbd3e2139ae3878b2026e61.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/79/d1390e984c6474be87172469d6bcd622c6720d.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/97/2a8fbb4bbcf5ec96bffa157a0393fdb7ba80eb.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/9b/1b4b2917c1f9627cf8d6d5512f5959230f61ec.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/9d/380fe848debe5ea193f07aaeaa8d161378d6ca.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/b3/226018069cdac526eea89096ab078e21143e6e.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/b6/a12c9423c24ce1be68e1561fc55433d82d857b.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/b7/697e84e8a3bd6ba5ae34ce81d589fdc9a9e415.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/bd/0a44a5417854a721a79b2de4427c8170cb7f39.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/bf/e788acb4efd962862ab7c22d10c12c85a34417.debug
-rw-r--r--  root/root   /usr/lib/debug/.build-id/fc/973c94e8031852636527cc70b34674ff33f5bd.debug

No differences were encountered between the control files of package pure-ftpd

No differences were encountered between the control files of package pure-ftpd-common

Control files of package pure-ftpd-dbgsym: lines which differ (wdiff format)

  • Build-Ids: 16715128e16450217b0f95e4f143423a4406180e 39b9fb452f9fbe12e79f10c78d83eadb429b53d4 3cfd28bbcaf94a7ce69d51e016ca3266c5042905 76874fcc80fb5577bcbd3e2139ae3878b2026e61 972a8fbb4bbcf5ec96bffa157a0393fdb7ba80eb 9b1b4b2917c1f9627cf8d6d5512f5959230f61ec b6a12c9423c24ce1be68e1561fc55433d82d857b b7697e84e8a3bd6ba5ae34ce81d589fdc9a9e415 bd0a44a5417854a721a79b2de4427c8170cb7f39 bfe788acb4efd962862ab7c22d10c12c85a34417 fc973c94e8031852636527cc70b34674ff33f5bd 62c316683b3e8d15c6edabfada74650699464b84 66da7ae52b1b88aa2dd2129d6fb949fac42d7d25 6970cbc9ee42192360be6ec45b58186e7a3bff94 7c58d5be90466c1bb5b64e21d327f29cf5c0ae5f 8539302ce8bd68917d087220ce9ed135aa9206ed 88e081a53f6996d97ae07fb9ca426ea47ebc42b1 a7e355eb7f0ab6f1a8a575217b222fa809c64635 c13e4f7b533fba5e68da1d8e97d047fc945bb6e3 c881131901e3bdf3ad8e2bbf8ea08aa266896ee0 dbf04c4a05d9235cb35b9fa97aeef0e7aed0c7e6 ebfda9f9255ba5254b9a46c95ce7a9a3c7c343f3

No differences were encountered between the control files of package pure-ftpd-ldap

Control files of package pure-ftpd-ldap-dbgsym: lines which differ (wdiff format)

  • Build-Ids: 16715128e16450217b0f95e4f143423a4406180e 3cfd28bbcaf94a7ce69d51e016ca3266c5042905 66b321d78ba54da76dabbf780f97cb3a8c259c49 972a8fbb4bbcf5ec96bffa157a0393fdb7ba80eb 9b1b4b2917c1f9627cf8d6d5512f5959230f61ec 9d380fe848debe5ea193f07aaeaa8d161378d6ca b6a12c9423c24ce1be68e1561fc55433d82d857b b7697e84e8a3bd6ba5ae34ce81d589fdc9a9e415 bd0a44a5417854a721a79b2de4427c8170cb7f39 bfe788acb4efd962862ab7c22d10c12c85a34417 fc973c94e8031852636527cc70b34674ff33f5bd 62c316683b3e8d15c6edabfada74650699464b84 66da7ae52b1b88aa2dd2129d6fb949fac42d7d25 6970cbc9ee42192360be6ec45b58186e7a3bff94 7c58d5be90466c1bb5b64e21d327f29cf5c0ae5f 8539302ce8bd68917d087220ce9ed135aa9206ed 88e081a53f6996d97ae07fb9ca426ea47ebc42b1 a7e355eb7f0ab6f1a8a575217b222fa809c64635 aafb82836fe5c97dbd2a572c13f2634ef2924a69 bdbb58f3861245d8eb4d6bbfb2e0bad9b1887c64 c13e4f7b533fba5e68da1d8e97d047fc945bb6e3 dbf04c4a05d9235cb35b9fa97aeef0e7aed0c7e6

No differences were encountered between the control files of package pure-ftpd-mysql

Control files of package pure-ftpd-mysql-dbgsym: lines which differ (wdiff format)

  • Build-Ids: 16715128e16450217b0f95e4f143423a4406180e 3cfd28bbcaf94a7ce69d51e016ca3266c5042905 471fed1aa0ae04532d2cbad5b821d680141bac14 79d1390e984c6474be87172469d6bcd622c6720d 972a8fbb4bbcf5ec96bffa157a0393fdb7ba80eb 9b1b4b2917c1f9627cf8d6d5512f5959230f61ec b6a12c9423c24ce1be68e1561fc55433d82d857b b7697e84e8a3bd6ba5ae34ce81d589fdc9a9e415 bd0a44a5417854a721a79b2de4427c8170cb7f39 bfe788acb4efd962862ab7c22d10c12c85a34417 fc973c94e8031852636527cc70b34674ff33f5bd 45f11e48398c84a71a82927c3d5f0dd7ab1efa7f 62c316683b3e8d15c6edabfada74650699464b84 66da7ae52b1b88aa2dd2129d6fb949fac42d7d25 6970cbc9ee42192360be6ec45b58186e7a3bff94 7c58d5be90466c1bb5b64e21d327f29cf5c0ae5f 8539302ce8bd68917d087220ce9ed135aa9206ed 88e081a53f6996d97ae07fb9ca426ea47ebc42b1 a7e355eb7f0ab6f1a8a575217b222fa809c64635 c13e4f7b533fba5e68da1d8e97d047fc945bb6e3 dbf04c4a05d9235cb35b9fa97aeef0e7aed0c7e6 f1068e08f98ea972c539c66119d7b94716f7032f

No differences were encountered between the control files of package pure-ftpd-postgresql

Control files of package pure-ftpd-postgresql-dbgsym: lines which differ (wdiff format)

  • Build-Ids: 060cf0986dfed633ed6e85a883d64906eb4d5bcb 16715128e16450217b0f95e4f143423a4406180e 3cfd28bbcaf94a7ce69d51e016ca3266c5042905 972a8fbb4bbcf5ec96bffa157a0393fdb7ba80eb 9b1b4b2917c1f9627cf8d6d5512f5959230f61ec b3226018069cdac526eea89096ab078e21143e6e b6a12c9423c24ce1be68e1561fc55433d82d857b b7697e84e8a3bd6ba5ae34ce81d589fdc9a9e415 bd0a44a5417854a721a79b2de4427c8170cb7f39 bfe788acb4efd962862ab7c22d10c12c85a34417 fc973c94e8031852636527cc70b34674ff33f5bd 3f0d5e09995479217a525aeaa53235c73fceb692 62c316683b3e8d15c6edabfada74650699464b84 66da7ae52b1b88aa2dd2129d6fb949fac42d7d25 6970cbc9ee42192360be6ec45b58186e7a3bff94 6aea24510883032483184fb03e99ffb6992269f3 7c58d5be90466c1bb5b64e21d327f29cf5c0ae5f 8539302ce8bd68917d087220ce9ed135aa9206ed 88e081a53f6996d97ae07fb9ca426ea47ebc42b1 a7e355eb7f0ab6f1a8a575217b222fa809c64635 c13e4f7b533fba5e68da1d8e97d047fc945bb6e3 dbf04c4a05d9235cb35b9fa97aeef0e7aed0c7e6

Run locally

More details

Full run details