comparison configure.ac @ 258:862d0d8619f6

*: HUUUGE changes animia has been renamed to animone, so instead of thinking of a health condition, you think of a beautiful flower :) I've also edited some of the code for animone, but I have no idea if it even works or not because I don't have a mac or windows machine lying around. whoops! ... anyway, all of the changes divergent from Anisthesia are now licensed under BSD. it's possible that I could even rewrite most of the code to where I don't even have to keep the MIT license, but that's thinking too far into the future I've been slacking off on implementing the anime seasons page, mostly out of laziness. I think I'd have to create another db file specifically for the seasons anyway, this code is being pushed *primarily* because the hard drive it's on is failing! yay :)
author Paper <paper@paper.us.eu.org>
date Mon, 01 Apr 2024 02:43:44 -0400
parents c130f47f6f48
children 9a04802848c0
comparison
equal deleted inserted replaced
257:699a20c57dc8 258:862d0d8619f6
1 AC_INIT([minori], [0.1.0-alpha.1]) 1 AC_INIT([minori], [0.1.0-alpha.1])
2 2
3 AC_CANONICAL_HOST 3 AC_CANONICAL_HOST
4 4
5 AC_CONFIG_SUBDIRS([dep/pugixml dep/animia dep/anitomy]) 5 AC_CONFIG_SUBDIRS([dep/pugixml dep/animone dep/anitomy])
6 AC_CONFIG_SRCDIR([src/main.cc]) 6 AC_CONFIG_SRCDIR([src/main.cc])
7 AC_CONFIG_AUX_DIR([build-aux]) 7 AC_CONFIG_AUX_DIR([build-aux])
8 AC_CONFIG_MACRO_DIRS([m4]) 8 AC_CONFIG_MACRO_DIRS([m4])
9 9
10 AM_INIT_AUTOMAKE([-Wall -Wportability foreign subdir-objects]) 10 AM_INIT_AUTOMAKE([-Wall -Wportability foreign subdir-objects])
17 dnl Init libtool 17 dnl Init libtool
18 AM_PROG_AR 18 AM_PROG_AR
19 LT_INIT 19 LT_INIT
20 20
21 dnl Qt? 21 dnl Qt?
22 AT_WITH_QT([widgets gui core], [], [], [have_qt=no], [have_qt=yes]) 22 have_qt=no
23 AX_HAVE_QT
23 24
24 AS_IF([test "x$have_qt" = "xno"], [AC_MSG_ERROR([*** Qt not found.])]) 25 AS_IF([test "x$have_qt" = "xno"], [AC_MSG_ERROR([*** Qt not found.])])
26 AC_SUBST([QT_LRELEASE])
27 AC_SUBST([QT_LUPDATE])
28 AC_SUBST([QT_MOC])
29 AC_SUBST([QT_RCC])
25 30
26 dnl need this for moc 31 dnl need this for moc
27 AC_PROG_MKDIR_P 32 AC_PROG_MKDIR_P
28 AC_SUBST([MKDIR_P]) 33 AC_SUBST([MKDIR_P])
29 34