- Timestamp:
- Jun 20, 2009, 7:01:05 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/OptionVersion.cc
r733 r791 2 2 3 3 /* 4 Copyright (C) 2008 Peter Johansson4 Copyright (C) 2008, 2009 Peter Johansson 5 5 6 6 This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 28 28 #include "subversion_info.h" 29 29 #include "utility.h" 30 31 #include <subversion-1/svn_version.h> 32 33 #include <apr_version.h> 30 34 31 35 #include <sstream> … … 62 66 << "<http://www.gnu.org/licenses/gpl.html>.\n" 63 67 << "There is NO WARRANTY; to the extent permitted by law.\n"; 68 if (!no_verbose) { 69 cs << "\n" 70 << "Compiled with libsvn_subr " << SVN_VER_NUM 71 << "; using libsvn_subr "; 72 const svn_version_t* svn_ver = svn_subr_version(); 73 cs << svn_ver->major << '.' << svn_ver->minor << '.' << svn_ver->patch; 74 cs << "\n" 75 << "Compiled with libapr " << APR_VERSION_STRING 76 << "; using libapr "; 77 cs << apr_version_string(); 78 cs << "\n"; 79 } 64 80 exit(0); 65 81 }
Note: See TracChangeset
for help on using the changeset viewer.