-
Notifications
You must be signed in to change notification settings - Fork 15
/
configure.ac
51 lines (46 loc) · 1.59 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
AC_INIT([libvsqlite++],[0.3.13], [[email protected]], [vsqlite++], [http://github.com/vinzenz/vsqlite--])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE
AC_CONFIG_MACRO_DIR([m4])
AC_PROG_CXX
AC_PROG_LIBTOOL
LT_INIT
dnl -lboost_system -lboost_filesystem
BOOST_REQUIRE([1.33.0])
BOOST_FILESYSTEM
dnl -------------------------------------------
dnl test "$prefix" = "NONE" && prefix=/usr/local
dnl test "$exec_prefix" = "NONE" && exec_prefix=/usr/local
dnl test "$sharedstatedir" = '${prefix}/com' && sharedstatedir=/var
dnl test "$localstatedir" = '${prefix}/var' && localstatedir=/var
dnl
dnl if test "$prefix" = /usr; then
dnl if test "${sysconfdir}" = "\${prefix}/etc"; then
dnl sysconfdir=/etc
dnl fi
dnl if test "$sharedstatedir" = '\${prefix}/com'; then
dnl sharedstatedir=/var
dnl fi
dnl if test "$localstatedir" = '\${prefix}/var'; then
dnl localstatedir=/var
dnl fi
dnl fi
dnl
dnl if test "$libdir" = "\${exec_prefix}/lib"; then
dnl if test -e ${exec_prefix}/lib64; then
dnl libdir='${exec_prefix}/lib64'
dnl fi
dnl fi
dnl -------------------------------------------
AC_CONFIG_FILES([Makefile include/Makefile])
AC_OUTPUT
dnl -------------------------------------------
dnl echo "prefix..........."${prefix}
dnl echo "exec_prefix......"${exec_prefix}
dnl echo "bindir..........."${bindir}
dnl echo "libdir..........."${libdir}
dnl echo "sharedstatedir..."${sharedstatedir}
dnl echo "localstatedir...."${localstatedir}
dnl echo "sysconfdir......."${sysconfdir}
dnl echo "oldsysconfdir...."${old_sys_conf_dir}
dnl -------------------------------------------