Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
gnome-bluetooth
Commits
53f5edc3
Commit
53f5edc3
authored
Jun 26, 2009
by
Bastien Nocera
Browse files
Add non-working Introspection support
parent
48c0d5c9
Changes
4
Hide whitespace changes
Inline
Side-by-side
acinclude.m4
0 → 100644
View file @
53f5edc3
dnl -*- mode: autoconf -*-
dnl Copyright 2009 Johan Dahlin
dnl
dnl This file is free software; the author(s) gives unlimited
dnl permission to copy and/or distribute it, with or without
dnl modifications, as long as this notice is preserved.
dnl
# serial 1
m4_define([_GOBJECT_INTROSPECTION_CHECK_INTERNAL],
[
AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
AC_BEFORE([LT_INIT],[$0])dnl setup libtool first
dnl enable/disable introspection
m4_if([$2], [require],
[dnl
enable_introspection=yes
],[dnl
AC_ARG_ENABLE(introspection,
AS_HELP_STRING([--enable-introspection[=@<:@no/auto/yes@:>@]],
[Enable introspection for this build]),,
[enable_introspection=auto])
])dnl
AC_MSG_CHECKING([for gobject-introspection])
dnl presence/version checking
AS_CASE([$enable_introspection],
[no], [dnl
found_introspection="no (disabled, use --enable-introspection to enable)"
],dnl
[yes],[dnl
PKG_CHECK_EXISTS([gobject-introspection-1.0],,
AC_MSG_ERROR([gobject-introspection-1.0 is not installed]))
PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1],
found_introspection=yes,
AC_MSG_ERROR([You need to have gobject-introspection >= $1 installed to build AC_PACKAGE_NAME]))
],dnl
[auto],[dnl
PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1], found_introspection=yes, found_introspection=no)
],dnl
[dnl
AC_MSG_ERROR([invalid argument passed to --enable-introspection, should be one of @<:@no/auto/yes@:>@])
])dnl
AC_MSG_RESULT([$found_introspection])
INTROSPECTION_SCANNER=
INTROSPECTION_COMPILER=
INTROSPECTION_GENERATE=
INTROSPECTION_GIRDIR=
INTROSPECTION_TYPELIBDIR=
if test "x$found_introspection" = "xyes"; then
INTROSPECTION_SCANNER=`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0`
INTROSPECTION_COMPILER=`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0`
INTROSPECTION_GENERATE=`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0`
INTROSPECTION_GIRDIR=`$PKG_CONFIG --variable=girdir gobject-introspection-1.0`
INTROSPECTION_TYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)"
fi
AC_SUBST(INTROSPECTION_SCANNER)
AC_SUBST(INTROSPECTION_COMPILER)
AC_SUBST(INTROSPECTION_GENERATE)
AC_SUBST(INTROSPECTION_GIRDIR)
AC_SUBST(INTROSPECTION_TYPELIBDIR)
AM_CONDITIONAL(HAVE_INTROSPECTION, test "x$found_introspection" = "xyes")
])
dnl Usage:
dnl GOBJECT_INTROSPECTION_CHECK([minimum-g-i-version])
AC_DEFUN([GOBJECT_INTROSPECTION_CHECK],
[
_GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1])
])
dnl Usage:
dnl GOBJECT_INTROSPECTION_REQUIRE([minimum-g-i-version])
AC_DEFUN([GOBJECT_INTROSPECTION_REQUIRE],
[
_GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1], [require])
])
configure.ac
View file @
53f5edc3
...
...
@@ -125,6 +125,8 @@ AC_SUBST(DBUS_BINDING_TOOL)
GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`
AC_SUBST(GLIB_GENMARSHAL)
GOBJECT_INTROSPECTION_CHECK([0.6.3])
GNOME_COMMON_INIT
GNOME_DEBUG_CHECK
GNOME_COMPILE_WARNINGS([maximum])
...
...
lib/Makefile.am
View file @
53f5edc3
SUBDIRS
=
plugins
EXTRA_DIST
=
BUILT_GIRSOURCES
=
noinst_LTLIBRARIES
=
libcommon.la
lib_LTLIBRARIES
=
libgnome-bluetooth.la
...
...
@@ -44,6 +47,43 @@ gnomebluetooth_HEADERS = \
AM_CFLAGS
=
-I
$(srcdir)
$(LIBGNOMEBT_CFLAGS)
$(COMMON_CFLAGS)
$(WARN_CFLAGS)
$(DISABLE_DEPRECATED)
-DPLUGINDIR
=
\"
$(libdir)
/gnome-bluetooth/plugins
\"
BUILT_GIRSOURCES
+=
GnomeBluetooth-2.0.gir
GnomeBluetooth-2.0.gir
:
$(libgnome_bluetooth_la_SOURCES)
GnomeBluetooth-2.0.gir
:
$(gnomebluetooth_HEADERS)
GnomeBluetooth-2.0.gir
:
libgnome-bluetooth.la
GnomeBluetooth-2.0.gir
:
$(INTROSPECTION_SCANNER)
$(INTROSPECTION_SCANNER)
-v
--namespace
GnomeBluetooth
--nsversion
=
2.0
\
--add-include-path
=
$(srcdir)
--add-include-path
=
.
\
--include
=
GObject-2.0
\
--include
=
Gtk-2.0
\
--include
=
DBus-1.0
\
--libtool
=
"
$(LIBTOOL)
"
\
--library
=
gnome-bluetooth
\
--output
$@
\
--pkg
gobject-2.0
\
--pkg
gtk+-2.0
\
--pkg
dbus-glib-1
\
-I
$(top_srcdir)
\
$(LIBGNOMEBT_CFLAGS)
\
$(libgnome_bluetooth_la_SOURCES)
\
$(gnomebluetooth_HEADERS)
if
HAVE_INTROSPECTION
girdir
=
$(GIRDIR)
dist_gir_DATA
=
$(BUILT_GIRSOURCES)
EXTRA_DIST
+=
$(BUILT_GIRSOURCES)
typelibsdir
=
$(TYPELIBDIR)
typelibs_DATA
=
$(BUILT_GIRSOURCES:.gir=.typelib)
%.typelib
:
%.gir $(G_IR_COMPILER)
LD_LIBRARY_PATH
=
$
${
LD_LIBRARY_PATH
:+
$$LD_LIBRARY_PATH
:
}
.
$(INTROSPECTION_COMPILER)
--includedir
=
$(srcdir)
--includedir
=
.
$(G_IR_COMPILER_OPTS)
$<
-o
$(builddir)
/
$
(
@F
)
endif
# HAVE_INTROSPECTION
BUILT_SOURCES
=
marshal.h marshal.c
\
bluetooth-client-glue.h
\
bluetooth-agent-glue.h
\
...
...
@@ -65,7 +105,7 @@ test_deviceselection_LDADD = libgnome-bluetooth.la
test_plugins_LDADD
=
libcommon.la
EXTRA_DIST
=
marshal.list
\
EXTRA_DIST
+
=
marshal.list
\
bluetooth-client.xml
\
bluetooth-agent.xml
\
obex-agent.xml
\
...
...
lib/gnome-bluetooth.symbols
View file @
53f5edc3
...
...
@@ -15,3 +15,6 @@ bluetooth_chooser_button_available
bluetooth_client_get_type
bling_spinner_get_type
bluetooth_type_to_string
bluetooth_column_get_type
bluetooth_category_get_type
bluetooth_type_get_type
Write
Preview
Supports
Markdown
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