Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
geoclue
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
28
Issues
28
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
geoclue
geoclue
Commits
8a887feb
Commit
8a887feb
authored
Aug 14, 2007
by
Keith Preston
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clean up for system bus code
parent
23b38031
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
45 additions
and
13 deletions
+45
-13
backend/position_manual/geoclue_position_server_manual.h
backend/position_manual/geoclue_position_server_manual.h
+2
-0
configure.ac
configure.ac
+1
-1
geoclue/Makefile.am
geoclue/Makefile.am
+2
-1
geoclue/find.c
geoclue/find.c
+1
-0
geoclue/find.h
geoclue/find.h
+0
-1
geoclue/geoclue.c
geoclue/geoclue.c
+27
-0
geoclue/geoclue.h
geoclue/geoclue.h
+8
-6
geoclue/geocode.c
geoclue/geocode.c
+1
-0
geoclue/geocode.h
geoclue/geocode.h
+0
-1
geoclue/map.c
geoclue/map.c
+1
-1
geoclue/map.h
geoclue/map.h
+0
-1
geoclue/position.c
geoclue/position.c
+1
-0
geoclue/position.h
geoclue/position.h
+1
-1
No files found.
backend/position_manual/geoclue_position_server_manual.h
View file @
8a887feb
...
...
@@ -25,6 +25,8 @@
#include <dbus/dbus-glib.h>
#include <glib.h>
#include <config.h>
#define GEOCLUE_POSITION_DBUS_SERVICE "org.freedesktop.geoclue.position.manual"
#define GEOCLUE_POSITION_DBUS_PATH "/org/freedesktop/geoclue/position/manual"
#define GEOCLUE_POSITION_DBUS_INTERFACE "org.freedesktop.geoclue.position"
...
...
configure.ac
View file @
8a887feb
...
...
@@ -2,7 +2,7 @@ AC_INIT(geoclue/position.c)
PACKAGE=geoclue
VERSION=0.
7
VERSION=0.
8
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
...
...
geoclue/Makefile.am
View file @
8a887feb
...
...
@@ -48,7 +48,8 @@ libgeoclue_la_SOURCES = position.c \
map_gtk.c
\
map_gtk_layout.c
\
map_signal_marshal.c
\
geocode.c
geocode.c
\
geoclue.c
libgeoclue_la_CFLAGS
=
$(DEPS_CFLAGS)
-I
$(top_srcdir)
libgeoclue_la_LIBADD
=
$(DEPS_LIBS)
...
...
geoclue/find.c
View file @
8a887feb
...
...
@@ -29,6 +29,7 @@
#include <stdlib.h>
#include <find_signal_marshal.h>
#include <geoclue_master_client_glue.h>
#include <config.h>
#define GEOCLUE_FIND_DBUS_INTERFACE "org.freedesktop.geoclue.find"
...
...
geoclue/find.h
View file @
8a887feb
...
...
@@ -20,7 +20,6 @@
#define __ORG_FREEDESKTOP_GEOCLUE_FIND_GEOCLUE_FIND_H__
#include <dbus/dbus-glib.h>
#include <config.h>
G_BEGIN_DECLS
...
...
geoclue/geoclue.c
0 → 100644
View file @
8a887feb
/* Geoclue - A DBus api and wrapper for geography information
* Copyright (C) 2006-2007 by Garmin Ltd. or its subsidiaries
*
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2 as published by the Free Software Foundation;
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <geoclue.h>
#include <config.h>
DBusBusType
geoclue_get_dbus_bus_type
()
{
return
GEOCLUE_DBUS_BUS
;
}
\ No newline at end of file
geoclue/geoclue.h
View file @
8a887feb
...
...
@@ -50,13 +50,15 @@
**/
DBusBusType
geoclue_get_dbus_bus_type
()
{
return
GEOCLUE_DBUS_BUS
;
}
#include <glib/gmacros.h>
#include <dbus/dbus-shared.h>
G_BEGIN_DECLS
DBusBusType
geoclue_get_dbus_bus_type
();
G_END_DECLS
#endif
\ No newline at end of file
#endif
/* __ORG_FREEDESKTOP_GEOCLUE_GEOCLUE_H__ */
\ No newline at end of file
geoclue/geocode.c
View file @
8a887feb
...
...
@@ -27,6 +27,7 @@
#include <geocode_client_glue.h>
#include <stdio.h>
#include <geoclue_master_client_glue.h>
#include <config.h>
#define GEOCLUE_GEOCODE_DBUS_SERVICE "org.freedesktop.geoclue.geocode.yahoo"
#define GEOCLUE_GEOCODE_DBUS_PATH "/org/freedesktop/geoclue/geocode/yahoo"
...
...
geoclue/geocode.h
View file @
8a887feb
...
...
@@ -20,7 +20,6 @@
#define __ORG_FREEDESKTOP_GEOCLUE_GEOCODE_GEOCLUE_GEOCODE_H__
#include <dbus/dbus-glib.h>
#include <config.h>
G_BEGIN_DECLS
...
...
geoclue/map.c
View file @
8a887feb
...
...
@@ -29,7 +29,7 @@
#include <map_signal_marshal.h>
#include <geoclue_master_client_glue.h>
#include <config.h>
#define GEOCLUE_MAP_DBUS_INTERFACE "org.freedesktop.geoclue.map"
...
...
geoclue/map.h
View file @
8a887feb
...
...
@@ -20,7 +20,6 @@
#define __ORG_FREEDESKTOP_GEOCLUE_GEOCLUE_MAP_H__
#include <dbus/dbus-glib.h>
#include <config.h>
G_BEGIN_DECLS
...
...
geoclue/position.c
View file @
8a887feb
...
...
@@ -30,6 +30,7 @@
#include <stdlib.h>
#include <position_signal_marshal.h>
#include <string.h>
#include <config.h>
#define GEOCLUE_POSITION_DBUS_INTERFACE "org.freedesktop.geoclue.position"
#define GEOCLUE_MASTER_DBUS_SERVICE "org.freedesktop.geoclue.master"
...
...
geoclue/position.h
View file @
8a887feb
...
...
@@ -20,7 +20,7 @@
#define __ORG_FREEDESKTOP_GEOCLUE_POSITION_GEOCLUE_POSITION_H__
#include <dbus/dbus-glib.h>
#include <config.h>
/** \page Position
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment