aboutsummaryrefslogtreecommitdiffstats
path: root/config.nmake
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2007-01-10 09:56:39 +0000
committerUlf Lamping <ulf.lamping@web.de>2007-01-10 09:56:39 +0000
commit393537a7f849c0b15e488ce70cf02f1b038528eb (patch)
tree4a415d50f4cab582309b61d3406c77ded8fb1c0c /config.nmake
parent2dbb754dc292b27e8ab1f7f8ebafafca6a191dcc (diff)
fix the HHC_DIR settings for none MSVC6 variants
svn path=/trunk/; revision=20375
Diffstat (limited to 'config.nmake')
-rw-r--r--config.nmake5
1 files changed, 5 insertions, 0 deletions
diff --git a/config.nmake b/config.nmake
index b4c8b029c4..2d70076faf 100644
--- a/config.nmake
+++ b/config.nmake
@@ -721,9 +721,14 @@ PORTAUDIO_CONFIG=
!ENDIF
!IFDEF HHC_DIR
+!IF "$(MSVC_VARIANT)" == "MSVC6"
HHC_CFLAGS=/I$(HHC_DIR)\include -DHHC_DIR
HHC_LIBS=$(HHC_DIR)\lib\htmlhelp.lib
!ELSE
+HHC_CFLAGS=-DHHC_DIR
+HHC_LIBS=htmlhelp.lib
+!ENDIF
+!ELSE
HHC_CFLAGS=
HHC_LIBS=
!ENDIF