comparison dep/animone/configure.ac @ 342:adb79bdde329

dep/animone: fix tons of issues for example, the window ID stuff was just... completely wrong. since we're supporting multiple different window systems, it *has* to be a union rather than just a single integer type. HWND is also not a DWORD, it's a pointer(!), so now it's stored as a std::uintptr_t. (this probably breaks things)
author Paper <paper@paper.us.eu.org>
date Thu, 20 Jun 2024 03:03:05 -0400
parents f63dfa309380
children
comparison
equal deleted inserted replaced
341:052ec053ee37 342:adb79bdde329
1 AC_INIT([animone], [2.0.0]) 1 AC_INIT([animone], [0.2.0])
2 2
3 AC_CANONICAL_HOST 3 AC_CANONICAL_HOST
4 4
5 AC_CONFIG_SRCDIR([src/animone.cc]) 5 AC_CONFIG_SRCDIR([src/animone.cc])
6 AC_CONFIG_AUX_DIR([build-aux]) 6 AC_CONFIG_AUX_DIR([build-aux])
10 10
11 # Do we have a C++17 compiler 11 # Do we have a C++17 compiler
12 AC_PROG_CXX 12 AC_PROG_CXX
13 13
14 AM_PROG_AR 14 AM_PROG_AR
15 LT_INIT 15 LT_INIT([win32-dll])
16 16
17 build_win32=no 17 build_win32=no
18 build_osx=no 18 build_osx=no
19 build_linux=no 19 build_linux=no
20 build_libutil=no 20 build_libutil=no
68 AM_CONDITIONAL([BUILD_WIN], [test "x$build_windows" = "xyes"]) 68 AM_CONDITIONAL([BUILD_WIN], [test "x$build_windows" = "xyes"])
69 AM_CONDITIONAL([BUILD_OSX], [test "x$build_osx" = "xyes"]) 69 AM_CONDITIONAL([BUILD_OSX], [test "x$build_osx" = "xyes"])
70 AM_CONDITIONAL([BUILD_LINUX], [test "x$build_linux" = "xyes"]) 70 AM_CONDITIONAL([BUILD_LINUX], [test "x$build_linux" = "xyes"])
71 AM_CONDITIONAL([BUILD_FREEBSD], [test "x$build_libutil" = "xyes"]) 71 AM_CONDITIONAL([BUILD_FREEBSD], [test "x$build_libutil" = "xyes"])
72 AM_CONDITIONAL([BUILD_OPENBSD], [test "x$build_kvm" = "xyes"]) 72 AM_CONDITIONAL([BUILD_OPENBSD], [test "x$build_kvm" = "xyes"])
73 AM_CONDITIONAL([BUILD_BSD], [test "x$build_bsd" = "xyes"])
74 73
75 AM_CONDITIONAL([BUILD_XCB], [test "x$build_x11" = "xyes"]) 74 AM_CONDITIONAL([BUILD_XCB], [test "x$build_x11" = "xyes"])
76 75
77 AC_CONFIG_FILES([Makefile]) 76 AC_CONFIG_FILES([Makefile])
78 AC_OUTPUT 77 AC_OUTPUT