-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure.ac
36 lines (29 loc) · 1.19 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
dnl Process this file with autoconf to produce a configure script.
dnl
dnl This file is free software; as a special exception the author gives
dnl unlimited permission to copy and/or distribute it, with or without
dnl modifications, as long as this notice is preserved.
dnl
dnl This program is distributed in the hope that it will be useful, but
dnl WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
dnl implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
m4_include([version.m4])
AC_INIT([blackjack],[libreblackjackversion],[[email protected]])
AM_INIT_AUTOMAKE
# AM_GNU_GETTEXT([external])
AC_CONFIG_SRCDIR([src/main.cpp])
AC_CANONICAL_HOST
AC_PROG_CXX
AC_CHECK_HEADER([readline/readline.h])
AC_CHECK_LIB([readline], [readline])
# default is optimized without debugging symbols
AS_IF([test "$CXXFLAGS" = "-g -O2"], [CXXFLAGS="-O3"])
AC_MSG_NOTICE([creating version-conf.h])
cat << EOF > src/version-conf.h
#define COMPILATION_ARCH "${host_os} ${host_cpu}"
#define COMPILER_VERSION "`$CXX --version | head -n1`"
#define COMPILER_CFLAGS "$CFLAGS"
EOF
#AC_CONFIG_FILES([Makefile doc/Makefile po/Makefile.in])
AC_CONFIG_FILES([Makefile doc/Makefile])
AC_OUTPUT