diff --git a/README b/README index d073e07f..9442d3b3 100644 --- a/README +++ b/README @@ -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. diff --git a/SparkleLib/SparkleRepo.cs b/SparkleLib/SparkleRepo.cs index 4fa61d27..e4e58d14 100644 --- a/SparkleLib/SparkleRepo.cs +++ b/SparkleLib/SparkleRepo.cs @@ -14,6 +14,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . + 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 (); diff --git a/SparkleShare/SparkleController.cs b/SparkleShare/SparkleController.cs index 85b9467a..7d0adf24 100644 --- a/SparkleShare/SparkleController.cs +++ b/SparkleShare/SparkleController.cs @@ -25,7 +25,6 @@ using System.Net; using System.Threading; using System.Text.RegularExpressions; using System.Xml; - using System.Security.Cryptography; using System.Text;