comparison dep/animone/Makefile.am @ 266:1a6a5d3a94cd

dep/animone: make bsd.cc and x11.cc actually work apparently I broke these, and even now the x11 code *still* doesn't want to work correctly (at least on FreeBSD). half of the PID response codes are just 0 or the PID for the X server itself... wtf? maybe dwm just doesn't support the XRes extension, or I'm just stupid. i don't know.
author Paper <paper@paper.us.eu.org>
date Thu, 11 Apr 2024 22:05:41 -0400
parents 862d0d8619f6
children ab7ff259b4ca
comparison
equal deleted inserted replaced
265:ff0b2052b234 266:1a6a5d3a94cd
8 include/animone/media.h \ 8 include/animone/media.h \
9 include/animone/player.h \ 9 include/animone/player.h \
10 include/animone/types.h 10 include/animone/types.h
11 11
12 noinst_HEADERS = \ 12 noinst_HEADERS = \
13 include/animone/fd/kvm.h \ 13 include/animone/fd/bsd.h \
14 include/animone/fd/proc.h \ 14 include/animone/fd/proc.h \
15 include/animone/fd/win32.h \ 15 include/animone/fd/win32.h \
16 include/animone/fd/xnu.h \ 16 include/animone/fd/xnu.h \
17 include/animone/util/osx.h \ 17 include/animone/util/osx.h \
18 include/animone/util/win32.h \ 18 include/animone/util/win32.h \
37 37
38 if BUILD_LINUX 38 if BUILD_LINUX
39 files_linux = src/fd/proc.cc 39 files_linux = src/fd/proc.cc
40 endif 40 endif
41 41
42 # these should be in standard locations anyway 42 # BSD stuff
43 if BUILD_BSD
44
45 files_bsd = src/fd/bsd.cc
46
47 endif
48
43 if BUILD_LIBUTIL 49 if BUILD_LIBUTIL
50
44 libs_libutil = -lutil 51 libs_libutil = -lutil
52
45 endif 53 endif
46 54
47 if BUILD_LIBKVM 55 if BUILD_LIBKVM
48 files_libkvm = src/fd/kvm.cc 56
49 libs_libkvm = -lkvm 57 libs_libkvm = -lkvm
58
50 endif 59 endif
51 60
52 if BUILD_XCB 61 if BUILD_XCB
53 files_x11 = src/win/x11.cc 62 files_x11 = src/win/x11.cc
54 cflags_x11 = $(XCB_CFLAGS) 63 cflags_x11 = $(XCB_CFLAGS)
66 src/util.cc \ 75 src/util.cc \
67 src/win.cc \ 76 src/win.cc \
68 $(files_win) \ 77 $(files_win) \
69 $(files_osx) \ 78 $(files_osx) \
70 $(files_linux) \ 79 $(files_linux) \
71 $(files_libutil) \ 80 $(files_bsd) \
72 $(files_libkvm) \
73 $(files_x11) \ 81 $(files_x11) \
74 $(files_wayland) 82 $(files_wayland)
75 83
76 libanimone_la_CPPFLAGS = -I$(top_srcdir)/include $(DEFS) 84 libanimone_la_CPPFLAGS = -I$(top_srcdir)/include $(DEFS)
77 85