commitmonitor Code
Monitor your SVN repositories and notifies you on new commits
Brought to you by:
steveking
changed | /trunk/ext |
changed | /trunk/ext/build/subversion.build |
changed | /trunk/ext/cyrus-sasl/include/prop.h |
added | /trunk/ext/sqlite |
added | /trunk/ext/sqlite/sqlite3.c |
added | /trunk/ext/sqlite/sqlite3.h |
added | /trunk/ext/sqlite/sqlite3ext.h |
changed | /trunk/src/CommitMonitor.vcproj |
--- a/trunk/ext/build/subversion.build +++ b/trunk/ext/build/subversion.build @@ -40,6 +40,12 @@ </loadfile> <echo file="..\cyrus-sasl\include\prop.h" message="${propfile}" /> + <exec program="python.exe"> + <arg value="build\transform_sql.py" /> + <arg value="subversion\libsvn_fs_fs\rep-cache-db.sql" /> + <arg value="subversion\libsvn_fs_fs\rep-cache-db.h" /> + </exec> + <property name="machineoption" value="/MACHINE:X86" if="${platform == 'win32'}" /> <property name="machineoption" value="/MACHINE:x64" if="${platform == 'x64'}" /> <foreach item="Folder" property="foldername"> @@ -48,6 +54,8 @@ <include name="subversion\libsvn*" /> <exclude name="subversion\libsvn_ra_local" /> <exclude name="subversion\libsvn_fs*" /> + <exclude name="subversion\libsvn_auth_gnome_keyring" /> + <exclude name="subversion\libsvn_auth_kwallet" /> </items> </in> <do> @@ -97,6 +105,8 @@ <define name="SVN_LIBSVN_CLIENT_LINKS_RA_SERF=1" /> <define name="SVN_LIBSVN_CLIENT_LINKS_RA_DAV=1" /> <define name="SVN_HAVE_SASL=1" /> + <define name="SVN_HAVE_NEON" /> + <define name="SVN_HAVE_SERF" /> <define name="APR_HAVE_IPV6" /> <define name="alloca=_alloca" /> <define name="snprintf=_snprintf" /> @@ -120,10 +130,6 @@ </lib> </do> </foreach> - <exec program="svn" failonerror="false"> - <arg value="revert" /> - <arg value="subversion\libsvn_subr\utf.c" /> - </exec> <copy file="..\cyrus-sasl\include\orig_prop.h" tofile="..\cyrus-sasl\include\prop.h" overwrite="true" /> </target>
--- a/trunk/ext/cyrus-sasl/include/prop.h +++ b/trunk/ext/cyrus-sasl/include/prop.h @@ -34,9 +34,9 @@ * as extern. (Technically, we don't even have to do that.) */ #ifdef WIN32 # ifdef LIBSASL_EXPORTS -# define LIBSASL_API __declspec(dllexport) +# define LIBSASL_API # else /* LIBSASL_EXPORTS */ -# define LIBSASL_API __declspec(dllimport) +# define LIBSASL_API # endif /* LIBSASL_EXPORTS */ #else /* WIN32 */ # define LIBSASL_API extern @@ -46,9 +46,9 @@ * is different, as we can't assign an initial value to an extern variable */ #ifdef WIN32 # ifdef LIBSASL_EXPORTS -# define LIBSASL_VAR __declspec(dllexport) +# define LIBSASL_VAR # else /* LIBSASL_EXPORTS */ -# define LIBSASL_VAR __declspec(dllimport) +# define LIBSASL_VAR # endif /* LIBSASL_EXPORTS */ #else /* WIN32 */ # define LIBSASL_VAR @@ -185,3 +185,4 @@ #endif #endif /* PROP_H */ +
File too large to view diff