[repo] Fix compilation issue

This commit is contained in:
Hylke Bons 2011-02-23 01:13:54 +00:00
parent cd130483fc
commit 919ec8eea9
3 changed files with 7 additions and 4 deletions

5
README
View file

@ -113,10 +113,13 @@ Make sure that git or a symbolic link to git is in /usr/bin.
Note:
You may need to adjust some environment variables to find mono:
$ export PATH=/Library/Frameworks/Mono.framework/Versions/Current/bin:$PATH
$ export PKG_CONFIG=/Library/Frameworks/Mono.framework/Versions/Current/bin/pkg-config
$ export PKG_CONFIG_PATH=/Library/Frameworks/Mono.framework/Versions/Current/lib/pkgconfig
$ ./autogen.sh
The last step will give you some errors, but you only need the libraries to be compiled.
Open 'SparkleShare/Mac/SparkleShare.sln' in MonoDevelop and start the build.

View file

@ -14,6 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
using GitSharp;
using GitSharp.Commands;
using GitSharp.Core.Transport;
@ -565,7 +566,7 @@ namespace SparkleLib {
LocalTimer.Stop ();
RemoteTimer.Stop ();
if (RepositoryStatus.AnyDifferences) {
if (Status.AnyDifferences) {
Add ();
@ -746,7 +747,7 @@ namespace SparkleLib {
public void Rebase ()
{
if (RepositoryStatus.AnyDifferences) {
if (Status.AnyDifferences) {
Add ();

View file

@ -25,7 +25,6 @@ using System.Net;
using System.Threading;
using System.Text.RegularExpressions;
using System.Xml;
using System.Security.Cryptography;
using System.Text;