Skip to content

Commit 8ee3553

Browse files
author
Ilia Alshanetsky
committed
MFH: Fixed bug #28564 (Problem building informix as a shared extension).
1 parent 12e1c89 commit 8ee3553

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
PHP 4 NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
33
?? Jun 2004, Version 4.3.7
4+
- Fixed bug #28564 (Problem building informix as a shared extension).
5+
(roques at mti dot ag, Ilia)
46

57
25 May 2004, Version 4.3.7RC1
68
- Upgraded bundled GD library to 2.0.23. (Ilia)

ext/informix/Makefile.frag

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1+
OVERALL_TARGET += $(srcdir)/ifx.c
12

23
$(srcdir)/ifx.c: $(srcdir)/ifx.ec $(builddir)/libphpifx.a
34
(if test -d $(INFORMIXDIR); then \
45
THREADLIB=POSIX $(INFORMIXDIR)/bin/esql -e $(IFX_ESQL_FLAGS) $(srcdir)/ifx.ec; mv ifx.c $@; \
6+
THREADLIB=POSIX $(INFORMIXDIR)/bin/esql -e $(IFX_ESQL_FLAGS) $(srcdir)/ifx.ec; \
7+
mv ifx.c $@ || true; \
58
else \
69
touch $@; \
710
fi)

ext/informix/ifx.ec

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@
3737
/* prevent mod_ssl.h's header file from being included. */
3838
#define AP_HOOK_H
3939

40+
#ifdef HAVE_CONFIG_H
41+
#include "config.h"
42+
#endif
43+
4044
#include "php.h"
4145
#include "php_globals.h"
4246
#include "ext/standard/php_standard.h"

0 commit comments

Comments
 (0)