OSDN Git Service

Merge remote-tracking branch 'refs/remotes/origin/master'
[pinky-bar/pinky-bar.git] / configure.ac
1 # This file is processed by autoconf to create a configure script
2 AC_INIT([pinkybar], [1.0.0])
3 AC_CONFIG_AUX_DIR([temp_dir])
4 AC_CONFIG_MACRO_DIR([m4])
5 AC_CONFIG_HEADERS([src/config.h])
6 # -Werror -Wportability
7 AM_INIT_AUTOMAKE([1.13 -Wall no-define foreign subdir-objects dist-xz no-dist-gzip std-options])
8
9 AM_SILENT_RULES([yes])
10 {perl will replace this line}
11 # With the addition of more runtime compile and
12 # link tests, this option is no longer necessary.
13 # Any compiler and C library succeeding to pass the
14 # tests will be able to compile and run the
15 # program flawlessly.
16 # If you use OpenBSD uncomment the AC_PROG_CC([])
17 # line below. Make sure that you have the latest gcc/llvm
18 #AC_PROG_CC([egcc clang llvm-gcc gcc])
19
20 AC_PROG_CC_C99
21 AC_C_CONST
22 AC_HEADER_STDC
23 AM_PROG_CC_C_O
24 AM_PROG_AS
25 AC_PROG_CXX
26
27 # AM_EXTRA_RECURSIVE_TARGETS([ncurses])
28
29 # The linker flags tests in m4 dir
30 TEST_SOME_FUNCS
31 TEST_NET
32 TEST_PCI
33 TEST_X11
34 TEST_ALSA
35 TEST_MPD
36 TEST_DVD
37 TEST_SENSORS
38 TEST_TYPEZ
39 TEST_CURLL
40 TEST_PERL
41 TEST_PYTHON
42 TEST_LUA
43 TEST_RUBY
44 TEST_CFLAGZ
45 TEST_R
46 TEST_ASSEMBLY
47 TEST_ECL
48 TEST_OCAML
49 TEST_RUST
50 TEST_GO
51 TEST_CPP
52 TEST_SLANG
53 TEST_TCL
54 TEST_SQLITE
55
56 AC_CONFIG_FILES([
57   Makefile
58   src/Makefile
59 ])
60
61 AC_OUTPUT
62
63 echo
64 echo 'Now type \"make\" and \"make install\" afterwards'
65 echo