Skip to content

Commit

Permalink
Fix for bug #163
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Alshanetsky committed Jun 26, 2016
1 parent eee77f6 commit 6c51646
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,15 @@ if test "$PHP_EXCEL" != "no"; then
-L$EXCEL_LIBDIR
])

PHP_CHECK_LIBRARY(xl,xlBookSetKeyA,
PHP_CHECK_LIBRARY(xl, xlBookSetKeyA,
[
PHP_ADD_INCLUDE($EXCEL_INCDIR)
PHP_ADD_INCLUDE($LIBXML_INCDIR)
PHP_ADD_LIBRARY_WITH_PATH(xl, $EXCEL_LIBDIR, EXCEL_SHARED_LIBADD)
AC_DEFINE(HAVE_LIBXL_SETKEY,1,[ ])
],[],[])
],[],[
-L$EXCEL_LIBDIR
])

if test `grep -c FILLPATTERN_HORSTRIPE $EXCEL_INCDIR/enum.h` -eq 1; then
AC_DEFINE(HAVE_LIBXL_243_PLUS,1,[ ])
Expand Down

1 comment on commit 6c51646

@Gerst20051
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 when will a new archive be released with this fix? @iliaal

Please sign in to comment.