ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} NULL = bin_PROGRAMS = src/spice-vdagent sbin_PROGRAMS = src/spice-vdagentd check_PROGRAMS = tests/test-file-xfers TESTS = $(check_PROGRAMS) common_sources = \ src/udscs.c \ src/udscs.h \ src/vdagent-connection.c \ src/vdagent-connection.h \ src/vdagentd-proto-strings.h \ src/vdagentd-proto.h \ $(NULL) src_spice_vdagent_CFLAGS = \ $(DRM_CFLAGS) \ $(X_CFLAGS) \ $(SPICE_CFLAGS) \ $(GIO2_CFLAGS) \ $(GTK_CFLAGS) \ $(ALSA_CFLAGS) \ -I$(srcdir)/src \ -DUDSCS_NO_SERVER \ $(NULL) src_spice_vdagent_LDADD = \ $(DRM_LIBS) \ $(X_LIBS) \ $(SPICE_LIBS) \ $(GIO2_LIBS) \ $(GTK_LIBS) \ $(ALSA_LIBS) \ $(NULL) src_spice_vdagent_SOURCES = \ $(common_sources) \ src/vdagent/audio.c \ src/vdagent/audio.h \ src/vdagent/clipboard.c \ src/vdagent/clipboard.h \ src/vdagent/webdav-cb.c \ src/vdagent/webdav-cb.h \ src/vdagent/device-info.c \ src/vdagent/device-info.h \ src/vdagent/display.c \ src/vdagent/display.h \ src/vdagent/file-xfers.c \ src/vdagent/file-xfers.h \ src/vdagent/mutter.c \ src/vdagent/mutter.h \ src/vdagent/x11-priv.h \ src/vdagent/x11-randr.c \ src/vdagent/x11.c \ src/vdagent/x11.h \ src/vdagent/vdagent.c \ $(NULL) tests_test_file_xfers_CFLAGS = \ $(SPICE_CFLAGS) \ $(GIO2_CFLAGS) \ -I$(srcdir)/src \ -I$(srcdir)/src/vdagent \ -DUDSCS_NO_SERVER \ $(NULL) tests_test_file_xfers_LDADD = \ $(SPICE_LIBS) \ $(GIO2_LIBS) \ $(NULL) tests_test_file_xfers_SOURCES = \ $(common_sources) \ src/vdagent/file-xfers.c \ src/vdagent/file-xfers.h \ tests/test-file-xfers.c \ $(NULL) src_spice_vdagentd_CFLAGS = \ $(DBUS_CFLAGS) \ $(LIBSYSTEMD_DAEMON_CFLAGS) \ $(LIBSYSTEMD_LOGIN_CFLAGS) \ $(PCIACCESS_CFLAGS) \ $(SPICE_CFLAGS) \ $(GIO2_CFLAGS) \ $(PIE_CFLAGS) \ -I$(srcdir)/src \ $(NULL) src_spice_vdagentd_LDADD = \ $(DBUS_LIBS) \ $(LIBSYSTEMD_DAEMON_LIBS) \ $(LIBSYSTEMD_LOGIN_LIBS) \ $(PCIACCESS_LIBS) \ $(SPICE_LIBS) \ $(GIO2_LIBS) \ $(PIE_LDFLAGS) \ $(NULL) src_spice_vdagentd_SOURCES = \ $(common_sources) \ src/vdagentd/vdagentd.c \ src/vdagentd/session-info.h \ src/vdagentd/uinput.c \ src/vdagentd/uinput.h \ src/vdagentd/xorg-conf.c \ src/vdagentd/xorg-conf.h \ src/vdagentd/virtio-port.c \ src/vdagentd/virtio-port.h \ $(NULL) tests_test_session_info_CFLAGS = \ $(DBUS_CFLAGS) \ $(GIO2_CFLAGS) \ -I$(srcdir)/src \ -I$(srcdir)/src/vdagentd \ $(NULL) tests_test_session_info_LDADD = \ $(DBUS_LIBS) \ $(GIO2_LIBS) \ $(NULL) tests_test_session_info_SOURCES = \ src/vdagentd/session-info.h \ tests/test-session-info.c \ $(NULL) if HAVE_CONSOLE_KIT src_spice_vdagentd_SOURCES += src/vdagentd/console-kit.c tests_test_session_info_SOURCES += src/vdagentd/console-kit.c check_PROGRAMS += tests/test-session-info else if HAVE_LIBSYSTEMD_LOGIN src_spice_vdagentd_SOURCES += src/vdagentd/systemd-login.c tests_test_session_info_CFLAGS += $(LIBSYSTEMD_LOGIN_CFLAGS) tests_test_session_info_LDADD += $(LIBSYSTEMD_LOGIN_LIBS) tests_test_session_info_SOURCES += src/vdagentd/systemd-login.c check_PROGRAMS += tests/test-session-info else src_spice_vdagentd_SOURCES += src/vdagentd/dummy-session-info.c endif endif xdgautostartdir = $(sysconfdir)/xdg/autostart xdgautostart_DATA = $(top_srcdir)/data/spice-vdagent.desktop gdmautostartdir = $(datadir)/gdm/greeter/autostart gdmautostart_DATA = $(top_srcdir)/data/spice-vdagent.desktop gdmautostart2dir = $(datadir)/gdm/autostart/LoginWindow gdmautostart2_DATA = $(top_srcdir)/data/spice-vdagent.desktop install-data-local: $(mkdir_p) $(DESTDIR)$(localstatedir)/run/spice-vdagentd if INIT_SCRIPT_RED_HAT initdir = $(sysconfdir)/rc.d/init.d init_SCRIPTS = $(top_srcdir)/data/spice-vdagentd endif if INIT_SCRIPT_SYSTEMD systemdunitdir = $(SYSTEMDSYSTEMUNITDIR) systemdunit_DATA = \ $(top_srcdir)/data/spice-vdagentd.service \ $(top_srcdir)/data/spice-vdagentd.socket udevrulesdir = $(udevdir)/rules.d udevrules_DATA = $(top_srcdir)/data/70-spice-vdagentd.rules tmpfilesdir = $(prefix)/lib/tmpfiles.d tmpfiles_DATA = $(top_srcdir)/data/tmpfiles.d/spice-vdagentd.conf endif manpagedir = $(mandir)/man1 manpage_DATA = \ data/spice-vdagent.1 \ data/spice-vdagentd.1 \ $(NULL) EXTRA_DIST = \ README.md \ CHANGELOG.md \ data/70-spice-vdagentd.rules \ data/spice-vdagent.desktop \ data/spice-vdagentd \ data/spice-vdagentd.service \ data/spice-vdagentd.socket \ data/tmpfiles.d/spice-vdagentd.conf \ data/xorg.conf.RHEL-5 \ $(NULL) DISTCHECK_CONFIGURE_FLAGS = \ --with-init-script=redhat \ $(NULL) tests_test_device_info_LDADD = $(src_spice_vdagent_LDADD) tests_test_device_info_CFLAGS = $(src_spice_vdagent_CFLAGS) check_PROGRAMS += tests/test-device-info check_PROGRAMS += tests/test-termination main, development dictionaries repositoryroot
summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2022-10-13Branch libreoffice-7-3-7libreoffice-7-3-7Christian Lohmaier0-0/+0
2022-08-04Updated Slovenian thesauruscp-22.05.5-2libreoffice-7-3Martin Srebotnjak5-193/+1256
2022-02-15There is no EO country, eo-EO is a bad language tagcp-22.05.5-1cp-22.05.4-1cp-22.05.3-1co-22.05.2-1co-22.05.1-1Eike Rathke1-3/+3
2022-01-04Update French hyphenation rulesco-22.05-branch-pointOlivier R3-730/+754
2021-11-25Branch libreoffice-7-3Christian Lohmaier0-0/+0
2021-11-24Updated the British dictionary, based on the wordlist of Oxford Professors an...libreoffice-7-3-branch-pointMarco A.G.Pinto6-371/+3767
2021-11-12Add "exrtudir" to spell check for pt-BROlivier Hallot2-47380/+47381
2021-11-05Add pt-BR thesaurus collateral informationOlivier Hallot3-0/+222
2021-11-05Cleanup pt-BR thesaurus (part)Olivier Hallot2-84962/+31636
2021-11-04Add thesaurus to pt-BROlivier Hallot6-5/+230682
2021-10-04Avoid duplicated pt_BR_pt_BR.properties in packaging's filelistAndras Timar1-0/+5
2021-10-01add translations of pt_BR grammar checker dialogAndras Timar1-1/+5
2021-09-27Belarusian hunspell dictionary updateAleś Bułojčyk9-84425/+295108
2021-09-26tdf#144730: Replace CONVERT_ADD to CONVERT to fix metric/non metric conversionsJulien Nabet3-3/+3
2021-08-01More refactoring of dict_pt-BR lightproofOlivier Hallot1-11854/+11854
2021-07-31Fix Flags not at the start of the expression in ru-RUJulien Nabet1-1/+1
2021-07-31Refactor lighproof_pt-BR impl scriptOlivier Hallot1-9724/+9724
2021-07-31"троеточие" is vernacularMike Kaganski1-1/+1
2021-07-31Add regex checker for pt-BR LightProofOlivier Hallot2-0/+27
2021-07-31Reformat lightproof_ru_RU.py to have 1 expression per lineJulien Nabet1-1/+147
2021-07-31Refactor and fix pt-BR Lightproof rulesOlivier Hallot1-11887/+11887
2021-07-30tdf#139523: LightProof makes Python complain on FutureWarnings for pt-BRJulien Nabet2-34/+35
2021-07-29Fix typoOlivier Hallot1-2/+2
2021-07-29Portuguese Brasil lightproof: fix "Flags not at the start of the expression"Julien Nabet1-4/+4
2021-07-29Fix typo in "Expressão arcaica"Olivier Hallot1-12/+12
2021-07-28Czech Hunspell: add several word formsStanislav Horacek1-3/+6
2021-07-27Bump pt-BR dict version to 3.2.15Olivier Hallot2-4/+4
2021-07-27Portuguese Brasil lightproof: numsep=>gerund since it concerns gerundismoJulien Nabet7-100/+100
2021-07-27tdf#143559: save the changes in options of Portuguese spellcheckJulien Nabet5-30/+30
2021-07-27tdf#143507: localize Grammar Checking (Portuguese) settings pageJulien Nabet2-0/+56
2021-07-27Related tdf#138369: Remove spurious CR (ctrl-M) in ru_RU.dicJulien Nabet1-14/+14
2021-07-26tdf#143489: Update Galician dictionaries to version 20.08Xisco Fauli6-119129/+121576
2021-07-01Czech Hunspell: fix declination of some nouns ending with "-ec"Stanislav Horacek2-663/+663
2021-07-01Czech Hunspell: fix several verbs of pattern "tisknout"Stanislav Horacek2-6/+2
2021-07-01Czech Hunspell: fix several nouns and adjectivesStanislav Horacek1-16/+12
2021-06-27Fix Guarani thesaurusAndras Timar3-2786/+1880
2021-06-27Remove .idx file, they are generated by the buildJulien Nabet2-31793/+0
2021-06-27Spanish dictionary: Package missing iconJulien Nabet1-0/+1
2021-06-27Esperanto dictionary: Package extension's descriptionJulien Nabet1-0/+2
2021-06-16Czech Hunspell: fix word "třídička"Stanislav Horacek1-1/+1
2021-06-02Czech Hunspell: remove confusing surnamelibreoffice-7-2-branch-pointStanislav Horacek1-2/+1
2021-06-02Czech Hunspell: remove rule based on circumfix and make other updatesStanislav Horacek3-76/+10
2021-06-02Czech Hunspell: use KEY and update TRY in .aff fileStanislav Horacek2-3/+7
2021-06-02Czech Hunspell: remove duplicatesStanislav Horacek1-138/+1
2021-06-02more updates of Czech HunspellStanislav Horacek2-234/+1082
2021-06-02update Czech Hunspell filesStanislav Horacek5-49535/+7966
2021-05-31Czech Hunspell: sort words in .dic fileStanislav Horacek