File: python.m4

package info (click to toggle)
libewf 20140608-6
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 18,440 kB
  • ctags: 8,253
  • sloc: ansic: 297,847; sh: 13,697; cpp: 4,381; makefile: 1,973; yacc: 1,094; lex: 390; python: 352; sed: 134
file content (192 lines) | stat: -rw-r--r-- 4,998 bytes parent folder | download | duplicates (2)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
dnl Functions for Python bindings
dnl
dnl Version: 20140529

dnl Function to check if the python binary is available
dnl "python python# python#.#"
AC_DEFUN([AX_PROG_PYTHON],
 [AC_CHECK_PROGS(
  [PYTHON],
  [python python2 python3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5])
 AS_IF(
  [test x"$PYTHON" != x],
  [ax_prog_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])" 2>/dev/null`;
  AC_SUBST(
   [PYTHON_VERSION],
   [$ax_prog_python_version])

  ax_prog_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)" 2>/dev/null`;
  AC_SUBST(
   [PYTHON_PLATFORM],
   [$ax_prog_python_platform])
  ],
  [AC_MSG_ERROR(
   [Unable to find python])
  ])
 AC_SUBST(
  [PYTHON],
  [$PYTHON])
 ])

dnl Function to check if the python-config binary is available
dnl "python$PYTHON_VERSION-config python-config"
AC_DEFUN([AX_PROG_PYTHON_CONFIG],
 [AS_IF(
  [test x"$PYTHON" != x],
  [AC_CHECK_PROGS(
   [PYTHON_CONFIG],
   [python$PYTHON_VERSION-config python-config])
  ])
 AS_IF(
  [test x"$PYTHON_CONFIG" = x],
  [AC_MSG_ERROR(
   [Unable to find python-config])
  ])
 AC_SUBST(
  [PYTHON_CONFIG],
  [$PYTHON_CONFIG])
 ])

dnl Function to detect if Python build environment is available
AC_DEFUN([AX_PYTHON_CHECK],
 [AX_PROG_PYTHON
 AX_PROG_PYTHON_CONFIG

 AS_IF(
  [test x"$PYTHON_CONFIG" != x],
  [dnl Check for Python includes
  PYTHON_INCLUDES=`$PYTHON_CONFIG --includes 2>/dev/null`;

  AC_MSG_CHECKING(
   [for Python includes])
  AC_MSG_RESULT(
   [$PYTHON_INCLUDES])

  dnl Check for Python libraries
  PYTHON_LDFLAGS=`$PYTHON_CONFIG --ldflags 2>/dev/null`;

  AC_MSG_CHECKING(
   [for Python libraries])
  AC_MSG_RESULT(
   [$PYTHON_LDFLAGS])

  dnl Check for the existence of Python.h
  BACKUP_CPPFLAGS="$CPPFLAGS"
  CPPFLAGS="$CPPFLAGS $PYTHON_INCLUDES"

  AC_CHECK_HEADERS(
   [Python.h],
   [ac_cv_header_python_h=yes],
   [ac_cv_header_python_h=no])

  CPPFLAGS="$BACKUP_CPPFLAGS"
 ])

 AS_IF(
  [test x"$ac_cv_header_python_h" != xyes],
  [ac_cv_enable_python=no],
  [ac_cv_enable_python=$PYTHON_VERSION
  AC_SUBST(
   [PYTHON_CPPFLAGS],
   [$PYTHON_INCLUDES])

  AC_SUBST(
   [PYTHON_LDFLAGS],
   [$PYTHON_LDFLAGS])

  dnl Check for Python prefix
  AS_IF(
   [test "x$ac_cv_with_pyprefix" = x || test "x$ac_cv_with_pyprefix" = xno],
   [ax_python_prefix="\${prefix}"],
   [ax_python_prefix=`$PYTHON_CONFIG --prefix 2>/dev/null`])

  AC_SUBST(
   [PYTHON_PREFIX],
   [$ax_python_prefix])

  dnl Check for Python exec-prefix
  AS_IF(
   [test "x$ac_cv_with_pyprefix" = x || test "x$ac_cv_with_pyprefix" = xno],
   [ax_python_exec_prefix="\${exec_prefix}"],
   [ax_python_exec_prefix=`$PYTHON_CONFIG --exec-prefix 2>/dev/null`])

  AC_SUBST(
   [PYTHON_EXEC_PREFIX],
   [$ax_python_exec_prefix])

  dnl Check for Python library directory
  ax_python_pythondir_suffix=`$PYTHON -c "import sys; import distutils.sysconfig; sys.stdout.write(distutils.sysconfig.get_python_lib(0, 0, prefix=''))" 2>/dev/null`;

  AS_IF(
   [test "x$ac_cv_with_pythondir" = x || test "x$ac_cv_with_pythondir" = xno],
   [AS_IF(
    [test "x$ac_cv_with_pyprefix" = x || test "x$ac_cv_with_pyprefix" = xno],
    [ax_python_pythondir="$ax_python_prefix/$ax_python_pythondir_suffix"],
    [ax_python_pythondir=`$PYTHON -c "import distutils.sysconfig; print distutils.sysconfig.get_python_lib() " 2>/dev/null`])],
   [ax_python_pythondir=$ac_cv_with_pythondir])

  AC_SUBST(
   [pythondir],
   [$ax_python_pythondir])

  dnl Check for Python platform specific library directory
  ax_python_pyexecdir_suffix=`$PYTHON -c "import sys; import distutils.sysconfig; sys.stdout.write(distutils.sysconfig.get_python_lib(1, 0, prefix=''))" 2>/dev/null`;
  ax_python_library_dir=`$PYTHON -c "import distutils.sysconfig; print distutils.sysconfig.get_python_lib(True) " 2>/dev/null`;

  AS_IF(
   [test "x$ac_cv_with_pyprefix" = x || test "x$ac_cv_with_pyprefix" = xno],
   [ax_python_pyexecdir="$ax_python_exec_prefix/$ax_python_pyexecdir_suffix"],
   [ax_python_pyexecdir=$ax_python_library_dir])

  AC_SUBST(
   [pyexecdir],
   [$ax_python_pyexecdir])

  AC_SUBST(
   [PYTHON_LIBRARY_DIR],
   [$ax_python_pyexecdir_suffix])

  AC_SUBST(
   [PYTHON_PACKAGE_DIR],
   [$ax_python_library_dir])
  ])
 ])

dnl Function to detect if to enable Python
AC_DEFUN([AX_PYTHON_CHECK_ENABLE],
 [dnl Deprecated way of enabling Python bindings
 AX_COMMON_ARG_ENABLE(
  [python],
  [python],
  [build Python bindings],
  [no])
 AX_COMMON_ARG_WITH(
  [pythondir],
  [pythondir],
  [use to specify the Python directory (pythondir)],
  [no],
  [no])
 AX_COMMON_ARG_WITH(
  [pyprefix],
  [pyprefix],
  [use `python-config --prefix' to determine the prefix of pythondir instead of --prefix],
  [no],
  [no])

 AS_IF(
  [test "x$ac_cv_enable_python" != xno],
  [AX_PYTHON_CHECK])

 AS_IF(
  [test "x$ac_cv_enable_python" != xno],
  [AC_DEFINE(
   [HAVE_PYTHON],
   [1],
   [Define to 1 if you have Python])
  ])

 AM_CONDITIONAL(
  HAVE_PYTHON,
  [test "x$ac_cv_enable_python" != xno])
])