summary refs log tree commit diff stats
path: root/config-win32.h.tt
diff options
context:
space:
mode:
authorArnavion <arnavion@gmail.com>2013-12-27 12:05:07 -0800
committerArnavion <arnavion@gmail.com>2013-12-27 12:05:07 -0800
commitc7bf4b0474c613f81e3724043386373d7bc7d2a3 (patch)
tree82a47c7c7306a736f0d6ec8afbd17ac0eb45f68e /config-win32.h.tt
parent61ceaef57e19f7b19669bca4f7972123d2e6b119 (diff)
Replaced use of T4 templates with PS-based templates.
TextTransform.exe is not available with Express versions of Visual Studio.
Diffstat (limited to 'config-win32.h.tt')
-rw-r--r--config-win32.h.tt6
1 files changed, 3 insertions, 3 deletions
diff --git a/config-win32.h.tt b/config-win32.h.tt
index 8f21d0b1..fc1679f6 100644
--- a/config-win32.h.tt
+++ b/config-win32.h.tt
@@ -1,4 +1,4 @@
-<#@ include file="version.include.tt" #>#define LOCALEDIR ".\\share\\locale"
+#define LOCALEDIR ".\\share\\locale"
 #define ENABLE_NLS
 #define USE_GMODULE
 #define USE_PLUGIN
@@ -8,12 +8,12 @@
 #define ISO_CODES_PREFIX ".\\"
 #define ISO_CODES_LOCALEDIR LOCALEDIR
 #define PACKAGE_NAME "hexchat"
-#define PACKAGE_VERSION "<#= string.Join(".", versionParts) #>"
+#define PACKAGE_VERSION "<#= [string]::Join('.', $versionParts) #>"
 #define HEXCHATLIBDIR ".\\plugins"
 #define HEXCHATSHAREDIR "."
 #define OLD_PERL
 #define GETTEXT_PACKAGE "hexchat"
-#define PACKAGE_TARNAME "hexchat-<#= string.Join(".", versionParts) #>"
+#define PACKAGE_TARNAME "hexchat-<#= [string]::Join('.', $versionParts) #>"
 #ifndef USE_IPV6
 #define socklen_t int
 #endif