summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-04-05 21:50:04 +0200
committerIñigo Martínez <inigomartinez@gmail.com>2018-04-06 17:23:56 +0200
commit5aaf80fd751c384656d8a07da4e932e741993cbf (patch)
tree1440e859ce5d9ad1e44d63d9738364149544db60 /client
parentb607fdd4d0e31026891d10ad1b4f828bd31ebee0 (diff)
downloadgvfs-5aaf80fd751c384656d8a07da4e932e741993cbf.tar.gz
build: Remove autotools
To avoid the burden of maintaining multiple build systems, this patch removes autotools support. https://bugzilla.gnome.org/show_bug.cgi?id=786149
Diffstat (limited to 'client')
-rw-r--r--client/.gitignore2
-rw-r--r--client/Makefile.am101
2 files changed, 0 insertions, 103 deletions
diff --git a/client/.gitignore b/client/.gitignore
deleted file mode 100644
index 1c1f4eed..00000000
--- a/client/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-gvfsd-fuse
-test-uri-utils
diff --git a/client/Makefile.am b/client/Makefile.am
deleted file mode 100644
index bfa58710..00000000
--- a/client/Makefile.am
+++ /dev/null
@@ -1,101 +0,0 @@
-NULL =
-
-AM_CPPFLAGS = -I$(top_srcdir) \
- -I$(top_srcdir)/client \
- -I$(top_srcdir)/metadata \
- -I$(top_builddir)/metadata \
- -I$(top_srcdir)/common \
- -I$(top_builddir)/common \
- $(GLIB_CFLAGS) \
- -DG_LOG_DOMAIN=\"GVFS\" \
- -DGVFS_MODULE_DIR=\"$(libdir)/gvfs/modules\" \
- -DGVFS_LOCALEDIR=\""$(localedir)"\"
-
-module_flags = -export_dynamic -avoid-version -module -no-undefined -export-symbols-regex '^g_vfs_.*|g_io_module_load|g_io_module_unload|g_io_module_query'
-
-## Common to dynamic and static client libs
-
-gvfsclientincludedir=$(includedir)/gvfs-client/gvfs/
-gvfsclientinclude_HEADERS = \
- gvfsuriutils.h gvfsurimapper.h \
- $(NULL)
-
-URI_PARSER_SOURCES = \
- smburi.c \
- httpuri.c \
- afpuri.c \
- $(NULL)
-
-vfssources = \
- gdaemonvfs.c gdaemonvfs.h \
- gdaemonmount.c gdaemonmount.h \
- gdaemonvolumemonitor.c gdaemonvolumemonitor.h \
- gdaemonfile.c gdaemonfile.h \
- gdaemonfileinputstream.c gdaemonfileinputstream.h \
- gdaemonfileoutputstream.c gdaemonfileoutputstream.h \
- gdaemonfileenumerator.c gdaemonfileenumerator.h \
- gdaemonfilemonitor.c gdaemonfilemonitor.h \
- gvfsdaemondbus.c gvfsdaemondbus.h \
- gvfsiconloadable.c gvfsiconloadable.h \
- gvfsuriutils.c gvfsuriutils.h \
- gvfsurimapper.c gvfsurimapper.h \
- $(URI_PARSER_SOURCES) \
- $(NULL)
-
-vfslibs = \
- $(top_builddir)/common/libgvfscommon.la \
- $(GLIB_LIBS) \
- $(NULL)
-
-## Dynamic client lib
-
-giomodules_LTLIBRARIES = libgvfsdbus.la
-
-libgvfsdbus_la_LDFLAGS = $(module_flags)
-libgvfsdbus_la_SOURCES = $(vfssources)
-libgvfsdbus_la_LIBADD = $(vfslibs) ../metadata/libmetadata.la
-
-noinst_PROGRAMS = test-uri-utils
-
-test_uri_utils_SOURCES = test-uri-utils.c gvfsuriutils.c gvfsuriutils.h
-test_uri_utils_LDADD = $(vfslibs)
-test_uri_utils_CFLAGS = $(AM_CPPFLAGS)
-
-if USE_FUSE
-
-## FUSE daemon
-
-libexec_PROGRAMS = gvfsd-fuse
-
-gvfsd_fuse_SOURCES = \
- gvfsfusedaemon.c
-
-gvfsd_fuse_CFLAGS = \
- -I$(top_srcdir) \
- -I$(top_srcdir)/common \
- -I$(top_builddir)/common \
- $(GLIB_CFLAGS) $(FUSE_CFLAGS) \
- -UG_LOG_DOMAIN
-
-gvfsd_fuse_LDADD = \
- $(top_builddir)/common/libgvfscommon.la \
- $(GLIB_LIBS) $(FUSE_LIBS)
-
-
-# FIXME: reusing USE_LIBSYSTEMD_LOGIN as systemd has no universal header or pkg-config file
-if USE_LIBSYSTEMD_LOGIN
-
-# FIXME: hardcoded path (systemd doesn't use lib64)
-tmpfilesddir = $(prefix)/lib/tmpfiles.d
-tmpfilesd_DATA = gvfsd-fuse-tmpfiles.conf
-
-endif
-
-endif
-
-
-EXTRA_DIST = \
- gvfsd-fuse-tmpfiles.conf \
- meson.build \
- symbol.map \
- $(NULL)