Skip to content

Commit

Permalink
change format of tag name
Browse files Browse the repository at this point in the history
  • Loading branch information
Joungkyun committed Nov 12, 2012
1 parent 55215db commit 392e0f0
Show file tree
Hide file tree
Showing 8 changed files with 225 additions and 700 deletions.
32 changes: 6 additions & 26 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,45 +1,25 @@
PHP GeoIP Extension Changelog

* 1.1.2
--------------------------------------------------------------------------------
Mon Nov 4 2012
by JoungKyun Kim <http://oops.org>
- support OOP

Sun Nov 3 2012
by JoungKyun Kim <http://oops.org>
- fixed deprecated zend_get_parameters_ex

Fri Nov 2 2012
by JoungKyun Kim <http://oops.org>
- support PHP 5.4

Tue Jul 15 2008
by JoungKyun Kim <http://oops.org>
- support 64bit library check


* 1.1.1
--------------------------------------------------------------------------------
Sat Sep 9 2006
by JoungKyun Kim <http://oops.org>
--------------------------------------------------------------------------------
by JoungKyun Kim <http://www.oops.org>
- fixed memory leak of GeoIPCity GeoIPISP


* 1.1.0
--------------------------------------------------------------------------------
Thu Sep 7 2006
by JoungKyun Kim <http://oops.org>
--------------------------------------------------------------------------------
by JoungKyun Kim <http://www.oops.org>
- fixed memory leak
- support GeoIPISP
- support GeoIPCITY
- support GeoIPORG


* 1.0.0
--------------------------------------------------------------------------------
Sun Jun 19 2006
by JoungKyun Kim <http://oops.org>
--------------------------------------------------------------------------------
by JoungKyun Kim <http://www.oops.org>
- first build
- config.m4 used maxmind's

10 changes: 4 additions & 6 deletions config.m4
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dnl $Id$
dnl $Id: config.m4,v 1.1.1.1 2006-06-20 07:48:32 oops Exp $
dnl config.m4 for extension geoip

dnl Contributed by Jonathan Whiteman of cyberflowsolutions.com
Expand Down Expand Up @@ -51,18 +51,16 @@ if test "$PHP_GEOIP" != "no"; then

PHP_CHECK_LIBRARY($LIBNAME,$LIBSYMBOL,
[
PHP_ADD_LIBRARY_WITH_PATH($LIBNAME, $GEOIP_DIR/$PHP_LIBDIR, GEOIP_SHARED_LIBADD)
PHP_ADD_LIBRARY_WITH_PATH($LIBNAME, $GEOIP_DIR/lib, GEOIP_SHARED_LIBADD)
AC_DEFINE(HAVE_GEOIPLIB,1,[ ])
],[
AC_MSG_ERROR([wrong geoip lib version or lib not found])
],[
-L$GEOIP_DIR/$PHP_LIBDIR -lm -ldl
-L$GEOIP_DIR/lib -lm -ldl
])

PHP_SUBST(GEOIP_SHARED_LIBADD)

extra_src=""

PHP_NEW_EXTENSION(geoip, php_geoip.c $extra_src, $ext_shared)
PHP_NEW_EXTENSION(geoip, php_geoip.c, $ext_shared)
fi

Loading

0 comments on commit 392e0f0

Please sign in to comment.