Hello Thomas,
> I get following error output from make and I have no
> idea how I can get further:
thank you for the report.
Please try the attached patch.
> PS: I installed uberSVN, because it looked good for me. Runs fine so far, but
> I don't
> know if it will work with fsvs yet. Does it?
Well, I don't know uberSVN ...
I don't think that it can be used to see the checkout state (files modified,
added,
etc.), for that it would have to know about FSVS (which it won't); but
repository
browsing via any tool won't interfere with FSVS.
Regards,
Phil
------------------------------------------------------
http://fsvs.tigris.org/ds/viewMessage.do?dsForumId=3928&dsMessageId=2871097
To unsubscribe from this discussion, e-mail:
[[email protected]].
Index: Makefile.in
===================================================================
--- Makefile.in (revision 2455)
+++ Makefile.in (working copy)
@@ -16,7 +16,7 @@
VERSION = $(shell perl -e '($$r) = (q( $(HEADREV) ) =~ m:(\d+):); $$t= q( $(HEADURL) ) =~ m:/tags/([^/]+): ? $$1 : "trunk"; print "$$t:$$r\n";' )
CFLAGS := @CFLAGS@
-CFLAGS += -Wall -funsigned-char -Os -DFSVS_VERSION='"$(VERSION)"'
+CFLAGS += -Wall -funsigned-char -Os -DFSVS_VERSION='"$(VERSION)"' -fnested-functions
LDFLAGS := @LDFLAGS@
FSVS_LDFLAGS = $(LDFLAGS) -lsvn_subr-1 -lsvn_delta-1 -lsvn_ra-1 -lpcre -lgdbm
EXTRALIBS := @EXTRALIBS@
Index: global.h
===================================================================
--- global.h (revision 2455)
+++ global.h (working copy)
@@ -788,7 +788,7 @@
*/
#define STOPIF_SVNERR(func, parm) STOPIF_SVNERR_TEXT(func, parm, #func)
/** Convert the svn_error_t into a message and a returnable integer. */
-#define STOP_HANDLE_SVNERR(svnerr) STOPIF_CODE_ERR_GOTO(svnerr, svnerr->apr_err, ex2, (const char*)svnerr->message)
+#define STOP_HANDLE_SVNERR(svnerr) STOPIF_CODE_ERR_GOTO(svnerr, svnerr->apr_err, ex2, "%s", (const char*)svnerr->message)
/** The opposite to STOP_HANDLE_SVNERR(); this converts an status
* to the svn_error_t.