summaryrefslogtreecommitdiff
path: root/www/mod_php4/files/ming-config-m4
blob: 8228fe54805f68d9ee4c5a79d7d70978f08573bf (plain) (blame)
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
dnl $Id: config.m4,v 1.2 2001/02/08 21:41:29 opaque_ndst Exp $
dnl config.m4 for extension libming
dnl don't forget to call PHP_EXTENSION(ming)
dnl This file is a modified version of config.m4
dnl in php4/ext/mcrypt

PHP_ARG_WITH(ming, for ming support,
[  --with-ming[=DIR]        Include ming support])

if test "$PHP_MING" != "no"; then
  for i in /usr/lib /usr/local/ /usr/local/lib /usr $PHP_MING $PHP_MING/lib; do
    if test -r $i/libming.so; then
      MING_LIB_DIR=$i
    fi
  done

  if test -z "$MING_LIB_DIR"; then
    AC_MSG_ERROR(Please reinstall libming.so - I cannot find libming.so)
  fi

  for i in /usr/include /usr/local/include $PHP_MING $PHP_MING/include $PHP_MING/include/ming; do
    if test -r $i/ming.h; then
      MING_INC_DIR=$i
    fi
  done

  if test -z "$MING_INC_DIR"; then
    AC_MSG_ERROR(Please reinstall ming.h - I cannot find ming.h)
  fi

  AC_ADD_INCLUDE($MING_INC_DIR)

  AC_ADD_LIBRARY_WITH_PATH(ming, $MING_LIB_DIR, MING_SHARED_LIBADD)
  PHP_SUBST(MING_SHARED_LIBADD)
  AC_DEFINE(HAVE_MING,1,[ ])

  PHP_EXTENSION(ming, $ext_shared)
fi