summaryrefslogtreecommitdiffstats
path: root/configure.in
blob: e510884665535c3c443e1c0afa1b6a9ca2c2d189 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

#AC_PREREQ(2.59)
AC_INIT(irssi-python, test3, loafier@gmail.com)
AC_CONFIG_SRCDIR([src/pycore.c])
AC_CONFIG_HEADER([pyirssi-config.h])
AM_INIT_AUTOMAKE([irssi-python], [test3])
AM_DISABLE_STATIC
AM_PROG_LIBTOOL

# Options
AC_ARG_WITH(irssi,
[  --with-irssi=path/to/distro        Specify location of Irssi distribution directory],
    irssi_path=$withval,
	irssi_path="")

# Checks for programs.
AC_PROG_CC
AC_PROG_MAKE_SET

# Checks for libraries.
AM_PATH_PYTHON
AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for python, bypassing python-config])
AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])
AS_IF([test -z "$PYTHON_INCLUDE"], [
  AS_IF([test -z "$PYTHON_CONFIG"], [
    AC_PATH_PROGS([PYTHON_CONFIG],
                  [python$PYTHON_VERSION-config python-config],
                  [no],
                  [`dirname $PYTHON`])
    AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON.])])
  ])
  AC_MSG_CHECKING([python include flags])
  PYTHON_INCLUDE=`$PYTHON_CONFIG --includes`
  AC_MSG_RESULT([$PYTHON_INCLUDE])
  AC_MSG_CHECKING([python libs flags])
  LDFLAGS=`$PYTHON_CONFIG --libs`
  AC_MSG_RESULT([$LDFLAGS])
])
#AC_PYTHON_DEVEL
AM_PATH_GLIB_2_0(2.0.0) 

# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([string.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_SIZE_T

# Checks for library functions.
AC_TYPE_SIGNAL
AC_CHECK_FUNCS([memset strchr strrchr])

#check Irssi path
echo irssi_path = $irssi_path
if test -z $irssi_path; then
    AC_MSG_ERROR([Path to Irssi distribution not specified. See --with-irssi option.])
fi

# fix relative paths (from modules/icb)
old=`pwd`
irssi_path=`eval cd $irssi_path; pwd`
cd $old

IRSSI_DIST=$irssi_path
AC_SUBST([IRSSI_DIST])
IRSSI_PYTHON_INCLUDES="-I${IRSSI_DIST} -I${IRSSI_DIST}/src -I${IRSSI_DIST}/src/fe-common/core \
-I${IRSSI_DIST}/src/core -I${IRSSI_DIST}/src/fe-text -I${IRSSI_DIST}/src/irc \
-I${IRSSI_DIST}/src/irc/core -I${IRSSI_DIST}/src/irc/dcc -I${IRSSI_DIST}/src/irc/notifylist \
-I${PYTHON_INCLUDE} \
${PYTHON_CPPFLAGS} ${GLIB_CFLAGS}"

AC_SUBST([IRSSI_PYTHON_INCLUDES])

dnl * gcc specific options
if test "x$ac_cv_prog_gcc" = "xyes"; then
    CFLAGS="$CFLAGS -Wall -fno-strict-aliasing"
fi

#AC_CONFIG_FILES([src/Makefile src/objects/Makefile])
#AC_OUTPUT([Makefile src/Makefile src/objects/Makefile])
#AC_OUTPUT([Makefile src/Makefile src/objects/Makefile])
AC_CONFIG_FILES([Makefile scripts/Makefile  src/Makefile src/objects/Makefile])
AC_OUTPUT