File: config.m4

package info (click to toggle)
php4-apd 0.4p2-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,696 kB
  • ctags: 398
  • sloc: sh: 8,306; ansic: 2,188; awk: 70; makefile: 62
file content (25 lines) | stat: -rw-r--r-- 788 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
dnl Comments in this file start with the string 'dnl'.
dnl Remove where necessary. This file will not work
dnl without editing.

dnl If your extension references something external, use with:

dnl PHP_ARG_WITH(apd, for apd support,
dnl Make sure that the comment is aligned:
dnl [  --with-apd             Include apd support])

dnl Otherwise use enable:

PHP_ARG_ENABLE(apd, whether to enable apd support,
     [  --enable-apd            Enable apd support])

if test "$PHP_APD" != "no"; then
  dnl If you will not be testing anything external, like existence of
  dnl headers, libraries or functions in them, just uncomment the 
  dnl following line and you are ready to go.
  AC_DEFINE(HAVE_APD, 1, [ ])

  dnl Write more examples of tests here...
  PHP_EXTENSION(apd, $ext_shared)
fi