linux: Fix build. Closes #886

This commit is contained in:
Hylke Bons 2012-08-03 12:22:07 +02:00
parent b1ef8f72d0
commit 6dfc3420ed
5 changed files with 4 additions and 36 deletions

15
.gitignore vendored
View file

@ -12,13 +12,9 @@
*.sln.cache *.sln.cache
*.user *.user
*.resources *.resources
po/POTFILES
Makefile.in Makefile.in
Makefile Makefile
POTFILES
SparkleLib/windows/GlobalAssemblyInfoGit.cs
intltool-* intltool-*
SparkleShare/data
configure configure
config.guess config.guess
config.h config.h
@ -26,35 +22,24 @@ config.h.in
config.log config.log
config.status config.status
config.sub config.sub
INSTALL
aclocal.m4 aclocal.m4
autom4te.cache/ autom4te.cache/
bin/ bin/
obj/ obj/
/bin/
SparkleShare/Mac/bin
install-sh install-sh
libtool libtool
ltmain.sh ltmain.sh
missing missing
po/.intltool-merge-cache
po/Makefile.in.in
po/stamp-it
SparkleLib/AssemblyInfo.cs
build/m4/shave/shave build/m4/shave/shave
build/m4/*.m4 build/m4/*.m4
build/m4/shave/shave-libtool build/m4/shave/shave-libtool
SparkleLib/Defines.cs SparkleLib/Defines.cs
SparkleLib/windows/Defines.cs
SparkleLib/windows/GlobalAssemblyInfo.cs
SparkleShare/Linux/sparkleshare SparkleShare/Linux/sparkleshare
SparkleShare/Mac/git SparkleShare/Mac/git
po/sparkleshare.pot
SparkleShare/Linux/Nautilus/sparkleshare-nautilus-extension.py SparkleShare/Linux/Nautilus/sparkleshare-nautilus-extension.py
SparkleShare/Linux/Nautilus/sparkleshare-nautilus3-extension.py SparkleShare/Linux/Nautilus/sparkleshare-nautilus3-extension.py
gnome-doc-utils.make gnome-doc-utils.make
/sparkleshare-* /sparkleshare-*
data/plugins/*.xml
desktop.ini desktop.ini
_ReSharper.* _ReSharper.*
*.msi *.msi

View file

@ -32,7 +32,7 @@ namespace SparkleShare {
public override string PluginsPath { public override string PluginsPath {
get { get {
return SparkleHelpers.CombineMore (Defines.INSTALL_DIR, "plugins"); return new string [] { Defines.INSTALL_DIR, "plugins" }.Combine ();
} }
} }

View file

@ -69,12 +69,12 @@ namespace SparkleShare {
Xalign = 1 Xalign = 1
}; };
Entry name_entry = new Entry (Controller.GuessedUserName) { Entry name_entry = new Entry (UnixUserInfo.GetRealUser ().RealName) {
Xalign = 0, Xalign = 0,
ActivatesDefault = true ActivatesDefault = true
}; };
Entry email_entry = new Entry (Controller.GuessedUserEmail) { Entry email_entry = new Entry () {
Xalign = 0, Xalign = 0,
ActivatesDefault = true ActivatesDefault = true
}; };

View file

@ -16,16 +16,8 @@
using System; using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
using Gtk; using Gtk;
using Mono.Unix;
using Mono.Unix.Native;
using SparkleLib; using SparkleLib;
namespace SparkleShare { namespace SparkleShare {
@ -46,9 +38,6 @@ namespace SparkleShare {
{ {
Application.Init (); Application.Init ();
// Use translations
Catalog.Init (Defines.GETTEXT_PACKAGE, Defines.LOCALE_DIR);
Setup = new SparkleSetup (); Setup = new SparkleSetup ();
EventLog = new SparkleEventLog (); EventLog = new SparkleEventLog ();
About = new SparkleAbout (); About = new SparkleAbout ();

View file

@ -3,14 +3,8 @@ BUILD_DATA_DIR = $(top_builddir)/bin/share/$(PACKAGE)
# Since all other attempts failed, we currently go this way: # Since all other attempts failed, we currently go this way:
# This code adds the file specified in ASSEMBLY_INFO_SOURCE to SOURCES_BUILD. # This code adds the file specified in ASSEMBLY_INFO_SOURCE to SOURCES_BUILD.
# If no such file is specified, the default AssemblyInfo.cs is used.
ASSEMBLY_INFO_SOURCE_REAL = \ ASSEMBLY_INFO_SOURCE_REAL = \
$(shell if [ "$(ASSEMBLY_INFO_SOURCE)" ]; \ $(addprefix $(srcdir)/, $(ASSEMBLY_INFO_SOURCE))
then \
echo "$(addprefix $(srcdir)/, $(ASSEMBLY_INFO_SOURCE))"; \
else \
echo "$(top_srcdir)/SparkleLib/AssemblyInfo.cs"; \
fi)
SOURCES_BUILD = $(addprefix $(srcdir)/, $(SOURCES)) SOURCES_BUILD = $(addprefix $(srcdir)/, $(SOURCES))
SOURCES_BUILD += $(ASSEMBLY_INFO_SOURCE_REAL) SOURCES_BUILD += $(ASSEMBLY_INFO_SOURCE_REAL)