File: perl.m4

package info (click to toggle)
libgetdata 0.11.0-17
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,144 kB
  • sloc: ansic: 100,814; cpp: 4,843; fortran: 4,548; f90: 2,561; python: 2,406; perl: 2,274; makefile: 1,487; php: 1,465; sh: 86
file content (217 lines) | stat: -rw-r--r-- 7,007 bytes parent folder | download | duplicates (3)
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
dnl Copyright (C) 2011-2013, 2015, 2016, 2018 D. V. Wiebe
dnl
dnl llllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll
dnl
dnl This file is part of the GetData project.
dnl
dnl GetData is free software; you can redistribute it and/or modify it under
dnl the terms of the GNU Lesser General Public License as published by the
dnl Free Software Foundation; either version 2.1 of the License, or (at your
dnl option) any later version.
dnl
dnl GetData is distributed in the hope that it will be useful, but WITHOUT
dnl ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
dnl FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
dnl License for more details.
dnl
dnl You should have received a copy of the GNU Lesser General Public License
dnl along with GetData; if not, write to the Free Software Foundation, Inc.,
dnl 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

dnl GD_PERL_CONFIG
dnl ---------------------------------------------------------------
dnl query perl for the specified configuration value and store it in the
dnl supplied local variable
AC_DEFUN([GD_PERL_CONFIG],
[
ifelse(`$#', `2', [perl_int=$PERL], [perl_int=$3])
$1=`$perl_int -V::$2: | sed -e "s/'//g" | sed -e "s/[ \t]*$//"`
])

dnl GD_PERL_CHECK_VERSION
dnl ---------------------------------------------------------------
dnl Define PERL_VERSION to the version of the idl interpreter
AC_DEFUN([GD_PERL_CHECK_VERSION],
[
perl_version_ok="no"
GD_PERL_CONFIG([PERL_VERSION], [version], [$1])
AX_COMPARE_VERSION([$PERL_VERSION],[ge],[$2],[perl_version_ok="yes"])
if test "x$perl_version_ok" = "xyes"; then
  $3
  true
else
  $4
  true
fi
])

dnl GD_PERL_MAKEMAKER_CONFIG
dnl ---------------------------------------------------------------
dnl Get the value of a ExtUtils::MakeMaker::Config variable
AC_DEFUN([GD_PERL_MAKEMAKER_CONFIG],
[
AC_MSG_CHECKING($1)
AS_TR_SH([PERL_$2])=`$PERL -MExtUtils::MakeMaker::Config -e 'print "\n>>GD ", \
  @S|@Config{$2}, " GD<<";' | $AWK '/>>GD .* GD<</ { print @S|@2 }'`
AC_MSG_RESULT([@S|@AS_TR_SH([PERL_$2])])
AC_SUBST(AS_TR_SH([PERL_$2]))
])

dnl GD_PERL_CHECK_MODULE
dnl ---------------------------------------------------------------
dnl Define HAVE_<MODULE_NAME> if the specified module exists
AC_DEFUN([GD_PERL_CHECK_MODULE],
[
AC_MSG_CHECKING([for $1])
if $PERL -M$1 -e 'exit' > /dev/null 2>&1; then
  AS_TR_SH([HAVE_$1])=yes
else
  AS_TR_SH([HAVE_$1])=no
fi
AC_MSG_RESULT([${AS_TR_SH([HAVE_$1])}])
])

dnl GD_PERL
dnl ---------------------------------------------------------------
dnl Look for perl5.  Then determine whether we can build XSUBs.
AC_DEFUN([GD_PERL],
[
first_perl=5.8.0
perl_prog_list="perl perl5"

dnl --without-perl basically does the same as --disable-perl
AC_ARG_WITH([perl], AS_HELP_STRING([--with-perl=PATH],
            [use the Perl interpreter located in PATH.  [default: autodetect]]),
            [
              case "${withval}" in
                no) have_perl="no" ;;
                yes) user_perl= ; have_perl= ;;
                *) user_perl="${withval}"; have_perl= ;;
              esac
            ], [ user_perl=; have_perl= ])

if test "x${have_perl}" != "xno"; then

  dnl try to find a sufficiently new perl.
  if test "x$user_perl" != "x"; then
    AC_MSG_CHECKING([whether $user_perl version >= $first_perl])
    GD_PERL_CHECK_VERSION([$user_perl], [$first_perl],
    [AC_MSG_RESULT([yes])
    PERL=$user_perl],
    [AC_MSG_RESULT([no])
    PERL="not found"])
  else
    AC_MSG_CHECKING([for Perl interpreter version >= $first_perl])
    PERL="not found"
    for perl in $perl_prog_list; do
    _AS_PATH_WALK([$PATH],
    [for exec_ext in '' $ac_executable_extensions; do
      if AS_EXECUTABLE_P(["$as_dir/$perl$exec_ext"]); then
        GD_PERL_CHECK_VERSION( ["$as_dir/$perl$exec_ext"],
        [$first_perl], [ PERL="$as_dir/$perl$exec_ext"; break 3] )
      fi
    done])
    done
    AC_MSG_RESULT([$PERL])
  fi

  if test "x$PERL" = "xnot found"; then
    have_perl="no"
    PERL=
  fi
  AC_SUBST([PERL])

  fi

  if test "x${have_perl}" != "xno"; then
  dnl perl version
  AC_MSG_CHECKING([$PERL version])
  GD_PERL_CONFIG([PERL_VERSION], [version])
  AC_MSG_RESULT([$PERL_VERSION])
fi

AC_ARG_WITH([perl-dir], AS_HELP_STRING([--with-perl-dir=PATH],
[ Install Perl bindings in PATH.  If PATH is the special word `vendor', install
Perl bindings into the default vendor-specific module directory (if present).
If PATH is the special word `site', install Perl bindings into the default
site-specific module directory.  [default: if a --prefix is specified:
PREFIX/lib/perl/<perl_version>, otherwise: `site'] ]),
    [
    case "${withval}" in
    vendor|site) perl_inst_type="${withval}" ;;
    no) perl_inst_type="site" ;;
    *) perl_inst_type="local"; local_perl_path="${withval}" ;;
    esac
    ], [ perl_inst_type="auto" ])

if test "x${have_perl}" != "xno"; then
  GD_PERL_CHECK_MODULE([ExtUtils::MakeMaker])
  GD_PERL_CHECK_MODULE([Math::Complex])
  GD_PERL_CHECK_MODULE([Test::Harness])
fi

if test "$HAVE_Math__Complex$HAVE_ExtUtils__MakeMaker" != "yesyes"; then
  have_perl=no
fi

if test "x${have_perl}" != "xno"; then
  dnl calculate the extension module directory
  AC_MSG_CHECKING([Perl module directory])

  dnl sensible defaults
  if test $perl_inst_type = "auto"; then
    if test $prefix = "NONE" -a $exec_prefix = "NONE"; then
      perl_inst_type=site
    elif test $prefix = "NONE"; then
      perl_inst_type=local
      local_perl_path="\${exec_prefix}/lib/perl/$PERL_VERSION"
    else
      perl_inst_type=local
      local_perl_path="\${prefix}/lib/perl/$PERL_VERSION"
    fi
  fi

  if test $perl_inst_type = "vendor"; then
    GD_PERL_CONFIG([perlprefix], [vendorprefix])
    GD_PERL_CONFIG([prefixed_perldir], [vendorarchexp])
    GD_PERL_CONFIG([prefixed_perlmandir], [vendorman3direxp])
    if test perldir = "UNKNOWN"; then
      perl_inst_type = "site";
    fi
  fi

  if test $perl_inst_type = "site"; then
    GD_PERL_CONFIG([perlprefix], [siteprefix])
    GD_PERL_CONFIG([prefixed_perldir], [sitearchexp])
    GD_PERL_CONFIG([prefixed_perlmandir], [siteman3direxp])
  fi

  if test $perl_inst_type = "local"; then
    perldir="${local_perl_path}"
    perlmandir="UNKNOWN"
  elif test "x$SED" != "x"; then
    esc_perlprefix=$(echo ${perlprefix} | ${SED} -e 's/\//\\\//g')
    perldir=$(echo ${prefixed_perldir} | \
        ${SED} -e "s/^${esc_perlprefix}/\${exec_prefix}/")
    perlmandir=$(echo ${prefixed_perlmandir} | \
        ${SED} -e "s/^${esc_perlprefix}/\${prefix}/")
  else
    perldir=${prefixed_perldir}
    perlmandir=${prefixed_perlmandir}
  fi

  if test "x$perlmandir" = "xUNKNOWN"; then
    perlmandir="${mandir}/man3"
  fi

  AC_SUBST([perldir])
  AC_MSG_RESULT([$perldir])

  AC_MSG_CHECKING([Perl man directory])
  AC_SUBST([perlmandir])
  AC_MSG_RESULT([$perlmandir])

  GD_PERL_MAKEMAKER_CONFIG([for the section 3 manual page extension], [man3ext])
  GD_PERL_MAKEMAKER_CONFIG([for the loadable object suffix], [dlext])
fi
])