From fd46af0c8f770038fb844ae71615818097f68af8 Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 04:59:00 +0200 Subject: [PATCH 001/688] Update gitignore --- .gitignore | 50 ++++++++------------------------------------------ 1 file changed, 8 insertions(+), 42 deletions(-) diff --git a/.gitignore b/.gitignore index c8fcfd1d..5a16bc19 100644 --- a/.gitignore +++ b/.gitignore @@ -1,44 +1,10 @@ -.*.swp -.deps -Makefile -Makefile.in -aclocal.m4 -autom4te.cache -compile -config.guess -config.h -config.h.in -config.log -config.status -config.sub -configure -depcomp -doc/Doxyfile -doc/Makefile -doc/Makefile.in -install-sh +rdiff *.o +CMakeCache.txt +config.h +*.cbp librsync-config.h -libtool -ltmain.sh -missing -popt/Makefile -popt/Makefile.in -popt/libpopt.a -prototab.c -prototab.h -stamp-h1 -*.Po -test-driver -testsuite/mutate.tmp -testsuite/isprefix.driver -testsuite/*.log -testsuite/*.trs -rdiff -*.lo -.libs -librsync.la -librsync-[0-9]*tar.gz -librsync-[0-9]*/ -/m4/ -tags +librsync.so* +Makefile +CMakeFiles + From 0adf69e8e5d6dcdd8a02599d526367fe8a39713e Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 05:00:23 +0200 Subject: [PATCH 002/688] Added first version of CMakeFile.txt --- CMakeLists.txt | 268 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 268 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..dbc8adad --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,268 @@ +project(librsync) +cmake_minimum_required(VERSION 2.6) + + +set(librsync_MAJOR_VERSION 1) +set(librsync_MINOR_VERSION 0) +set(librsync_PATCH_VERSION 0) + +set(librsync_VERSION + ${librsync_MAJOR_VERSION}.${librsync_MINOR_VERSION}.${librsync_PATCH_VERSION}) + +set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") + +if (NOT CMAKE_SYSTEM_PROCESSOR) + message(FATAL_ERROR "No target CPU architecture set") +endif() + +if (NOT CMAKE_SYSTEM_NAME) + message(FATAL_ERROR "No target OS set") +endif() + + +include ( CheckIncludeFiles ) +check_include_files ( alloca.h HAVE_ALLOCA_H ) +check_include_files ( dlfcn.h HAVE_DLFCN_H ) +check_include_files ( inttypes.h HAVE_INTTYPES_H ) +check_include_files ( memory.h HAVE_MEMORY_H ) +check_include_files ( stdint.h HAVE_STDINT_H ) +check_include_files ( stdlib.h HAVE_STDLIB_H ) +check_include_files ( strings.h HAVE_STRINGS_H ) +check_include_files ( string.h HAVE_STRING_H ) +check_include_files ( sys/stat.h HAVE_SYS_STAT_H ) +check_include_files ( sys/types.h HAVE_SYS_TYPES_H ) +check_include_files ( unistd.h HAVE_UNISTD_H ) +check_include_files ( bzlib.h HAVE_BZLIB_H ) +check_include_files ( fcntl.h HAVE_FCNTL_H ) +check_include_files ( malloc.h HAVE_MALLOC_H ) +check_include_files ( mcheck.h HAVE_MCHECK_H ) +check_include_files ( sys/file.h HAVE_SYS_FILE_H ) +check_include_files ( zlib.h HAVE_ZLIB_H ) + +#Temporary configuration +set ( STDC_HEADERS 1 ) +set ( DO_RS_TRACE 0 ) +set ( HAVE_PROGRAM_INVOCATION_NAME 0) +set ( HAVE_VARARG_MACROS 0 ) + + +include ( CheckFunctionExists ) +check_function_exists ( alloca HAVE_ALLOCA ) +check_function_exists ( fseeko HAVE_FSEEKO ) +check_function_exists ( memmove HAVE_MEMMOVE ) +check_function_exists ( memset HAVE_MEMSET ) +check_function_exists ( snprintf HAVE_SNPRINTF ) +check_function_exists ( strchr HAVE_STRCHR ) +check_function_exists ( strerror HAVE_STRERROR ) +check_function_exists ( vsnprintf HAVE_VSNPRINTF ) +check_function_exists ( _snprintf HAVE__SNPRINTF ) +check_function_exists ( _vsnprintf HAVE__VSNPRINTF ) + +include(CheckTypeSize) +check_type_size ( "long" SIZEOF_LONG ) +check_type_size ( "long long" SIZEOF_LONG_LONG ) +check_type_size ( "off_t" SIZEOF_OFF_T ) +check_type_size ( "size_t" SIZEOF_SIZE_T ) +check_type_size ( "unsigned int" SIZEOF_UNSIGNED_INT ) +check_type_size ( "unsigned long" SIZEOF_UNSIGNED_LONG ) +check_type_size ( "unsigned short" SIZEOF_UNSIGNED_SHORT ) + +site_name(SITE_NAME) + +message (STATUS "PROJECT_NAME = ${PROJECT_NAME}") +message (STATUS "SITE_NAME = ${SITE_NAME}") + +# Find POPT +find_package(POPT REQUIRED) +include_directories(${POPT_INCLUDE_DIRS}) + +# Find BZIP +find_package (BZip2 REQUIRED) +if (BZIP2_FOUND) + message (STATUS "Found components for BZIP2") + message (STATUS "BZIP2_INCLUDE_DIR = ${BZIP2_INCLUDE_DIR}") + message (STATUS "BZIP_LIBRARIES = ${BZIP2_LIBRARIES}") + include_directories(${BZIP2_INCLUDE_DIR}) +endif (BZIP2_FOUND) + +# Find ZLIB +find_package (ZLIB REQUIRED) +if (ZLIB_FOUND) + message (STATUS "Found components for ZLIB") + message (STATUS "BZIP2_INCLUDE_DIR = ${ZLIB_INCLUDE_DIR}") + message (STATUS "BZIP_LIBRARIES = ${ZLIB_LIBRARIES}") + include_directories(${ZLIB_INCLUDE_DIRS}) +endif (ZLIB_FOUND) + +configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h) + +configure_file(${CMAKE_CURRENT_SOURCE_DIR}/librsync-config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/librsync-config.h) + +#add_subdirectory(doc) +#add_subdirectory(testsuite) + + +########### next target ############### + +set(rsync_LIB_SRCS + prototab.c + prototab.h + base64.c + buf.c + buf.h + config.h + checksum.c + checksum.h + command.c + command.h + delta.c + emit.c + emit.h + fileutil.c + fileutil.h + hex.c + job.c + job.h + mdfour.c + mdfour.h + mksum.c + msg.c + netint.c + netint.h + patch.c + readsums.c + librsync.h + librsync-config.h + rollsum.c + rollsum.h + scoop.c + search.c + search.h + stats.c + stream.c + stream.h + sumset.c + sumset.h + trace.c + trace.h + tube.c + types.h + util.c + util.h + version.c + whole.c + whole.h + snprintf.h + blake2b-ref.c + blake2.h + blake2-impl.h) + +add_library(rsync SHARED ${rsync_LIB_SRCS}) + +target_link_libraries(rsync +${POPT_LIBRARIES} +${BZIP2_LIBRARIES} +${ZLIB_LIBRARIES} +) + +set_target_properties(rsync PROPERTIES VERSION 1.0.0 SOVERSION 1) +#install(TARGETS rsync ${INSTALL_TARGETS_DEFAULT_ARGS}) + + +########### next target ############### + +set(rdiff_SRCS + rdiff.c + isprefix.c + isprefix.h + librsync.h + librsync-config.h + trace.h) + +add_executable(rdiff ${rdiff_SRCS}) + +target_link_libraries(rdiff rsync) + +#install(TARGETS rdiff ${INSTALL_TARGETS_DEFAULT_ARGS}) + + +########### install files ############### + +#install(FILES librsync.h librsync-config.h DESTINATION include) +#install(FILES mkprototab.pl DESTINATION ) + + + +#original Makefile.am contents follow: + +### Process this file with automake to produce Makefile.in +# +## Copyright (C) 2000, 2001, 2002, 2014 by Martin Pool +## Copyright (C) 2003 by Donovan Baarda +# +## This program is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public License +## as published by the Free Software Foundation; either version 2.1 of +## the License, or (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, but +## WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this program; if not, write to the Free Software +## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# +#AUTOMAKE_OPTIONS = foreign +#SUBDIRS = . doc testsuite +#ACLOCAL_AMFLAGS = -I m4 +# +#MAINTAINERCLEANFILES = Makefile.in \ +# aclocal.m4 config.guess config.h.in config.sub configure \ +# depcomp install-sh ltmain.sh missing mkinstalldirs \ +# prototab.c prototab.h +# +#EXTRA_DIST = autogen.sh configure.msc $(noinst_SCRIPTS) rdiff.magic \ +# librsync.spec README.RPM libversions.txt \ +# PCbuild/rdiff.dsp PCbuild/PCbuild.dsw PCbuild/config.h \ +# PCbuild/librsync-config.h +# +#include_HEADERS = librsync.h librsync-config.h +# +#lib_LTLIBRARIES = librsync.la +# +#librsync_la_SOURCES = prototab.c prototab.h \ +# base64.c buf.c buf.h checksum.c checksum.h command.c \ +# command.h delta.c emit.c emit.h fileutil.c fileutil.h \ +# hex.c job.c job.h mdfour.c mdfour.h mksum.c msg.c netint.c netint.h \ +# patch.c readsums.c librsync.h librsync-config.h \ +# rollsum.c rollsum.h \ +# scoop.c search.c search.h stats.c stream.c stream.h sumset.c \ +# sumset.h trace.c trace.h tube.c types.h util.c util.h \ +# version.c whole.c whole.h snprintf.h \ +# blake2b-ref.c blake2.h blake2-impl.h +# +#librsync_la_LIBADD = @LIBOBJS@ +# +#librsync_la_LDFLAGS = -version-info @librsync_libversion@ +# +## This is the default for any programs that don't specify a preference. +#LDADD = librsync.la +# +## This is the rdiff application +#bin_PROGRAMS = rdiff +# +#rdiff_SOURCES = rdiff.c isprefix.c isprefix.h librsync.h librsync-config.h \ +# trace.h +# +#rdiff_LDADD = librsync.la +# +#rdiff_DEPENDENCIES = librsync.la +# +## this script is used to build prototab.[ch] +#noinst_SCRIPTS = mkprototab.pl +# +## Autogenerated by a script. +#prototab.c prototab.h: $(srcdir)/mkprototab.pl +# perl $(srcdir)/mkprototab.pl prototab.c prototab.h From 19a91d586a3aa7215fad5a6803f7f024fddbcca4 Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 05:02:41 +0200 Subject: [PATCH 003/688] Cleanup --- Makefile.am | 71 -------- PCbuild/PCbuild.dsw | 29 ---- PCbuild/config.h | 220 ------------------------ PCbuild/librsync-config.h | 40 ----- PCbuild/rdiff.dsp | 341 -------------------------------------- README.RPM | 8 - RELEASING.md | 26 --- autogen.sh | 101 ----------- configure.ac | 145 ---------------- configure.msc | 2 - debian/changelog | 46 ----- debian/control | 30 ---- debian/copyright | 12 -- debian/dirs | 2 - debian/docs | 5 - debian/librsync-dev.dirs | 2 - debian/librsync-dev.files | 4 - debian/librsync1.dirs | 1 - debian/librsync1.files | 2 - debian/rdiff.files | 2 - debian/rules | 95 ----------- debian/watch | 6 - librsync-config.h.in | 40 ----- 23 files changed, 1230 deletions(-) delete mode 100644 Makefile.am delete mode 100644 PCbuild/PCbuild.dsw delete mode 100644 PCbuild/config.h delete mode 100644 PCbuild/librsync-config.h delete mode 100644 PCbuild/rdiff.dsp delete mode 100644 README.RPM delete mode 100644 RELEASING.md delete mode 100755 autogen.sh delete mode 100644 configure.ac delete mode 100644 configure.msc delete mode 100644 debian/changelog delete mode 100644 debian/control delete mode 100644 debian/copyright delete mode 100644 debian/dirs delete mode 100644 debian/docs delete mode 100644 debian/librsync-dev.dirs delete mode 100644 debian/librsync-dev.files delete mode 100644 debian/librsync1.dirs delete mode 100644 debian/librsync1.files delete mode 100644 debian/rdiff.files delete mode 100755 debian/rules delete mode 100644 debian/watch delete mode 100644 librsync-config.h.in diff --git a/Makefile.am b/Makefile.am deleted file mode 100644 index 2ef87111..00000000 --- a/Makefile.am +++ /dev/null @@ -1,71 +0,0 @@ -## Process this file with automake to produce Makefile.in - -# Copyright (C) 2000, 2001, 2002, 2014 by Martin Pool -# Copyright (C) 2003 by Donovan Baarda - -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public License -# as published by the Free Software Foundation; either version 2.1 of -# the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -AUTOMAKE_OPTIONS = foreign -SUBDIRS = . doc testsuite -ACLOCAL_AMFLAGS = -I m4 - -MAINTAINERCLEANFILES = Makefile.in \ - aclocal.m4 config.guess config.h.in config.sub configure \ - depcomp install-sh ltmain.sh missing mkinstalldirs \ - prototab.c prototab.h - -EXTRA_DIST = autogen.sh configure.msc $(noinst_SCRIPTS) rdiff.magic \ - librsync.spec README.RPM libversions.txt \ - PCbuild/rdiff.dsp PCbuild/PCbuild.dsw PCbuild/config.h \ - PCbuild/librsync-config.h - -include_HEADERS = librsync.h librsync-config.h - -lib_LTLIBRARIES = librsync.la - -librsync_la_SOURCES = prototab.c prototab.h \ - base64.c buf.c buf.h checksum.c checksum.h command.c \ - command.h delta.c emit.c emit.h fileutil.c fileutil.h \ - hex.c job.c job.h mdfour.c mdfour.h mksum.c msg.c netint.c netint.h \ - patch.c readsums.c librsync.h librsync-config.h \ - rollsum.c rollsum.h \ - scoop.c search.c search.h stats.c stream.c stream.h sumset.c \ - sumset.h trace.c trace.h tube.c types.h util.c util.h \ - version.c whole.c whole.h snprintf.h \ - blake2b-ref.c blake2.h blake2-impl.h - -librsync_la_LIBADD = @LIBOBJS@ - -librsync_la_LDFLAGS = -version-info @librsync_libversion@ - -# This is the default for any programs that don't specify a preference. -LDADD = librsync.la - -# This is the rdiff application -bin_PROGRAMS = rdiff - -rdiff_SOURCES = rdiff.c isprefix.c isprefix.h librsync.h librsync-config.h \ - trace.h - -rdiff_LDADD = librsync.la - -rdiff_DEPENDENCIES = librsync.la - -# this script is used to build prototab.[ch] -noinst_SCRIPTS = mkprototab.pl - -# Autogenerated by a script. -prototab.c prototab.h: $(srcdir)/mkprototab.pl - perl $(srcdir)/mkprototab.pl prototab.c prototab.h diff --git a/PCbuild/PCbuild.dsw b/PCbuild/PCbuild.dsw deleted file mode 100644 index aec1e972..00000000 --- a/PCbuild/PCbuild.dsw +++ /dev/null @@ -1,29 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "rdiff"=".\rdiff.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/PCbuild/config.h b/PCbuild/config.h deleted file mode 100644 index 35eb0f92..00000000 --- a/PCbuild/config.h +++ /dev/null @@ -1,220 +0,0 @@ -/* config.h. Generated by configure. */ -/* config.h.in. Generated from configure.ac by autoheader. */ - -/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP - systems. This function is required for `alloca.c' support on those systems. - */ -/* #undef CRAY_STACKSEG_END */ - -/* Define to 1 if using `alloca.c'. */ -/* #undef C_ALLOCA */ - -/* Define this to enable trace code */ -/* #undef DO_RS_TRACE */ - -/* Define to 1 if you have `alloca', as a function or macro. */ -#define HAVE_ALLOCA 1 - -/* Define to 1 if you have and it should be used (not on Ultrix). - */ -/* #undef HAVE_ALLOCA_H */ - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_BZLIB_H */ - -/* Define to 1 if you have the `dgettext' function. */ -/* #undef HAVE_DGETTEXT */ - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_DLFCN_H */ - -/* Define to 1 if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ -/* #undef HAVE_FSEEKO */ - -/* Define to 1 if you have the `gettext' function. */ -/* #undef HAVE_GETTEXT */ - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_INTTYPES_H */ - -/* Define to 1 if you have the `bz2' library (-lbz2). */ -/* #undef HAVE_LIBBZ2 */ - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_LIBINTL_H */ - -/* Define to 1 if you have the `popt' library (-lpopt). */ -/* #undef HAVE_LIBPOPT */ - -/* Define to 1 if you have the `z' library (-lz). */ -/* #undef HAVE_LIBZ */ - -/* Define to 1 if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_MALLOC_H 1 - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_MCHECK_H */ - -/* Define to 1 if you have the `memmove' function. */ -#define HAVE_MEMMOVE 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_MEMORY_H 1 - -/* Define to 1 if you have the `memset' function. */ -#define HAVE_MEMSET 1 - -/* GNU extension of saving argv[0] to program_invocation_short_name */ -/* #undef HAVE_PROGRAM_INVOCATION_NAME */ - -/* Define to 1 if you have the `snprintf' function. */ -/* #undef HAVE_SNPRINTF */ - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_STDINT_H */ - -/* Define to 1 if you have the header file. */ -#define HAVE_STDLIB_H 1 - -/* Define to 1 if you have the `strchr' function. */ -#define HAVE_STRCHR 1 - -/* Define to 1 if you have the `strerror' function. */ -#define HAVE_STRERROR 1 - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_STRINGS_H */ - -/* Define to 1 if you have the header file. */ -#define HAVE_STRING_H 1 - -/* Define to 1 if you have the `strtol' function. */ -#define HAVE_STRTOL 1 - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_SYS_FILE_H */ - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_UNISTD_H */ - -/* Define if your cpp has vararg macros */ -/* #undef HAVE_VARARG_MACROS */ - -/* Define to 1 if you have the `vsnprintf' function. */ -/* #undef HAVE_VSNPRINTF */ - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_ZLIB_H */ - -/* Define to 1 if you have the `_snprintf' function. */ -#define HAVE__SNPRINTF 1 - -/* Define to 1 if you have the `_vsnprintf' function. */ -#define HAVE__VSNPRINTF 1 - -/* Name of package */ -#define PACKAGE "librsync" - -/* Define to the address where bug reports for this package should be sent. */ -#define PACKAGE_BUGREPORT "" - -/* Define to the full name of this package. */ -#define PACKAGE_NAME "librsync" - -/* Define to the full name and version of this package. */ -#define PACKAGE_STRING "librsync 0.9.6" - -/* Define to the one symbol short name of this package. */ -#define PACKAGE_TARNAME "librsync" - -/* Define to the version of this package. */ -#define PACKAGE_VERSION "0.9.6" - -/* Canonical GNU hostname */ -#define RS_CANONICAL_HOST "i686-pc-cygwin" - -/* Version of the libtool interface. */ -#define RS_LIBVERSION "1:2:0" - -/* The size of a `int', as computed by sizeof. */ -#define SIZEOF_INT 4 - -/* The size of a `long', as computed by sizeof. */ -#define SIZEOF_LONG 4 - -/* The size of a `long long', as computed by sizeof. */ -#define SIZEOF_LONG_LONG 0 - -/* The size of a `off_t', as computed by sizeof. */ -#define SIZEOF_OFF_T 4 - -/* The size of a `short', as computed by sizeof. */ -#define SIZEOF_SHORT 2 - -/* The size of a `size_t', as computed by sizeof. */ -#define SIZEOF_SIZE_T 4 - -/* The size of a `unsigned char', as computed by sizeof. */ -#define SIZEOF_UNSIGNED_CHAR 1 - -/* The size of a `unsigned int', as computed by sizeof. */ -#define SIZEOF_UNSIGNED_INT 4 - -/* The size of a `unsigned long', as computed by sizeof. */ -#define SIZEOF_UNSIGNED_LONG 4 - -/* The size of a `unsigned short', as computed by sizeof. */ -#define SIZEOF_UNSIGNED_SHORT 2 - -/* If using the C implementation of alloca, define if you know the - direction of stack growth for your system; otherwise it will be - automatically deduced at run-time. - STACK_DIRECTION > 0 => grows toward higher addresses - STACK_DIRECTION < 0 => grows toward lower addresses - STACK_DIRECTION = 0 => direction of growth unknown */ -/* #undef STACK_DIRECTION */ - -/* Define to 1 if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Version number of package */ -#define VERSION "0.9.6" - -/* Define to 1 if your processor stores words with the most significant byte - first (like Motorola and SPARC, unlike Intel and VAX). */ -/* #undef WORDS_BIGENDIAN */ - -/* Number of bits in a file offset, on hosts where this is settable. */ -/* #undef _FILE_OFFSET_BITS */ - -/* Enable GNU extensions on systems that have them. */ -#ifndef _GNU_SOURCE -# define _GNU_SOURCE 1 -#endif - -/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */ -/* #undef _LARGEFILE_SOURCE */ - -/* Define for large files, on AIX-style hosts. */ -/* #undef _LARGE_FILES */ - -/* Define to empty if `const' does not conform to ANSI C. */ -/* #undef const */ - -/* Define to `long' if does not define. */ -/* #undef off_t */ - -/* Define to `unsigned' if does not define. */ -/* #undef size_t */ diff --git a/PCbuild/librsync-config.h b/PCbuild/librsync-config.h deleted file mode 100644 index 88da4162..00000000 --- a/PCbuild/librsync-config.h +++ /dev/null @@ -1,40 +0,0 @@ -/*= -*- c-basic-offset: 4; indent-tabs-mode: nil; -*- - * - * librsync -- library for network deltas - * - * Copyright (C) 2000, 2001 by Martin Pool - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - */ - -/** \file librsync-config.h - * - * \brief System-specific configuration for librsync.h. - */ - -#ifndef _LIBRSYNC_CONFIG_H -#define _LIBRSYNC_CONFIG_H - -/** - * \brief A long integer type that can handle the largest file - * offsets. - * - * Perhaps this might have to be configured to be 'long long', 'long', - * or something else depending on the platform. On WIN32, many config.h's - * define LONG_LONG as "__int64". - */ -typedef long rs_long_t; - -#endif /* _LIBRSYNC_CONFIG_H */ diff --git a/PCbuild/rdiff.dsp b/PCbuild/rdiff.dsp deleted file mode 100644 index 01306f85..00000000 --- a/PCbuild/rdiff.dsp +++ /dev/null @@ -1,341 +0,0 @@ -# Microsoft Developer Studio Project File - Name="rdiff" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Application" 0x0101 - -CFG=rdiff - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "rdiff.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "rdiff.mak" CFG="rdiff - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "rdiff - Win32 Release" (based on "Win32 (x86) Application") -!MESSAGE "rdiff - Win32 Debug" (based on "Win32 (x86) Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "rdiff - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /I "." /I ".." /I "../popt" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "NDEBUG" -# ADD RSC /l 0xc09 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "rdiff - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir ".." -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "." /I ".." /I "../popt" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "_DEBUG" -# ADD RSC /l 0xc09 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "rdiff - Win32 Release" -# Name "rdiff - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\base64.c -# End Source File -# Begin Source File - -SOURCE=..\buf.c -# End Source File -# Begin Source File - -SOURCE=..\checksum.c -# End Source File -# Begin Source File - -SOURCE=..\command.c -# End Source File -# Begin Source File - -SOURCE=..\delta.c -# End Source File -# Begin Source File - -SOURCE=..\emit.c -# End Source File -# Begin Source File - -SOURCE=..\fileutil.c -# End Source File -# Begin Source File - -SOURCE=..\popt\findme.c -# End Source File -# Begin Source File - -SOURCE=..\hex.c -# End Source File -# Begin Source File - -SOURCE=..\isprefix.c -# End Source File -# Begin Source File - -SOURCE=..\job.c -# End Source File -# Begin Source File - -SOURCE=..\mdfour.c -# End Source File -# Begin Source File - -SOURCE=..\mksum.c -# End Source File -# Begin Source File - -SOURCE=..\msg.c -# End Source File -# Begin Source File - -SOURCE=..\netint.c -# End Source File -# Begin Source File - -SOURCE=..\patch.c -# End Source File -# Begin Source File - -SOURCE=..\popt\popt.c -# End Source File -# Begin Source File - -SOURCE=..\popt\poptconfig.c -# End Source File -# Begin Source File - -SOURCE=..\popt\popthelp.c -# End Source File -# Begin Source File - -SOURCE=..\popt\poptparse.c -# End Source File -# Begin Source File - -SOURCE=..\prototab.c -# End Source File -# Begin Source File - -SOURCE=..\rdiff.c -# End Source File -# Begin Source File - -SOURCE=..\readsums.c -# End Source File -# Begin Source File - -SOURCE=..\scoop.c -# End Source File -# Begin Source File - -SOURCE=..\search.c -# End Source File -# Begin Source File - -SOURCE=..\stats.c -# End Source File -# Begin Source File - -SOURCE=..\stream.c -# End Source File -# Begin Source File - -SOURCE=..\sumset.c -# End Source File -# Begin Source File - -SOURCE=..\trace.c -# End Source File -# Begin Source File - -SOURCE=..\tube.c -# End Source File -# Begin Source File - -SOURCE=..\util.c -# End Source File -# Begin Source File - -SOURCE=..\version.c -# End Source File -# Begin Source File - -SOURCE=..\whole.c -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\acconfig.h -# End Source File -# Begin Source File - -SOURCE=..\buf.h -# End Source File -# Begin Source File - -SOURCE=..\checksum.h -# End Source File -# Begin Source File - -SOURCE=..\command.h -# End Source File -# Begin Source File - -SOURCE=.\config.h -# End Source File -# Begin Source File - -SOURCE=..\emit.h -# End Source File -# Begin Source File - -SOURCE=..\fileutil.h -# End Source File -# Begin Source File - -SOURCE=..\popt\findme.h -# End Source File -# Begin Source File - -SOURCE=..\isprefix.h -# End Source File -# Begin Source File - -SOURCE=..\job.h -# End Source File -# Begin Source File - -SOURCE=".\librsync-config.h" -# End Source File -# Begin Source File - -SOURCE=..\librsync.h -# End Source File -# Begin Source File - -SOURCE=..\netint.h -# End Source File -# Begin Source File - -SOURCE=..\popt\popt.h -# End Source File -# Begin Source File - -SOURCE=..\popt\poptint.h -# End Source File -# Begin Source File - -SOURCE=..\protocol.h -# End Source File -# Begin Source File - -SOURCE=..\prototab.h -# End Source File -# Begin Source File - -SOURCE=..\search.h -# End Source File -# Begin Source File - -SOURCE=..\snprintf.h -# End Source File -# Begin Source File - -SOURCE=..\stream.h -# End Source File -# Begin Source File - -SOURCE=..\sumset.h -# End Source File -# Begin Source File - -SOURCE=..\popt\system.h -# End Source File -# Begin Source File - -SOURCE=..\trace.h -# End Source File -# Begin Source File - -SOURCE=..\types.h -# End Source File -# Begin Source File - -SOURCE=..\util.h -# End Source File -# Begin Source File - -SOURCE=..\whole.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/README.RPM b/README.RPM deleted file mode 100644 index 4a7c3855..00000000 --- a/README.RPM +++ /dev/null @@ -1,8 +0,0 @@ -librsync now comes with an RPM .spec file contributed by Peter Braam -and Shirish Hemant Phatak that will allow you to build an RPM package. - -To do this, simply execute the command: - - rpm -ta librsync-0.9.3.tar.gz - -$Id$ diff --git a/RELEASING.md b/RELEASING.md deleted file mode 100644 index e18f1e35..00000000 --- a/RELEASING.md +++ /dev/null @@ -1,26 +0,0 @@ -# Releasing - -If you are making a new tarball release of librsync, follow this checklist: - -* AUTHORS - make sure all significant authors are included. - -* NEWS - make sure the top "Changes in X.Y.Z" is correct. - -* THANKS - make sure the bottom "Contributors for X.Y.Z" is correct. - -* configure.ac - make sure AC_INIT and librsync_libversion are right. - -* libversions.txt - make sure libversion is added. - -* librsync.spec - make sure version and URL are right. - -* PCBuild/config.h,librsync-config.h - update using configure.msc - using cygwin. - -Do a complete configure and distcheck to ensure everything is properly -configured, built, and tested: - - $ ./autogen.sh [OPTIONS] - $ ./configure - $ make distcheck - diff --git a/autogen.sh b/autogen.sh deleted file mode 100755 index 2e565067..00000000 --- a/autogen.sh +++ /dev/null @@ -1,101 +0,0 @@ -#! /bin/sh - -# Copyright 2000, 2001, 2014 by Martin Pool - -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public License -# as published by the Free Software Foundation; either version 2.1 of -# the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - - -# This script generates everything necessary to build librsync from a bare -# source tree. It is based on the file of the same name in glib. It is not -# needed for distributed versions, because all the necessary files are included -# in the tarball by autoconf. - -srcdir=`dirname $0` -test -z "$srcdir" && srcdir=. - -ORIGDIR=`pwd` -cd $srcdir -PROJECT=librsync -TEST_TYPE=-f -FILE=librsync.h - -DIE=0 - -cache="$srcdir/autom4te.cache" -test -d "$cache" && { - echo "Deleting $cache" - rm -Rf "$cache" -} - -# ChangeLog is autogenerated, and must be deleted otherwise automake makes -# assumptions about its existance. -changelog="$srcdir/ChangeLog" -test -f "$changelog" && { - echo "Deleting $changelog" - rm -Rf "$changelog" -} - -(autoconf --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "You must have autoconf installed to compile $PROJECT." - echo "Download the appropriate package for your distribution," - echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" - DIE=1 -} - -(automake --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "You must have automake installed to compile $PROJECT." - echo "Download the appropriate package for your distribution," - echo "or get ftp://sourceware.cygnus.com/pub/automake/automake-1.4.tar.gz" - echo "(or a newer version if it is available)" - DIE=1 -} - -if [ -z "$LIBTOOLIZE" ] -then - LIBTOOLIZE=libtoolize -fi - -($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "You must have libtool installed to compile $PROJECT." - echo "Download the appropriate package for your distribution," - echo "or go to http://www.gnu.org/software/libtool/" - echo "You can set $LIBTOOLIZE." - DIE=1 -} - -if test "$DIE" -eq 1; then - exit 1 -fi - -test $TEST_TYPE $FILE || { - echo "You must run this script in the top-level $PROJECT directory" - exit 1 -} - -case $CC in -*xlc | *xlc\ * | *lcc | *lcc\ *) am_opt=--include-deps;; -esac - -set -x -aclocal $ACLOCAL_FLAGS -$LIBTOOLIZE --force -autoheader -automake -a --foreign $am_opt -autoconf -set +x -cd $ORIGDIR diff --git a/configure.ac b/configure.ac deleted file mode 100644 index 9e639771..00000000 --- a/configure.ac +++ /dev/null @@ -1,145 +0,0 @@ -# -*- Autoconf -*- -# Process this file with autoconf to produce a configure script. - -AC_PREREQ(2.53) -AC_INIT([librsync],[1.0.0]) -AC_COPYRIGHT([Copyright (C) 1999-2014 by Martin Pool ]) -AC_CONFIG_SRCDIR([trace.c]) -AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([foreign]) - -# GNU library versioning: This is NOT the librsync release number. -# See libversions.txt and the libtool manual for an explanation of the -# library versioning -librsync_libversion=2:0:0 - -# Disable shared libs by default. -AC_DISABLE_SHARED - -# Checks for programs. -AC_GNU_SOURCE -AC_PROG_CC -AC_ISC_POSIX -AC_PROG_CPP -AC_PROG_INSTALL -AC_PROG_MAKE_SET -AC_PROG_LIBTOOL - -# Checks for libraries. -AC_CHECK_LIB(z, deflate) -AC_CHECK_LIB(bz2, BZ2_bzCompress) -AC_CHECK_LIB(popt, poptGetContext, [], AC_MSG_WARN([cannot find libpopt: won't be able to run tests or build rdiff])) - -# Checks for header files. -AC_FUNC_ALLOCA -AC_HEADER_STDC -AC_CHECK_HEADERS([mcheck.h bzlib.h zlib.h]) -AC_CHECK_HEADERS([fcntl.h inttypes.h libintl.h limits.h malloc.h stdint.h stdlib.h string.h sys/file.h unistd.h]) - -# Checks for typedefs, structures, and compiler characteristics. -AC_C_CONST -AC_C_BIGENDIAN -AC_TYPE_SIZE_T -AC_TYPE_OFF_T -AC_SYS_LARGEFILE - -AC_CHECK_SIZEOF([unsigned char], 1) -if test "$ac_cv_sizeof_unsigned_char" -ne 1; then - AC_MSG_WARN(unsigned char seems to be $ac_cv_sizeof_unsigned_char bytes. Expect trouble.) -fi -AC_CHECK_SIZEOF(short) -AC_CHECK_SIZEOF([unsigned short]) -AC_CHECK_SIZEOF(int) -AC_CHECK_SIZEOF([unsigned int]) -AC_CHECK_SIZEOF(long) -AC_CHECK_SIZEOF([unsigned long]) -AC_CHECK_SIZEOF([long long]) -AC_CHECK_SIZEOF(off_t) -AC_CHECK_SIZEOF(size_t) - -#XXX: is this really the best way to do it? I think the limitation on -# rs_long_t is that we need to be able to seek to it, which relates to -# long file support. With fseeko, rs_long_t should be off_t, otherwise -# it should be long. -AC_COMPILE_IFELSE([AC_LANG_PROGRAM( - [[#include -#ifndef LONG_LONG -#error not defined -#endif]], - [;])], - [ RS_LONG_T='LONG_LONG' ], - [ case "$ac_cv_sizeof_long_long" in - 0) RS_LONG_T='long' ;; - *) RS_LONG_T='long long' ;; - esac ]) -AC_SUBST(RS_LONG_T) - -# Checks for library functions. -#AC_FUNC_MALLOC #XXX: needs malloc.c replacement -#AC_FUNC_MEMCMP #XXX: needs memcmp.c replacement -#AC_FUNC_REALLOC #XXX: needs realloc.c replacement -AC_FUNC_FSEEKO -AC_CHECK_FUNCS([memmove memset strchr strerror strtol]) -AC_CHECK_FUNCS([gettext dgettext]) -AC_CHECK_FUNC(setreuid, [], - [ AC_CHECK_LIB(ucb, setreuid, - [ if echo $LIBS | grep -- -lucb >/dev/null ;then :; - else LIBS="$LIBS -lc -lucb"; USEUCB=y;fi]) -]) -# supply a snprintf and vsnprintf if the system doesn't have one. -# if missing, check MSVC _xxx varients, otherwise use snprintf.c -# replacement. -AC_CHECK_FUNCS(snprintf,,[AC_CHECK_FUNCS(_snprintf)]) -AC_CHECK_FUNCS(vsnprintf,,[AC_CHECK_FUNCS(_vsnprintf,,[AC_LIBOBJ(snprintf)])]) - -# Test if the compiler has the GNU feature of putting argv[0] into a global -AC_MSG_CHECKING([for program_invocation_short_name]) -AC_COMPILE_IFELSE([AC_LANG_PROGRAM( - [[#include ]], - [[strlen(program_invocation_short_name)]])], - [ AC_DEFINE(HAVE_PROGRAM_INVOCATION_NAME,, - [GNU extension of saving argv[0] to program_invocation_short_name]) - AC_MSG_RESULT(yes) ], - [ AC_MSG_RESULT(no) ]) - -# Test if the preprocessor understands vararg macros -AC_MSG_CHECKING([for vararg macro support]) -AC_COMPILE_IFELSE([AC_LANG_PROGRAM( - [#define func(a, b...) do {} while (0)], - [func("a", "b", "c");func("a")])], - [ AC_DEFINE(HAVE_VARARG_MACROS, , [Define if your cpp has vararg macros]) - AC_MSG_RESULT(yes) ], - [ AC_MSG_RESULT(no) ]) - -if test "$GCC" = "yes"; then # GCC - CFLAGS="-Wall -Wshadow -Wundef -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align $CFLAGS" -elif test "$CC" = "cl"; then # MSVC - CFLAGS="-Z7 -Od -MD $CFLAGS" -fi -# TODO: Similar conditions for other known compilers. For SUNWspro, use `-v'. - -AC_ARG_ENABLE(ccmalloc, - AC_HELP_STRING([--enable-ccmalloc],[use ccmalloc debugger (default no)]), - [ LIBS="$LIBS -lccmalloc -ldl" ]) - -AC_ARG_ENABLE(trace, - AC_HELP_STRING([--disable-trace],[turn off library tracing]), - [enable_trace=$enableval],[enable_trace=yes]) -if test "$enable_trace" = "yes"; then - AC_DEFINE(DO_RS_TRACE,,[Define this to enable trace code]) -fi - -AC_DEFINE_UNQUOTED(RS_LIBVERSION, "$librsync_libversion",[Version of the libtool interface.]) -AC_DEFINE_UNQUOTED(RS_CANONICAL_HOST, "$host",[Canonical GNU hostname]) - -AC_SUBST(librsync_libversion) -AC_SUBST(BUILD_POPT) - -AC_CONFIG_FILES([ - Makefile - doc/Makefile - doc/Doxyfile - testsuite/Makefile - librsync-config.h]) -AC_OUTPUT diff --git a/configure.msc b/configure.msc deleted file mode 100644 index b3462805..00000000 --- a/configure.msc +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -./configure CC=cl --prefix='C:/Progra~1/librsync' diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index 5c43fc5a..00000000 --- a/debian/changelog +++ /dev/null @@ -1,46 +0,0 @@ -librsync (0.9.6-2) unstable; urgency=low - - * Manually install the rdiff bin because it wasn't anymore. - Closes: #205469. - * Fixed description. Closes: #191658. - - -- John Goerzen Mon, 18 Aug 2003 11:25:03 -0500 - -librsync (0.9.6-1) unstable; urgency=low - - * New upstream release - - -- John Goerzen Mon, 11 Aug 2003 17:36:26 -0500 - -librsync (0.9.5.1-3) unstable; urgency=low - - * Ran autoreconf --force, then rebuilt. Should make mips even happier - now. Closes: #180005. - - -- John Goerzen Fri, 7 Feb 2003 14:06:35 -0600 - -librsync (0.9.5.1-2) unstable; urgency=low - - * Copied /usr/share/misc/config.{guess,sub} over the package defaults. - This is apparently needed for the mips arch. Closes: #172497. - - -- John Goerzen Wed, 5 Feb 2003 15:00:55 -0600 - -librsync (0.9.5.1-1) unstable; urgency=low - - * New upstream release - - -- John Goerzen Tue, 3 Dec 2002 15:04:04 -0600 - -librsync (0.9.5-2) unstable; urgency=low - - * Applied patch from Mark van Walraven. Closes: #149267. - - -- John Goerzen Fri, 26 Jul 2002 15:05:42 -0500 - -librsync (0.9.5-1) unstable; urgency=low - - * Initial Release, lintian-clean. Closes: #133441. - - -- John Goerzen Mon, 11 Feb 2002 13:03:19 -0500 - diff --git a/debian/control b/debian/control deleted file mode 100644 index fc89e013..00000000 --- a/debian/control +++ /dev/null @@ -1,30 +0,0 @@ -Source: librsync -Section: utils -Priority: optional -Maintainer: John Goerzen -Build-Depends: debhelper (>> 3.0.0), libpopt-dev (>= 1.6.2), zlib1g-dev, autoconf2.13 -Standards-Version: 3.5.2 - -Package: librsync1 -Section: libs -Architecture: any -Depends: ${shlibs:Depends} -Description: Binary diff library based on the rsync algorithm - librsync is the next generation of librsync, and provides flexible - checksum-based differencing. The main application at the moment in - rproxy, but the library should eventually be generally useful. - -Package: librsync-dev -Section: devel -Architecture: any -Depends: librsync1 (= ${Source-Version}), libc6-dev -Description: Binary diff library based on the rsync algorithm - These are the development files for librsync1. - -Package: rdiff -Section: utils -Architecture: any -Depends: ${shlibs:Depends} -Description: Binary diff tool for signature-based differences - rdiff is a little like diff and patch all rolled into one, with - support for binary files. diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index d14ca094..00000000 --- a/debian/copyright +++ /dev/null @@ -1,12 +0,0 @@ -This package was debianized by John Goerzen on -Mon, 11 Feb 2002 13:03:19 -0500. - -The homepage is http://librsync.sourcefrog.net/. - -Upstream Author(s): Martin Pool -Andrew Tridgell - - -Copyright: - -GNU LGPL version 2.1, found at /usr/share/common-licenses/LGPL-2.1 diff --git a/debian/dirs b/debian/dirs deleted file mode 100644 index ca882bbb..00000000 --- a/debian/dirs +++ /dev/null @@ -1,2 +0,0 @@ -usr/bin -usr/sbin diff --git a/debian/docs b/debian/docs deleted file mode 100644 index e7769c90..00000000 --- a/debian/docs +++ /dev/null @@ -1,5 +0,0 @@ -NEWS -README -README.CVS -TODO -libversions.txt diff --git a/debian/librsync-dev.dirs b/debian/librsync-dev.dirs deleted file mode 100644 index 44188162..00000000 --- a/debian/librsync-dev.dirs +++ /dev/null @@ -1,2 +0,0 @@ -usr/lib -usr/include diff --git a/debian/librsync-dev.files b/debian/librsync-dev.files deleted file mode 100644 index 55f55ea1..00000000 --- a/debian/librsync-dev.files +++ /dev/null @@ -1,4 +0,0 @@ -usr/include/* -usr/lib/lib*.a -usr/lib/lib*.la -usr/lib/lib*.so diff --git a/debian/librsync1.dirs b/debian/librsync1.dirs deleted file mode 100644 index 68457717..00000000 --- a/debian/librsync1.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/lib diff --git a/debian/librsync1.files b/debian/librsync1.files deleted file mode 100644 index 1ff7a2f6..00000000 --- a/debian/librsync1.files +++ /dev/null @@ -1,2 +0,0 @@ -usr/lib/lib*.so.* -usr/share/man/man3/* diff --git a/debian/rdiff.files b/debian/rdiff.files deleted file mode 100644 index 68671deb..00000000 --- a/debian/rdiff.files +++ /dev/null @@ -1,2 +0,0 @@ -usr/bin/* -usr/share/man/man1/* diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 566b7d51..00000000 --- a/debian/rules +++ /dev/null @@ -1,95 +0,0 @@ -#!/usr/bin/make -f -# Sample debian/rules that uses debhelper. -# GNU copyright 1997 to 1999 by Joey Hess. - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -# This is the debhelper compatability version to use. -export DH_COMPAT=3 - -# shared library versions, option 1 -version=2.0.5 -major=2 -# option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so -#version=`ls src/.libs/lib*.so.* | \ -# awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'` -#major=`ls src/.libs/lib*.so.* | \ -# awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'` - -configure: configure-stamp -configure-stamp: - dh_testdir - # Add here commands to configure the package. - ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --enable-shared - - touch configure-stamp - -build: build-stamp -build-stamp: configure-stamp - dh_testdir - - # Add here commands to compile the package. - $(MAKE) all check - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp configure-stamp - - # Add here commands to clean up after the build process. - -$(MAKE) distclean - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/tmp - $(MAKE) install prefix=$(CURDIR)/debian/tmp/usr - -mkdir debian/tmp/usr/bin - cp .libs/rdiff debian/tmp/usr/bin - -# Build architecture-independent files here. -binary-indep: build install -# We have nothing to do by default. - -# Build architecture-dependent files here. -binary-arch: build install - dh_testdir - dh_testroot - dh_movefiles - -# dh_installdebconf - dh_installdocs - dh_installexamples - dh_installmenu -# dh_installlogrotate -# dh_installemacsen -# dh_installpam -# dh_installmime -# dh_installinit - dh_installcron - dh_installman - dh_installinfo -# dh_undocumented - dh_installchangelogs NEWS - dh_link - dh_strip - dh_compress - dh_fixperms - dh_makeshlibs - dh_installdeb -# dh_perl - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure diff --git a/debian/watch b/debian/watch deleted file mode 100644 index 25b45952..00000000 --- a/debian/watch +++ /dev/null @@ -1,6 +0,0 @@ -# Example watch control file for uscan -# Rename this file to "watch" and then you can run the "uscan" command -# to check for upstream updates and more. -# Site Directory Pattern Version Script -#sunsite.unc.edu /pub/Linux/Incoming librsync-(.*)\.tar\.gz debian uupdate -ftp.sourceforge.net /pub/sourceforge/rproxy librsync-(.*)\.tar\.gz debian uupdate diff --git a/librsync-config.h.in b/librsync-config.h.in deleted file mode 100644 index 7bf4187c..00000000 --- a/librsync-config.h.in +++ /dev/null @@ -1,40 +0,0 @@ -/*= -*- c-basic-offset: 4; indent-tabs-mode: nil; -*- - * - * librsync -- library for network deltas - * - * Copyright (C) 2000, 2001 by Martin Pool - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - */ - -/** \file librsync-config.h - * - * \brief System-specific configuration for librsync.h. - */ - -#ifndef _LIBRSYNC_CONFIG_H -#define _LIBRSYNC_CONFIG_H - -/** - * \brief A long integer type that can handle the largest file - * offsets. - * - * Perhaps this might have to be configured to be 'long long', 'long', - * or something else depending on the platform. On WIN32, many config.h's - * define LONG_LONG as "__int64". - */ -typedef @RS_LONG_T@ rs_long_t; - -#endif /* _LIBRSYNC_CONFIG_H */ From d5f10586d3258e3098aa7ed8907cee5ab3ddfe95 Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 05:03:37 +0200 Subject: [PATCH 004/688] Include config.h properly --- .gitignore | 2 +- base64.c | 2 +- blake2b-ref.c | 2 +- buf.c | 2 +- checksum.c | 2 +- command.c | 2 +- delta.c | 2 +- emit.c | 2 +- fileutil.c | 2 +- hex.c | 2 +- job.c | 2 +- mdfour.c | 2 +- mkprototab.pl | 6 +++--- mksum.c | 2 +- msg.c | 2 +- netint.c | 2 +- patch.c | 2 +- rdiff.c | 2 +- readsums.c | 2 +- scoop.c | 2 +- search.c | 2 +- stats.c | 2 +- stream.c | 2 +- sumset.c | 2 +- trace.c | 2 +- tube.c | 2 +- util.c | 2 +- version.c | 2 +- whole.c | 2 +- 29 files changed, 31 insertions(+), 31 deletions(-) diff --git a/.gitignore b/.gitignore index 5a16bc19..4563e212 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,4 @@ librsync-config.h librsync.so* Makefile CMakeFiles - +*.lo diff --git a/base64.c b/base64.c index d29af492..27ca863a 100644 --- a/base64.c +++ b/base64.c @@ -21,7 +21,7 @@ */ -#include +#include "config.h" #include #include diff --git a/blake2b-ref.c b/blake2b-ref.c index a0a78875..c675bdd1 100644 --- a/blake2b-ref.c +++ b/blake2b-ref.c @@ -15,7 +15,7 @@ * librsync. */ -#include +#include "config.h" #include #include #include diff --git a/buf.c b/buf.c index 2f9064e8..58b58672 100644 --- a/buf.c +++ b/buf.c @@ -38,7 +38,7 @@ */ -#include +#include "config.h" #include #include diff --git a/checksum.c b/checksum.c index 4e60da81..388dd7f0 100644 --- a/checksum.c +++ b/checksum.c @@ -22,7 +22,7 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include +#include "config.h" #include #include diff --git a/command.c b/command.c index 4e74b7c4..00f9a9e7 100644 --- a/command.c +++ b/command.c @@ -21,7 +21,7 @@ */ -#include +#include "config.h" #include #include diff --git a/delta.c b/delta.c index d5a5a8dc..19498f95 100644 --- a/delta.c +++ b/delta.c @@ -62,7 +62,7 @@ */ -#include +#include "config.h" #include #include diff --git a/emit.c b/emit.c index f867f2a7..00563627 100644 --- a/emit.c +++ b/emit.c @@ -30,7 +30,7 @@ */ -#include +#include "config.h" #include #include diff --git a/fileutil.c b/fileutil.c index b46a6f7c..7099e0ff 100644 --- a/fileutil.c +++ b/fileutil.c @@ -21,7 +21,7 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include +#include "config.h" #include #include diff --git a/hex.c b/hex.c index 679dc351..88b58cb5 100644 --- a/hex.c +++ b/hex.c @@ -17,7 +17,7 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include +#include "config.h" #include #include diff --git a/job.c b/job.c index 05190021..44868112 100644 --- a/job.c +++ b/job.c @@ -39,7 +39,7 @@ */ -#include +#include "config.h" #include #include diff --git a/mdfour.c b/mdfour.c index 37834415..eb578b9b 100644 --- a/mdfour.c +++ b/mdfour.c @@ -41,7 +41,7 @@ * (e.g. ia64, pa-risc). */ -#include +#include "config.h" #include #include diff --git a/mkprototab.pl b/mkprototab.pl index feaab0de..ec7fbb40 100755 --- a/mkprototab.pl +++ b/mkprototab.pl @@ -69,14 +69,14 @@ sub emit_cmd { print TABLE < +#include "config.h" #include #include #include "librsync.h" -#include -#include +#include "command.h" +#include "prototab.h" /* This file defines an array mapping command IDs to the operation kind, * implied literal value, and length of the first and second parameters. diff --git a/mksum.c b/mksum.c index 10448e5c..fac4e7cc 100644 --- a/mksum.c +++ b/mksum.c @@ -35,7 +35,7 @@ * will be OK at the moment, though, because tails are only used if * necessary. */ -#include +#include "config.h" #include #include diff --git a/msg.c b/msg.c index 5ad166a3..e897526a 100644 --- a/msg.c +++ b/msg.c @@ -35,7 +35,7 @@ | Arco, and have a nice day. */ -#include +#include "config.h" #include #include diff --git a/netint.c b/netint.c index 58e052f7..5ab1aa54 100644 --- a/netint.c +++ b/netint.c @@ -47,7 +47,7 @@ * 64-bit integers, since there seems to be no ntohs() analog. */ -#include +#include "config.h" #include #include diff --git a/patch.c b/patch.c index 8a9d845a..319bf446 100644 --- a/patch.c +++ b/patch.c @@ -26,7 +26,7 @@ */ -#include +#include "config.h" #include #include diff --git a/rdiff.c b/rdiff.c index 289fd033..a855a347 100644 --- a/rdiff.c +++ b/rdiff.c @@ -45,7 +45,7 @@ * identical. */ -#include +#include "config.h" #include #include diff --git a/readsums.c b/readsums.c index 8e3102fa..b82b801c 100644 --- a/readsums.c +++ b/readsums.c @@ -26,7 +26,7 @@ * readsums.c -- Load signatures from a file into an ::rs_signature_t. */ -#include +#include "config.h" #include #include diff --git a/scoop.c b/scoop.c index 42d7bd5b..20355ee9 100644 --- a/scoop.c +++ b/scoop.c @@ -58,7 +58,7 @@ | -- Shihad, `The General Electric'. */ -#include +#include "config.h" #include #include diff --git a/search.c b/search.c index b549725d..214f4178 100644 --- a/search.c +++ b/search.c @@ -33,7 +33,7 @@ * we can just check that pointer. */ -#include +#include "config.h" #include #include diff --git a/stats.c b/stats.c index 7378e977..9b938fa4 100644 --- a/stats.c +++ b/stats.c @@ -20,7 +20,7 @@ */ -#include +#include "config.h" #include #include diff --git a/stream.c b/stream.c index 8264c0c8..611662e6 100644 --- a/stream.c +++ b/stream.c @@ -83,7 +83,7 @@ /* TODO: Return errors rather than aborting if something goes wrong. */ -#include +#include "config.h" #include #include diff --git a/sumset.c b/sumset.c index 2f658da2..14b73b46 100644 --- a/sumset.c +++ b/sumset.c @@ -21,7 +21,7 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include +#include "config.h" #include #include diff --git a/trace.c b/trace.c index 557422be..f546cc36 100644 --- a/trace.c +++ b/trace.c @@ -34,7 +34,7 @@ * function name. */ -#include +#include "config.h" #ifdef HAVE_UNISTD_H #include #else diff --git a/tube.c b/tube.c index 2e436a45..3da65add 100644 --- a/tube.c +++ b/tube.c @@ -57,7 +57,7 @@ */ -#include +#include "config.h" #include #include diff --git a/util.c b/util.c index 4ea1f623..92acecee 100644 --- a/util.c +++ b/util.c @@ -26,7 +26,7 @@ */ -#include +#include "config.h" #include #include diff --git a/version.c b/version.c index 59c30fdf..05dde7d9 100644 --- a/version.c +++ b/version.c @@ -20,7 +20,7 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include +#include "config.h" #include diff --git a/whole.c b/whole.c index d251ceec..eb07523e 100644 --- a/whole.c +++ b/whole.c @@ -29,7 +29,7 @@ -#include +#include "config.h" #include #include From dba79a041769f97dda0eb7b6ad15acc9fc532098 Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 05:04:16 +0200 Subject: [PATCH 005/688] Cmake files --- cmake/FindPOPT.cmake | 86 +++++++++++++++++ config.h.cmake | 217 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 303 insertions(+) create mode 100644 cmake/FindPOPT.cmake create mode 100644 config.h.cmake diff --git a/cmake/FindPOPT.cmake b/cmake/FindPOPT.cmake new file mode 100644 index 00000000..c5e0cc4c --- /dev/null +++ b/cmake/FindPOPT.cmake @@ -0,0 +1,86 @@ + +#-------------------------------------------------------------------------------- +# Copyright (c) 2012-2013, Lars Baehren +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without modification, +# are permitted provided that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright notice, this +# list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +#-------------------------------------------------------------------------------- + +# - Check for the presence of POPT +# +# The following variables are set when POPT is found: +# POPT_FOUND = Set to true, if all components of POPT have been found. +# POPT_INCLUDE_DIRS = Include path for the header files of POPT +# POPT_LIBRARIES = Link these to use POPT +# POPT_LFLAGS = Linker flags (optional) + + +INCLUDE(FindPackageHandleStandardArgs) +if (NOT POPT_FOUND) + + if (NOT POPT_ROOT_DIR) + set (POPT_ROOT_DIR ${CMAKE_INSTALL_PREFIX}) + endif (NOT POPT_ROOT_DIR) + + ##_____________________________________________________________________________ + ## Check for the header files + + find_path (POPT_INCLUDE_DIRS popt.h + HINTS ${POPT_ROOT_DIR} ${CMAKE_INSTALL_PREFIX} + PATH_SUFFIXES include + ) + + ##_____________________________________________________________________________ + ## Check for the library + + find_library (POPT_LIBRARIES popt + HINTS ${POPT_ROOT_DIR} ${CMAKE_INSTALL_PREFIX} + PATH_SUFFIXES lib + ) + + ##_____________________________________________________________________________ + ## Actions taken when all components have been found + + FIND_PACKAGE_HANDLE_STANDARD_ARGS (POPT DEFAULT_MSG POPT_LIBRARIES POPT_INCLUDE_DIRS) + + if (POPT_FOUND) + if (NOT POPT_FIND_QUIETLY) + message (STATUS "Found components for POPT") + message (STATUS "POPT_ROOT_DIR = ${POPT_ROOT_DIR}") + message (STATUS "POPT_INCLUDE_DIRS = ${POPT_INCLUDE_DIRS}") + message (STATUS "POPT_LIBRARIES = ${POPT_LIBRARIES}") + endif (NOT POPT_FIND_QUIETLY) + else (POPT_FOUND) + if (POPT_FIND_REQUIRED) + message (FATAL_ERROR "Could not find POPT!") + endif (POPT_FIND_REQUIRED) + endif (POPT_FOUND) + + ##_____________________________________________________________________________ + ## Mark advanced variables + + mark_as_advanced ( + POPT_ROOT_DIR + POPT_INCLUDES + POPT_LIBRARIES + ) + +endif (NOT POPT_FOUND) diff --git a/config.h.cmake b/config.h.cmake new file mode 100644 index 00000000..d0982f4d --- /dev/null +++ b/config.h.cmake @@ -0,0 +1,217 @@ +/* config.h. Generated from config.h.in by configure. */ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Define if building universal (internal helper macro) */ +#cmakedefine AC_APPLE_UNIVERSAL_BUILD + +/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP + systems. This function is required for `alloca.c' support on those systems. + */ +#cmakedefine CRAY_STACKSEG_END + +/* Define to 1 if using `alloca.c'. */ +#cmakedefine C_ALLOCA 1 + +/* Define this to enable trace code */ +#cmakedefine DO_RS_TRACE + +/* Define to 1 if you have `alloca', as a function or macro. */ +#cmakedefine HAVE_ALLOCA 1 + +/* Define to 1 if you have and it should be used (not on Ultrix). */ +#cmakedefine HAVE_ALLOCA_H 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_BZLIB_H 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_DLFCN_H 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_FCNTL_H 1 + +/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ +#cmakedefine HAVE_FSEEKO 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the `bz2' library (-lbz2). */ +#cmakedefine HAVE_LIBBZ2 ${BZIP2_FOUND} + +/* Define to 1 if you have the `popt' library (-lpopt). */ +#cmakedefine HAVE_LIBPOPT ${POPT_FOUND} + +/* Define to 1 if you have the `z' library (-lz). */ +#cmakedefine HAVE_LIBZ ${ZLIB_FOUND} + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_MALLOC_H 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_MCHECK_H 1 + +/* Define to 1 if you have the `memmove' function. */ +#cmakedefine HAVE_MEMMOVE 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_MEMORY_H 1 + +/* Define to 1 if you have the `memset' function. */ +#cmakedefine HAVE_MEMSET 1 + +/* GNU extension of saving argv[0] to program_invocation_short_name */ +#cmakedefine HAVE_PROGRAM_INVOCATION_NAME + +/* Define to 1 if you have the `snprintf' function. */ +#cmakedefine HAVE_SNPRINTF 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_STDINT_H 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_STDLIB_H 1 + +/* Define to 1 if you have the `strchr' function. */ +#cmakedefine HAVE_STRCHR 1 + +/* Define to 1 if you have the `strerror' function. */ +#cmakedefine HAVE_STRERROR 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_STRINGS_H 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_STRING_H 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_SYS_FILE_H 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_UNISTD_H 1 + +/* Define if your cpp has vararg macros */ +#cmakedefine HAVE_VARARG_MACROS + +/* Define to 1 if you have the `vsnprintf' function. */ +#cmakedefine HAVE_VSNPRINTF 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_ZLIB_H 1 + +/* Define to 1 if you have the `_snprintf' function. */ +#cmakedefine HAVE__SNPRINTF 1 + +/* Define to 1 if you have the `_vsnprintf' function. */ +#cmakedefine HAVE__VSNPRINTF 1 + +/* Name of package */ +#define PACKAGE "${PROJECT_NAME}" + +/* Canonical GNU hostname */ +#cmakedefine RS_CANONICAL_HOST "${SITE_NAME}" + +/* The size of `long', as computed by sizeof. */ +#cmakedefine SIZEOF_LONG ${SIZEOF_LONG} + +/* The size of `long long', as computed by sizeof. */ +#cmakedefine SIZEOF_LONG_LONG ${SIZEOF_LONG_LONG} + +/* The size of `size_t', as computed by sizeof. */ +#cmakedefine SIZEOF_SIZE_T ${SIZEOF_SIZE_T} + +/* The size of `unsigned int', as computed by sizeof. */ +#cmakedefine SIZEOF_UNSIGNED_INT ${SIZEOF_UNSIGNED_INT} + +/* The size of `unsigned long', as computed by sizeof. */ +#cmakedefine SIZEOF_UNSIGNED_LONG ${SIZEOF_UNSIGNED_LONG} + +/* The size of `unsigned short', as computed by sizeof. */ +#cmakedefine SIZEOF_UNSIGNED_SHORT ${SIZEOF_UNSIGNED_SHORT} + +/* If using the C implementation of alloca, define if you know the + direction of stack growth for your system; otherwise it will be + automatically deduced at runtime. + STACK_DIRECTION > 0 => grows toward higher addresses + STACK_DIRECTION < 0 => grows toward lower addresses + STACK_DIRECTION = 0 => direction of growth unknown */ +#cmakedefine STACK_DIRECTION + +/* Define to 1 if you have the ANSI C header files. */ +#cmakedefine STDC_HEADERS 1 + +/* FIXME Enable extensions on AIX 3, Interix. */ +#ifndef _ALL_SOURCE +# define _ALL_SOURCE 1 +#endif +/* FIXME Enable GNU extensions on systems that have them. */ +#ifndef _GNU_SOURCE +# define _GNU_SOURCE 1 +#endif +/* FIXME Enable threading extensions on Solaris. */ +#ifndef _POSIX_PTHREAD_SEMANTICS +# define _POSIX_PTHREAD_SEMANTICS 1 +#endif +/* FIXME Enable extensions on HP NonStop. */ +#ifndef _TANDEM_SOURCE +# define _TANDEM_SOURCE 1 +#endif +/* FIXME Enable general extensions on Solaris. */ +#ifndef __EXTENSIONS__ +# define __EXTENSIONS__ 1 +#endif + + +/* Version number of package */ +#define VERSION "${librsync_VERSION}" + +/* FIXME Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#if defined AC_APPLE_UNIVERSAL_BUILD +# if defined __BIG_ENDIAN__ +# define WORDS_BIGENDIAN 1 +# endif +#else +# ifndef WORDS_BIGENDIAN +/* # undef WORDS_BIGENDIAN */ +# endif +#endif + +/* FIXME Enable large inode numbers on Mac OS X 10.5. */ +#ifndef _DARWIN_USE_64_BIT_INODE +# define _DARWIN_USE_64_BIT_INODE 1 +#endif + +/* FIXME Number of bits in a file offset, on hosts where this is settable. */ +/* #undef _FILE_OFFSET_BITS */ + +/* FIXME Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */ +/* #undef _LARGEFILE_SOURCE */ + +/* FIXME Define for large files, on AIX-style hosts. */ +/* #undef _LARGE_FILES */ + +/* FIXME Define to 1 if on MINIX. */ +/* #undef _MINIX */ + +/* FIXME Define to 2 if the system does not provide POSIX.1 features except with + this defined. */ +/* #undef _POSIX_1_SOURCE */ + +/* FIXME Define to 1 if you need to in order for `stat' and other things to work. */ +/* #undef _POSIX_SOURCE */ + +/* FIXME Define to empty if `const' does not conform to ANSI C. */ +/* #undef const */ + +/* FIXME Define to `long int' if does not define. */ +/* #undef off_t */ + +/* FIXME Define to `unsigned int' if does not define. */ +/* #undef size_t */ From 5ce8530eb60bbf4cbed66a6ca8201220cf9ef2f7 Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 05:04:23 +0200 Subject: [PATCH 006/688] Cleanup --- m4/.gitignore | 1 - 1 file changed, 1 deletion(-) delete mode 100644 m4/.gitignore diff --git a/m4/.gitignore b/m4/.gitignore deleted file mode 100644 index 8b137891..00000000 --- a/m4/.gitignore +++ /dev/null @@ -1 +0,0 @@ - From e1d53c0c1d238420472109b51de2898f3a91efe8 Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 05:06:42 +0200 Subject: [PATCH 007/688] Few fergoten files --- .gitignore | 1 + librsync-config.h.cmake | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 librsync-config.h.cmake diff --git a/.gitignore b/.gitignore index 4563e212..e576e57f 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ librsync.so* Makefile CMakeFiles *.lo +cmake_install.cmake diff --git a/librsync-config.h.cmake b/librsync-config.h.cmake new file mode 100644 index 00000000..7bf4187c --- /dev/null +++ b/librsync-config.h.cmake @@ -0,0 +1,40 @@ +/*= -*- c-basic-offset: 4; indent-tabs-mode: nil; -*- + * + * librsync -- library for network deltas + * + * Copyright (C) 2000, 2001 by Martin Pool + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation; either version 2.1 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +/** \file librsync-config.h + * + * \brief System-specific configuration for librsync.h. + */ + +#ifndef _LIBRSYNC_CONFIG_H +#define _LIBRSYNC_CONFIG_H + +/** + * \brief A long integer type that can handle the largest file + * offsets. + * + * Perhaps this might have to be configured to be 'long long', 'long', + * or something else depending on the platform. On WIN32, many config.h's + * define LONG_LONG as "__int64". + */ +typedef @RS_LONG_T@ rs_long_t; + +#endif /* _LIBRSYNC_CONFIG_H */ From fccdf8aa5bdd138736e37e7bcc2d2ac6f0d7f251 Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 05:07:42 +0200 Subject: [PATCH 008/688] Update gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index e576e57f..bb1591e9 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ Makefile CMakeFiles *.lo cmake_install.cmake +*.la From 779ccb98dcfb4263b4b57192750c9609a88fc67a Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 05:21:30 +0200 Subject: [PATCH 009/688] Ignore prototab.* --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index bb1591e9..ef01cb58 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,5 @@ CMakeFiles *.lo cmake_install.cmake *.la +prototab.c +prototab.h From 47d065eb6f90a4cf54f3f49a97c4dd551ce3e064 Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 05:21:43 +0200 Subject: [PATCH 010/688] Run prototab generator when running cmake --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index dbc8adad..6ab697c3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,6 +19,7 @@ if (NOT CMAKE_SYSTEM_NAME) message(FATAL_ERROR "No target OS set") endif() +execute_process(COMMAND perl "${CMAKE_SOURCE_DIR}/mkprototab.pl" "prototab.c" "prototab.h") include ( CheckIncludeFiles ) check_include_files ( alloca.h HAVE_ALLOCA_H ) From 6abfe524044bbf068d789411963a4b0dbb981500 Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 12:53:26 +0200 Subject: [PATCH 011/688] Fix RS_CANONICAL_HOST definition --- config.h.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.h.cmake b/config.h.cmake index d0982f4d..ac97dcd4 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -115,7 +115,7 @@ #define PACKAGE "${PROJECT_NAME}" /* Canonical GNU hostname */ -#cmakedefine RS_CANONICAL_HOST "${SITE_NAME}" +#define RS_CANONICAL_HOST "${SITE_NAME}" /* The size of `long', as computed by sizeof. */ #cmakedefine SIZEOF_LONG ${SIZEOF_LONG} From caf11c8b048cf0acb1ddd4ef1861c7d84e870d2a Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 12:58:40 +0200 Subject: [PATCH 012/688] Added info into README --- README.md | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 4ebe8b48..94a3cbf5 100644 --- a/README.md +++ b/README.md @@ -56,25 +56,13 @@ To build librsync you will need: Available from http://rpm5.org/files/popt/ -* automake, libtool, and autoconf +* cmake ## Compiling -If you're building from a git tree you must first create the autoconf files: +Generate Makefile by running - $ ./autogen.sh - -To build and test librsync then do - - $ ./configure - $ make all check - -You can also do what's called a `VPATH` build, where the build products are -kept separate from the source tree: - - $ mkdir _build # for example - $ cd _build - $ ../configure && make check + $ cmake CMakeList.txt After building you can install `rdiff` and `librsync` for system-wide use. The destination is controlled by `--prefix` and related options to `./configure`. From 7f475363a39e2699b6702952a58b9441aed400e6 Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 13:03:31 +0200 Subject: [PATCH 013/688] make rdiff aware of -z and -i options mentioned in --help --- rdiff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rdiff.c b/rdiff.c index a855a347..a7d74a83 100644 --- a/rdiff.c +++ b/rdiff.c @@ -99,8 +99,8 @@ const struct poptOption opts[] = { { "sum-size", 'S', POPT_ARG_INT, &strong_len }, { "statistics", 's', POPT_ARG_NONE, &show_stats }, { "stats", 0, POPT_ARG_NONE, &show_stats }, - { "gzip", 0, POPT_ARG_NONE, 0, OPT_GZIP }, - { "bzip2", 0, POPT_ARG_NONE, 0, OPT_BZIP2 }, + { "gzip", 'z', POPT_ARG_NONE, 0, OPT_GZIP }, + { "bzip2", 'i', POPT_ARG_NONE, 0, OPT_BZIP2 }, { "paranoia", 0, POPT_ARG_NONE, &rs_roll_paranoia }, { 0 } }; From f63c481aa7bb4e1de4984dfca0d12f6ae72f0b66 Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 13:10:35 +0200 Subject: [PATCH 014/688] Link popt to rdiff not to librsync --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6ab697c3..86db1c06 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -161,7 +161,6 @@ set(rsync_LIB_SRCS add_library(rsync SHARED ${rsync_LIB_SRCS}) target_link_libraries(rsync -${POPT_LIBRARIES} ${BZIP2_LIBRARIES} ${ZLIB_LIBRARIES} ) @@ -182,7 +181,7 @@ set(rdiff_SRCS add_executable(rdiff ${rdiff_SRCS}) -target_link_libraries(rdiff rsync) +target_link_libraries(rdiff rsync ${POPT_LIBRARIES}) #install(TARGETS rdiff ${INSTALL_TARGETS_DEFAULT_ARGS}) From db0246d307449dd9f5fb425d17c1bbe7a4f666d8 Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 13:50:41 +0200 Subject: [PATCH 015/688] Allow install of compiled lib and binary --- CMakeLists.txt | 83 ++------------------------------------------------ 1 file changed, 3 insertions(+), 80 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 86db1c06..f269121f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -166,7 +166,7 @@ ${ZLIB_LIBRARIES} ) set_target_properties(rsync PROPERTIES VERSION 1.0.0 SOVERSION 1) -#install(TARGETS rsync ${INSTALL_TARGETS_DEFAULT_ARGS}) +install(TARGETS rsync ${INSTALL_TARGETS_DEFAULT_ARGS} DESTINATION lib) ########### next target ############### @@ -183,86 +183,9 @@ add_executable(rdiff ${rdiff_SRCS}) target_link_libraries(rdiff rsync ${POPT_LIBRARIES}) -#install(TARGETS rdiff ${INSTALL_TARGETS_DEFAULT_ARGS}) +install(TARGETS rdiff ${INSTALL_TARGETS_DEFAULT_ARGS} DESTINATION bin) ########### install files ############### -#install(FILES librsync.h librsync-config.h DESTINATION include) -#install(FILES mkprototab.pl DESTINATION ) - - - -#original Makefile.am contents follow: - -### Process this file with automake to produce Makefile.in -# -## Copyright (C) 2000, 2001, 2002, 2014 by Martin Pool -## Copyright (C) 2003 by Donovan Baarda -# -## This program is free software; you can redistribute it and/or -## modify it under the terms of the GNU Lesser General Public License -## as published by the Free Software Foundation; either version 2.1 of -## the License, or (at your option) any later version. -## -## This program is distributed in the hope that it will be useful, but -## WITHOUT ANY WARRANTY; without even the implied warranty of -## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -## Lesser General Public License for more details. -## -## You should have received a copy of the GNU Lesser General Public -## License along with this program; if not, write to the Free Software -## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -# -#AUTOMAKE_OPTIONS = foreign -#SUBDIRS = . doc testsuite -#ACLOCAL_AMFLAGS = -I m4 -# -#MAINTAINERCLEANFILES = Makefile.in \ -# aclocal.m4 config.guess config.h.in config.sub configure \ -# depcomp install-sh ltmain.sh missing mkinstalldirs \ -# prototab.c prototab.h -# -#EXTRA_DIST = autogen.sh configure.msc $(noinst_SCRIPTS) rdiff.magic \ -# librsync.spec README.RPM libversions.txt \ -# PCbuild/rdiff.dsp PCbuild/PCbuild.dsw PCbuild/config.h \ -# PCbuild/librsync-config.h -# -#include_HEADERS = librsync.h librsync-config.h -# -#lib_LTLIBRARIES = librsync.la -# -#librsync_la_SOURCES = prototab.c prototab.h \ -# base64.c buf.c buf.h checksum.c checksum.h command.c \ -# command.h delta.c emit.c emit.h fileutil.c fileutil.h \ -# hex.c job.c job.h mdfour.c mdfour.h mksum.c msg.c netint.c netint.h \ -# patch.c readsums.c librsync.h librsync-config.h \ -# rollsum.c rollsum.h \ -# scoop.c search.c search.h stats.c stream.c stream.h sumset.c \ -# sumset.h trace.c trace.h tube.c types.h util.c util.h \ -# version.c whole.c whole.h snprintf.h \ -# blake2b-ref.c blake2.h blake2-impl.h -# -#librsync_la_LIBADD = @LIBOBJS@ -# -#librsync_la_LDFLAGS = -version-info @librsync_libversion@ -# -## This is the default for any programs that don't specify a preference. -#LDADD = librsync.la -# -## This is the rdiff application -#bin_PROGRAMS = rdiff -# -#rdiff_SOURCES = rdiff.c isprefix.c isprefix.h librsync.h librsync-config.h \ -# trace.h -# -#rdiff_LDADD = librsync.la -# -#rdiff_DEPENDENCIES = librsync.la -# -## this script is used to build prototab.[ch] -#noinst_SCRIPTS = mkprototab.pl -# -## Autogenerated by a script. -#prototab.c prototab.h: $(srcdir)/mkprototab.pl -# perl $(srcdir)/mkprototab.pl prototab.c prototab.h +install(FILES librsync.h librsync-config.h DESTINATION include) From 1ee5ca025eace738dd73dc86872d96551c8716b1 Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 13:52:32 +0200 Subject: [PATCH 016/688] Uppercase better --- CMakeLists.txt | 10 +++++----- config.h.cmake | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f269121f..3c7fc649 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,12 +2,12 @@ project(librsync) cmake_minimum_required(VERSION 2.6) -set(librsync_MAJOR_VERSION 1) -set(librsync_MINOR_VERSION 0) -set(librsync_PATCH_VERSION 0) +set(LIBRSYNC_MAJOR_VERSION 1) +set(LIBRSYNC_MINOR_VERSION 0) +set(LIBRSYNC_PATCH_VERSION 0) -set(librsync_VERSION - ${librsync_MAJOR_VERSION}.${librsync_MINOR_VERSION}.${librsync_PATCH_VERSION}) +set(LIBRSYNC_VERSION + ${LIBRSYNC_MAJOR_VERSION}.${LIBRSYNC_MINOR_VERSION}.${LIBRSYNC_PATCH_VERSION}) set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") diff --git a/config.h.cmake b/config.h.cmake index ac97dcd4..3718e684 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -169,7 +169,7 @@ /* Version number of package */ -#define VERSION "${librsync_VERSION}" +#define VERSION "${LIBRSYNC_PATCH_VERSION}" /* FIXME Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ From 07a0e000eade9dda1e1f49488666bf4b03daf22f Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Sat, 9 May 2015 15:18:39 +0200 Subject: [PATCH 017/688] Make doxygen generator working --- CMakeLists.txt | 18 +- config.h.cmake | 2 +- doc/Doxyfile.in | 2347 +++++++++++++++++++++++++++++++++++++++++++++-- doc/Makefile.am | 73 -- 4 files changed, 2299 insertions(+), 141 deletions(-) delete mode 100644 doc/Makefile.am diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c7fc649..a89e73f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -95,12 +95,28 @@ if (ZLIB_FOUND) include_directories(${ZLIB_INCLUDE_DIRS}) endif (ZLIB_FOUND) +# Doxygen doc generator +find_package(Doxygen) +if(DOXYGEN_FOUND) + configure_file(${CMAKE_CURRENT_SOURCE_DIR}/doc/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/doc/Doxyfile @ONLY) + add_custom_target(doc + ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/doc/Doxyfile + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} + COMMENT "Generating API documentation with Doxygen" VERBATIM + ) +endif(DOXYGEN_FOUND) + configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/librsync-config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/librsync-config.h) + + + #add_subdirectory(doc) -#add_subdirectory(testsuite) + +#build testsuite +add_subdirectory(testsuite) ########### next target ############### diff --git a/config.h.cmake b/config.h.cmake index 3718e684..5ef61e79 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -171,7 +171,7 @@ /* Version number of package */ #define VERSION "${LIBRSYNC_PATCH_VERSION}" -/* FIXME Define WORDS_BIGENDIAN to 1 if your processor stores words with the most +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ #if defined AC_APPLE_UNIVERSAL_BUILD # if defined __BIG_ENDIAN__ diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index c2d4c010..370b8b1a 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -1,149 +1,2364 @@ -# Doxygen configuration generated by Doxywizard version 0.1 +# Doxyfile 1.8.9.1 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + #--------------------------------------------------------------------------- -# General configuration options +# Project related configuration options #--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + PROJECT_NAME = librsync -PROJECT_NUMBER = + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + OUTPUT_DIRECTORY = . + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = YES + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = NO + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = YES + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = YES + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + EXTRACT_PRIVATE = NO + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + HIDE_UNDOC_CLASSES = NO -BRIEF_MEMBER_DESC = YES -REPEAT_BRIEF = YES -ALWAYS_DETAILED_SEC = YES -FULL_PATH_NAMES = NO -STRIP_FROM_PATH = + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO, these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + INTERNAL_DOCS = NO -CLASS_DIAGRAMS = NO -SOURCE_BROWSER = NO -INLINE_SOURCES = NO -STRIP_CODE_COMMENTS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + HIDE_SCOPE_NAMES = NO -VERBATIM_HEADERS = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + SHOW_INCLUDE_FILES = NO -JAVADOC_AUTOBRIEF = YES -INHERIT_DOCS = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + SORT_MEMBER_DOCS = NO -DISTRIBUTE_GROUP_DOC = NO -TAB_SIZE = 8 -ENABLED_SECTIONS = + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + GENERATE_TESTLIST = YES -ALIASES = + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + MAX_INITIALIZER_LINES = 30 -OPTIMIZE_OUTPUT_FOR_C = YES + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + #--------------------------------------------------------------------------- -# configuration options related to warning and progress messages +# Configuration options related to warning and progress messages #--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + QUIET = YES + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + WARN_IF_UNDOCUMENTED = NO + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + WARN_FORMAT = "$file:$line: $text" -WARN_LOGFILE = + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + #--------------------------------------------------------------------------- -# configuration options related to the input files +# Configuration options related to the input files #--------------------------------------------------------------------------- -INPUT = @top_srcdir@ + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. +# Note: If this tag is empty the current directory is searched. + +INPUT = @CMAKE_CURRENT_SOURCE_DIR@ + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank the +# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, +# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, +# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, +# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, +# *.qsf, *.as and *.js. + FILE_PATTERNS = *.c \ *.h \ *.dox + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + RECURSIVE = NO -EXCLUDE = -EXCLUDE_PATTERNS = -EXAMPLE_PATH = -EXAMPLE_PATTERNS = -IMAGE_PATH = -INPUT_FILTER = + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = NO + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = NO + #--------------------------------------------------------------------------- -# configuration options related to the alphabetical class index +# Configuration options related to the alphabetical class index #--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + ALPHABETICAL_INDEX = NO + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + COLS_IN_ALPHA_INDEX = 5 -IGNORE_PREFIX = + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + #--------------------------------------------------------------------------- -# configuration options related to the HTML output +# Configuration options related to the HTML output #--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + HTML_OUTPUT = html -HTML_HEADER = @srcdir@/header.html -HTML_FOOTER = @srcdir@/footer.html -HTML_STYLESHEET = @srcdir@/doxygen.css -HTML_ALIGN_MEMBERS = YES + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = @CMAKE_CURRENT_SOURCE_DIR@/doc/header.html + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = @CMAKE_CURRENT_SOURCE_DIR@/doc/footer.html + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/doc/doxygen.css + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + DISABLE_INDEX = NO -ENUM_VALUES_PER_LINE = 4 + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /