Merge branch 'master' of ssh://git.codethink.co.uk/git/atspi-dbus into mgorse
authorMike Gorse <mgorse@boston.site>
Fri, 25 Jul 2008 22:41:11 +0000 (17:41 -0500)
committerMike Gorse <mgorse@boston.site>
Fri, 25 Jul 2008 22:41:11 +0000 (17:41 -0500)
cspi/Makefile.am
cspi/spi-accessible.c
spi-common/Makefile.am
spi-common/spi-stateset.c [moved from cspi/spi-stateset.c with 100% similarity]
spi-common/spi-stateset.h [moved from cspi/spi-stateset.h with 98% similarity]

index 1b2275c..58a184c 100644 (file)
@@ -28,7 +28,6 @@ libcspi_la_SOURCES =          \
        spi-main.c              \
        spi-registry.c \
        spi-selection.c \
-       spi-stateset.c \
        spi-streamablecontent.c \
        spi-table.c \
        spi-text.c \
index 958c20c..7e324fa 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 #include <stdlib.h> /* for malloc */
-#include "spi-stateset.h"
+#include "spi-common/spi-stateset.h"
 #include <cspi/spi-private.h>
 
 static const char *role_names [] =
index 5028bef..13c67bf 100644 (file)
@@ -1,6 +1,7 @@
 noinst_LTLIBRARIES = libspicommon.la
 
 libspicommon_la_CFLAGS = $(DBUS_GLIB_CFLAGS)\
+                       $(ATK_CFLAGS) \
                        -DATSPI_INTROSPECTION_PATH=\"$(DEFAULT_ATSPI_INTROSPECTION_PATH)\"\
                        -I$(top_builddir)\
                        -I$(top_srcdir)
@@ -14,6 +15,7 @@ spicommoninclude_HEADERS =            \
        generated-types.h \
        keymasks.h \
        spi-dbus.h \
+       spi-stateset.h \
        spi-types.h
 
 BUILT_SOURCES = generated-types.h
@@ -25,7 +27,9 @@ libspicommon_la_SOURCES =     \
        event-types.h           \
        spi-types.h             \
        spi-dbus.h              \
-       spi-dbus.c
+       spi-dbus.c \
+       spi-stateset.h \
+       spi-stateset.c
 
 generated-types.h: $(top_srcdir)/xml/spec.xml $(top_srcdir)/tools/c-constants-generator.xsl
        xsltproc --stringparam mixed-case-prefix Accessibility_ $(top_srcdir)/tools/c-constants-generator.xsl $< >$@
similarity index 98%
rename from cspi/spi-stateset.h
rename to spi-common/spi-stateset.h
index 99c4e9f..08e7148 100644 (file)
@@ -24,7 +24,7 @@
 #ifndef SPI_STATE_SET_H_
 #define SPI_STATE_SET_H_
 
-#include "spi-private.h"
+#include "spi-types.h"
 #include <atk/atkstateset.h>
 
 G_BEGIN_DECLS