[RELEASE] released 1.3.4

Released 1.3.4 with the following major changes :
    - support for cttproxy on the server side to present the client
      address to the server.
    - added support for SO_REUSEPORT on Linux (needs kernel patch)
    - new RFC2616-compliant HTTP request parser with header indexing
    - split proxies in frontends, rulesets and backends
    - implemented the 'req[i]setbe' to select a backend depending
      on the contents
    - added the 'default_backend' keyword to select a default BE.
    - new stats page featuring FEs and BEs + bytes in both dirs
    - improved log format to indicate the backend and the time in ms.
    - lots of cleanups
diff --git a/Makefile b/Makefile
index 0215a6d..906e8ee 100644
--- a/Makefile
+++ b/Makefile
@@ -96,7 +96,9 @@
 
 # Now let's determine the version, sub-version and release date.
 # If we're in the GIT tree, we can use the last commit's version and date.
+ifeq ($(IGNOREGIT),)
 VERSION := $(shell [ -d .git/. ] && ref=$$(git-describe --tags 2>/dev/null) && ref=$${ref%-g*} && echo "$${ref\#v}" )
+endif
 
 ifneq ($(VERSION),)
 # OK git is there and works.
@@ -105,9 +107,9 @@
 else
 # Otherwise, use the hard-coded version of last tag, number of changes
 # since last tag, and release date.
-VERSION := 1.3.3
-SUBVERS := -36
-VERDATE := 2006/12/23
+VERSION := 1.3.4
+SUBVERS := 
+VERDATE := 2007/01/02
 endif
 
 #### build options