Changeset 564
- Timestamp:
- Mar 7, 2008, 4:55:00 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build_support/svndigest.m4
-
Property
svn:eol-style
set to
native
-
Property
svn:keywords
set to
Id
-
Property
svn:eol-style
set to
-
trunk/configure.ac
r561 r564 53 53 AC_LANG(C++) 54 54 55 # Let user overide default CXXFLAGS 56 if test "${CXXFLAGS+set}" != set; then 57 CXXFLAGS="" # Setting CXXFLAGS here to prevent expansion in AC_PROG_CXX 58 fi 55 59 # Checks for programs. 56 60 AC_PROG_CPP … … 65 69 # 'long long' types). 66 70 CXXFLAGS="-Wall -pedantic -Wno-long-long" 71 sinclude(./build_support/ac_c_long_long.m4) 72 AC_C_LONG_LONG() 67 73 68 74 AC_ARG_ENABLE(debug, … … 201 207 fi 202 208 209 if test $ac_cv_c_long_long = no; then 210 AC_MSG_WARN([Compiler $CXX does not support `long long'. 211 svndigest must be compiled with a compiler that supports `long long'.]) 212 all_reqs_ok="false" 213 fi 214 203 215 if (test "$all_reqs_ok" = "false") ; then 204 216 AC_MSG_ERROR([Some pre-requisites were not fulfilled, aborting … … 213 225 # Some more messages. 214 226 AC_MSG_NOTICE([]) 215 AC_MSG_NOTICE([ Ready to compile the executables of svndige t])227 AC_MSG_NOTICE([ Ready to compile the executables of svndigest $VERSION]) 216 228 AC_MSG_NOTICE([ The following flags and libs will be used:]) 217 229 AC_MSG_NOTICE([ +++++++++++++++++++++++++++++++++++++++++++++++]) 230 AC_MSG_NOTICE([ Compiler: CXX=\"$CXX\"]) 218 231 AC_MSG_NOTICE([ Preprocessor flags: CPPFLAGS=\"$CPPFLAGS\"]) 219 232 AC_MSG_NOTICE([ C++ flags: CXXFLAGS=\"$CXXFLAGS\"]) -
trunk/lib/Makefile.am
r562 r564 64 64 65 65 subversion_info.h.tmp: FORCE 66 @echo '// s vn_version.h generated from svn_version.h.in.' > $@ ;\66 @echo '// subversion_info.h generated from subversion_info.h.in.' > $@ ;\ 67 67 revision=`$(SVNVERSION) $(top_srcdir)` ;\ 68 68 year=`svn info $(top_srcdir)|$(SED) -n 's/.*Date: \(.*\)-..-.*/\1/p'`;\ -
trunk/lib/subversion_info.h.in
r541 r564 1 1 // $Id$ 2 2 3 #ifndef _theplu_svndigest_s vn_revision_4 #define _theplu_svndigest_s vn_revision_3 #ifndef _theplu_svndigest_subversion_info_ 4 #define _theplu_svndigest_subversion_info_ 5 5 6 6 /* 7 Copyright (C) 2007 Peter Johansson7 Copyright (C) 2007, 2008 Peter Johansson 8 8 9 9 This file is part of svndigest, http://trac.thep.lu.se/svndigest
Note: See TracChangeset
for help on using the changeset viewer.