diff options
| author | Joshua Watt <JPEWhacker@gmail.com> | 2019-11-05 09:09:50 -0600 |
|---|---|---|
| committer | Joshua Watt <JPEWhacker@gmail.com> | 2019-11-06 08:24:14 -0600 |
| commit | e7d88f35eb89cf0cc77cbddd834cacc63683a9cc (patch) | |
| tree | 7590f5dcfe7172dea1cf3ed5fe15f5d2405db7b0 /Makefile.am | |
| parent | scanner: Add configure check for strndup (diff) | |
| download | wayland-e7d88f35eb89cf0cc77cbddd834cacc63683a9cc.tar wayland-e7d88f35eb89cf0cc77cbddd834cacc63683a9cc.tar.gz wayland-e7d88f35eb89cf0cc77cbddd834cacc63683a9cc.tar.bz2 wayland-e7d88f35eb89cf0cc77cbddd834cacc63683a9cc.tar.lz wayland-e7d88f35eb89cf0cc77cbddd834cacc63683a9cc.tar.xz wayland-e7d88f35eb89cf0cc77cbddd834cacc63683a9cc.tar.zst wayland-e7d88f35eb89cf0cc77cbddd834cacc63683a9cc.zip | |
Move wl_priv_signal to wayland-server-private.h
Including wayland-server-core.h in wayland-private.h is problematic
because wayland-private.h is included by wayland-scanner which should be
able to build against non-POSIX platforms (e.g. MinGW). The only reason
that wayland-server-core.h was included in wayland-private.h was for the
wl_private_signal definitions, so move those to a
wayland-server-private.h file that can be included by both
wayland-server.c and the tests.
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Diffstat (limited to 'Makefile.am')
| -rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 0d76865..6c087cd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -56,7 +56,8 @@ libwayland_private_la_SOURCES = \ src/connection.c \ src/wayland-os.c \ src/wayland-os.h \ - src/wayland-private.h + src/wayland-private.h \ + src/wayland-server-private.h include_HEADERS = \ src/wayland-util.h \ |
