mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-06 11:12:34 +01:00
e2edbfe47d
This is done via T4 templates. The original files are now generated at build-time and so have been added to .gitignore and removed from the repository, with the exception of version.txt which must be hosted on GitHub for the updater plugin.
20 lines
591 B
Plaintext
20 lines
591 B
Plaintext
<#@ include file="version.include.tt" #>#define LOCALEDIR ".\\share\\locale"
|
|
#define ENABLE_NLS
|
|
#define USE_GMODULE
|
|
#define USE_PLUGIN
|
|
#define USE_OPENSSL
|
|
#define USE_IPV6
|
|
#define HAVE_ISO_CODES
|
|
#define ISO_CODES_PREFIX ".\\"
|
|
#define ISO_CODES_LOCALEDIR LOCALEDIR
|
|
#define PACKAGE_NAME "hexchat"
|
|
#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) #>"
|
|
#ifndef USE_IPV6
|
|
#define socklen_t int
|
|
#endif
|