Subversion has the option diff3-has-program-arg
### Set diff3-has-program-arg to 'yes' if your 'diff3' program ### accepts the '--diff-program' option. diff3-has-program-arg = [ yes | no ]
My diff3
does support the --diff-program
option, but I don't see where to configure the program to be called.
- How do I do this?
- Why would I do this?
diff3-has-program-arg
appears to be cruft. The option is referenced inlibsvn_subr/io.c
, but the code that uses the option is disabled by theSVN_DIFF3_HAS_DIFF_PROGRAM_ARG
ifdef.The configure logic to set that macro was removed in this revision.
From an old mail on the svn dev list, it looks like the original need for HAS_DIFF_PROGRAM_ARG was to support both a version of diff that required the
--diff-program
option and a version that rejected it, prior to implementation of subversion's internal diff support.