author | Michael Krelin <hacker@klever.net> | 2009-04-05 13:52:45 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2009-04-05 13:52:45 (UTC) |
commit | 870b9eb4279337ce3d1415c62082247fb977ce4c (patch) (side-by-side diff) | |
tree | 810770fa2a261aa4e4e1cfd76ccba345119c9e67 | |
parent | b65ea766b6de214a78b92be2b2edd67897e74207 (diff) | |
download | iii-870b9eb4279337ce3d1415c62082247fb977ce4c.zip iii-870b9eb4279337ce3d1415c62082247fb977ce4c.tar.gz iii-870b9eb4279337ce3d1415c62082247fb977ce4c.tar.bz2 |
bumped version to 0.1 and added credits
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | AUTHORS | 7 | ||||
-rw-r--r-- | NEWS.xml | 4 | ||||
-rw-r--r-- | configure.ac | 4 |
3 files changed, 8 insertions, 7 deletions
@@ -1,12 +1,9 @@ Klever dissected: Michael 'hacker' Krelin <hacker@klever.net> Leonid Ivanov <kamel@klever.net> Thanks to: -Brian Muller <bmuller AT butterfat DOT net> of mod_auth_openid project for -suggestions, bug reports, testing and actually making use of the library. - -Joseph Smarr <joseph AT plaxo DOT com> of plaxo.com for robustness enhancements -and making use of my work. +cdavies of Eye-Fi forums for integrity digest verification algorithm. + See http://forums.eye.fi/viewtopic.php?f=4&t=270&p=4074#p4074 @@ -1,6 +1,10 @@ <?xml version="1.0" encoding="us-ascii"?> <news> + <version version="0.1" date=""> + <ni>integrity digest verification</ni> + <ni>try to create upload directory if it doesn't exist</ni> + </version> <version version="0.0" date="March 8th, 2009"> <ni>Initial release</ni> </version> </news> diff --git a/configure.ac b/configure.ac index 7b1db54..c3bb8ab 100644 --- a/configure.ac +++ b/configure.ac @@ -1,71 +1,71 @@ -AC_INIT([iii], [0.0], [iii-bugs@klever.net]) -AC_CONFIG_SRCDIR([configure.ac]) +AC_INIT([iii], [0.1], [iii-bugs@klever.net]) +AC_CONFIG_SRCDIR([src/iiid.cc]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([dist-bzip2]) AC_PROG_INSTALL AC_PROG_CXX AC_PROG_CC PKG_PROG_PKG_CONFIG AC_HEADER_STDC AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) PKG_CHECK_MODULES([MODULES],[gsoap++ openssl libconfuse],,[ AC_MSG_ERROR([one of the build dependencies isn't satisfied]) ]) AC_PATH_PROG([SOAPCPP2],[soapcpp2],[false]) test "$SOAPCPP2" = "false" && AC_MSG_ERROR([no soapcpp2 tool, part of gsoap package, found.]) notfound=false AC_CHECK_HEADERS([archive.h],[ AC_CHECK_LIB([archive],[archive_read_new],,[notfound=true]) ],[notfound=true]) $notfound && AC_MSG_ERROR([no required libarchive library found. get one from http://people.freebsd.org/~kientzle/libarchive/]) notfound=false AC_LANG_PUSH([C++]) AC_CHECK_HEADERS([autosprintf.h],[ AC_CHECK_LIB([asprintf],[main],,[notfound=true]) ],[notfound=true]) $notfound && AC_MSG_ERROR([no autosprintf, part of gettext, found]) AC_LANG_POP([C++]) nitpick=false AC_ARG_ENABLE([nitpicking], AC_HELP_STRING([--enable-nitpicking],[make compiler somewhat overly fastidious about the code it deals with]), [ test "$enableval" = "no" || nitpick=true ] ) if $nitpick ; then CPP_NITPICK="-pedantic -Wall -Wextra -Wundef -Wshadow \ -Wunsafe-loop-optimizations -Wconversion -Wmissing-format-attribute \ -Wredundant-decls -ansi -Wlogical-op -Wmissing-noreturn" C_NITPICK="$CPP_NITPICK" CXX_NITPICK="$C_NITPICK" CPPFLAGS="$CPPFLAGS $CPP_NITPICK" CFLAGS="$CFLAGS $C_NITPICK" CXXFLAGS="$CXXFLAGS $CXX_NITPICK" fi ndebug=true AC_ARG_ENABLE([debug], AC_HELP_STRING([--enable-debug],[enable debugginc code]), [ test "$enableval" = "no" || ndebug=false ] ) if $ndebug ; then CPPFLAGS_DEBUG="-DNDEBUG" else CPPFLAGS_DEBUG="-DDEBUG" fi AC_SUBST([CPPFLAGS_DEBUG]) AC_CONFIG_FILES([ Makefile src/Makefile doc/Makefile doc/iiid.8 ]) AC_OUTPUT |