forked from aaroncarlucci/php-sweph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.m4
55 lines (42 loc) · 1.57 KB
/
config.m4
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
dnl $Id$
dnl config.m4 for extension sweph
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:
PHP_ARG_WITH(sweph, for sweph support,
dnl Make sure that the comment is aligned:
[ --with-sweph Include sweph support])
dnl Otherwise use enable:
dnl PHP_ARG_ENABLE(sweph, whether to enable sweph support,
dnl [ --enable-sweph Enable sweph support])
if test "$PHP_SWEPH" != "no"; then
dnl Write more examples of tests here...
dnl # --with-sweph -> check with-path
SEARCH_PATH="/usr/local/include /usr/include /usr/src/sweph" # you might want to change this
SEARCH_FOR="swephexp.h" # you most likely want to change this
if test -r $PHP_SWEPH/; then # path given as parameter
SWEPH_DIR=$PHP_SWEPH
else # search default path list
AC_MSG_CHECKING([for sweph files in default path])
for i in $SEARCH_PATH ; do
if test -r $i/$SEARCH_FOR; then
SWEPH_DIR=$i
AC_MSG_RESULT(found in $i)
fi
done
fi
if test -z "$SWEPH_DIR"; then
AC_MSG_RESULT([not found])
AC_MSG_ERROR([Please reinstall the sweph distribution])
fi
dnl # --with-sweph -> add include path
PHP_ADD_INCLUDE($SWEPH_DIR)
dnl # --with-sweph -> check for lib and symbol presence
LIBNAME=swe
LIBSYMBOL=swe_calc_u
dnl PHP_SUBST(SWEPH_SHARED_LIBADD)
# remove this... it causes runtime error when running php5
AC_SUBST(LDFLAGS, "-L. -lswe -lm")
PHP_NEW_EXTENSION(sweph, sweph.c, $ext_shared)
fi