From 0331ef6e9e36a2b60a301128945cb26d867ec62e Mon Sep 17 00:00:00 2001 From: Orange Borg Date: Wed, 7 Jan 2015 11:10:19 +1300 Subject: [PATCH 1/3] Add information on BYGEX for linux to readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 1dbbf04c307..6eae9e7ffc2 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,10 @@ compiled tgstation.dmb file. Make sure to set the port to the one you specified in the config.txt, and set the Security box to 'Safe'. Then press GO and the server should start up and be ready to join. +###Linux hosts +We use bygex for some of our text replacement related code, unfortunately we only have a windows dll included right now. If you're up to it you can head over to https://code.google.com/p/byond-regex/ and compile it for linux. Otherwise edit code/_compile_options.dm, and at the bottom comment out #define USE_BYGEX and recompile the codebase + + ##UPDATING To update an existing installation, first back up your /config and /data folders From 5a7b72249ce9ddd9291ecf7699b710b2a99eb3a8 Mon Sep 17 00:00:00 2001 From: Orange Borg Date: Wed, 7 Jan 2015 11:27:19 +1300 Subject: [PATCH 2/3] Escape the underscore --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6eae9e7ffc2..ad563430708 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ specified in the config.txt, and set the Security box to 'Safe'. Then press GO and the server should start up and be ready to join. ###Linux hosts -We use bygex for some of our text replacement related code, unfortunately we only have a windows dll included right now. If you're up to it you can head over to https://code.google.com/p/byond-regex/ and compile it for linux. Otherwise edit code/_compile_options.dm, and at the bottom comment out #define USE_BYGEX and recompile the codebase +We use bygex for some of our text replacement related code, unfortunately we only have a windows dll included right now. If you're up to it you can head over to https://code.google.com/p/byond-regex/ and compile it for linux. Otherwise edit code/\_compile_options.dm, and at the bottom comment out #define USE_BYGEX and recompile the codebase ##UPDATING From b170801134764ee7947283a2f5e15bdb5c8a4c83 Mon Sep 17 00:00:00 2001 From: tkdrg Date: Tue, 6 Jan 2015 20:11:12 -0300 Subject: [PATCH 3/3] Improves formatting for the linux hosting README --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ad563430708..8ae3c9183d1 100644 --- a/README.md +++ b/README.md @@ -73,8 +73,16 @@ compiled tgstation.dmb file. Make sure to set the port to the one you specified in the config.txt, and set the Security box to 'Safe'. Then press GO and the server should start up and be ready to join. -###Linux hosts -We use bygex for some of our text replacement related code, unfortunately we only have a windows dll included right now. If you're up to it you can head over to https://code.google.com/p/byond-regex/ and compile it for linux. Otherwise edit code/\_compile_options.dm, and at the bottom comment out #define USE_BYGEX and recompile the codebase +###HOSTING ON LINUX +We use BYGEX for some of our text replacement related code. Unfortunately, we +only have a windows dll included right now. If you're up to it, you can head +over to https://code.google.com/p/byond-regex/ and compile it for linux. + +Otherwise, edit the file `code/_compile_options.dm`, and comment out: +`#define USE_BYGEX` +at the bottom, so that it looks like this: +`//#define USE_BYGEX` +Recompile the codebase afterwards. ##UPDATING