diff --git a/.travis.yml b/.travis.yml
index 113773d6977..b6b815c9bce 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,7 +10,7 @@ before_install:
   - sudo apt-get update -qq
   - sudo apt-get install -y libpam-dev
 
-script: go build -v
+script: go build -v -tags "pam"
 
 notifications:
   email:
diff --git a/conf/locale/TRANSLATORS b/conf/locale/TRANSLATORS
index 6680539e08e..c94b6226663 100644
--- a/conf/locale/TRANSLATORS
+++ b/conf/locale/TRANSLATORS
@@ -2,6 +2,7 @@
 # Order of name is meaningless.
 
 Akihiro YAGASAKI <yaggytter@momiage.com>
+Alexander Steinhöfer <kontakt@lx-s.de>
 Christoph Kisfeld <christoph.kisfeld@gmail.com>
 Huimin Wang <wanghm2009@hotmail.co.jp>
 Thomas Fanninger <gogs.thomas@fanninger.at>
diff --git a/gogs.go b/gogs.go
index ecd93275ded..958792e0d68 100644
--- a/gogs.go
+++ b/gogs.go
@@ -17,7 +17,7 @@ import (
 	"github.com/gogits/gogs/modules/setting"
 )
 
-const APP_VER = "0.6.1.0710 Beta"
+const APP_VER = "0.6.1.0714 Beta"
 
 func init() {
 	runtime.GOMAXPROCS(runtime.NumCPU())
diff --git a/modules/auth/pam/pam.go b/modules/auth/pam/pam.go
index 7d150b1c0b1..7f326d42f55 100644
--- a/modules/auth/pam/pam.go
+++ b/modules/auth/pam/pam.go
@@ -1,4 +1,4 @@
-// +build !windows
+// +build pam
 
 // Copyright 2014 The Gogs Authors. All rights reserved.
 // Use of this source code is governed by a MIT-style
diff --git a/modules/auth/pam/pam_stub.go b/modules/auth/pam/pam_stub.go
index 2f210bf6e7c..33ac751a34d 100644
--- a/modules/auth/pam/pam_stub.go
+++ b/modules/auth/pam/pam_stub.go
@@ -1,4 +1,4 @@
-// +build windows
+// +build !pam
 
 // Copyright 2014 The Gogs Authors. All rights reserved.
 // Use of this source code is governed by a MIT-style
diff --git a/templates/.VERSION b/templates/.VERSION
index 0249535505c..627dda90e43 100644
--- a/templates/.VERSION
+++ b/templates/.VERSION
@@ -1 +1 @@
-0.6.1.0710 Beta
\ No newline at end of file
+0.6.1.0714 Beta
\ No newline at end of file