Fix build on Visual Studio Express.
authorIain Patterson <me@iain.cx>
Mon, 3 Dec 2012 18:15:36 +0000 (10:15 -0800)
committerIain Patterson <me@iain.cx>
Mon, 3 Dec 2012 18:26:26 +0000 (13:26 -0500)
Visual Studio Express doesn't ship with MFC so the afxres.h header isn't
available.  Since we don't actually use it, it's safe to replace that
header with a standard #include and #define.

Note that Visual Studio Express also ships without mc.exe so you will
also need to download the Windows SDK and set up your PATH in order to
build NSSM.

ChangeLog.txt
nssm.rc

index 525a3d8..727c4b0 100644 (file)
@@ -1,5 +1,7 @@
 Changes since 2.16
 -----------------
+  * Allow building on Visual Studio Express.
+
   * Silently ignore INTERROGATE control.
 
 Changes since 2.15
diff --git a/nssm.rc b/nssm.rc
index e05aae8..b2e539e 100644 (file)
--- a/nssm.rc
+++ b/nssm.rc
@@ -7,7 +7,10 @@
 //\r
 // Generated from the TEXTINCLUDE 2 resource.\r
 //\r
-#include "afxres.h"\r
+#include <windows.h>\r
+#ifndef IDC_STATIC\r
+#define IDC_STATIC (-1)\r
+#endif\r
 \r
 /////////////////////////////////////////////////////////////////////////////\r
 #undef APSTUDIO_READONLY_SYMBOLS\r