Click here to Skip to main content
15,912,578 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: please send explaination Pin
Eytukan23-Feb-12 3:56
Eytukan23-Feb-12 3:56 
QuestionNMAKE can't find include file in subfolder -- SOLVED Pin
Alan Balkany22-Feb-12 11:50
Alan Balkany22-Feb-12 11:50 
AnswerRe: NMAKE can't find include file in subfolder Pin
David Crow22-Feb-12 16:48
David Crow22-Feb-12 16:48 
GeneralRe: NMAKE can't find include file in subfolder Pin
Alan Balkany24-Feb-12 5:45
Alan Balkany24-Feb-12 5:45 
GeneralRe: NMAKE can't find include file in subfolder Pin
David Crow24-Feb-12 5:56
David Crow24-Feb-12 5:56 
QuestionRe: NMAKE can't find include file in subfolder Pin
CPallini22-Feb-12 22:45
mveCPallini22-Feb-12 22:45 
AnswerRe: NMAKE can't find include file in subfolder Pin
Richard MacCutchan22-Feb-12 23:01
mveRichard MacCutchan22-Feb-12 23:01 
AnswerRe: NMAKE can't find include file in subfolder Pin
Richard MacCutchan22-Feb-12 22:59
mveRichard MacCutchan22-Feb-12 22:59 
If we break this command into its constituent parts we get the following:
cl /nologo
   /Ox
   /MD
   /EHsc
   /W3
   /D_CRT_SECURE_NO_DEPRECATE
   -I "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\sys";
   -I.
   "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\sys"
   "C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Include"
   "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include"
   -DAVOID_WIN32_FILEIO
   -DCHECK_JPEG_YCBCR_SUBSAMPLING
   -DDEFAULT_EXTRASAMPLE_AS_ALPHA
   -DSTRIPCHOP_DEFAULT=TIFF_STRIPCHOP
   -DSTRIP_SIZE_DEFAULT=8192
   -DLOGLUV_SUPPORT
   -DNEXT_SUPPORT
   -DTHUNDER_SUPPORT
   -DLZW_SUPPORT
   -DPACKBITS_SUPPORT
   -DCCITT_SUPPORT
   -DTIF_PLATFORM_CONSOLE
   -DFILLODER_LSB2MSB
   /c 
   tif_unix.c
   tif_unix.c
   tif_unix.c

(35) : fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory

The only directories included by the -I option are "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\sys" and . (dot). All the other directory names seem to be orphaned in the command line. I'm also not sure why "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\sys" has that semi-colon character after it. I think you need to check your NMAKE source file.
Unrequited desire is character building. OriginalGriff
I'm sitting here giving you a standing ovation - Len Goodman



GeneralRe: NMAKE can't find include file in subfolder Pin
Alan Balkany24-Feb-12 5:35
Alan Balkany24-Feb-12 5:35 
GeneralRe: NMAKE can't find include file in subfolder Pin
Richard MacCutchan24-Feb-12 6:12
mveRichard MacCutchan24-Feb-12 6:12 
AnswerRe: NMAKE can't find include file in subfolder Pin
bjorn_ht22-Feb-12 23:35
bjorn_ht22-Feb-12 23:35 
GeneralRe: NMAKE can't find include file in subfolder Pin
Richard MacCutchan23-Feb-12 2:38
mveRichard MacCutchan23-Feb-12 2:38 
GeneralRe: NMAKE can't find include file in subfolder Pin
bjorn_ht23-Feb-12 5:15
bjorn_ht23-Feb-12 5:15 
GeneralRe: NMAKE can't find include file in subfolder Pin
Richard MacCutchan23-Feb-12 6:24
mveRichard MacCutchan23-Feb-12 6:24 
GeneralRe: NMAKE can't find include file in subfolder Pin
bjorn_ht23-Feb-12 9:44
bjorn_ht23-Feb-12 9:44 
GeneralRe: NMAKE can't find include file in subfolder Pin
Alan Balkany24-Feb-12 5:37
Alan Balkany24-Feb-12 5:37 
Questions it safe to pass CComVariant declared locally ot other function Pin
ptr_Electron22-Feb-12 3:55
ptr_Electron22-Feb-12 3:55 
AnswerRe: s it safe to pass CComVariant declared locally ot other function Pin
Jochen Arndt22-Feb-12 4:39
professionalJochen Arndt22-Feb-12 4:39 
QuestionHow to check CComVariant.boolval is valid and extract bool value from it Pin
ptr_Electron22-Feb-12 3:51
ptr_Electron22-Feb-12 3:51 
AnswerRe: How to check CComVariant.boolval is valid and extract bool value from it Pin
bjorn_ht22-Feb-12 4:44
bjorn_ht22-Feb-12 4:44 
AnswerRe: How to check CComVariant.boolval is valid and extract bool value from it Pin
Jochen Arndt22-Feb-12 4:48
professionalJochen Arndt22-Feb-12 4:48 
Questionstandard c_str() problem in C++ Pin
Anitesh Kumar21-Feb-12 17:45
Anitesh Kumar21-Feb-12 17:45 
AnswerRe: standard c_str() problem in C++ PinPopular
Emilio Garavaglia21-Feb-12 20:10
Emilio Garavaglia21-Feb-12 20:10 
GeneralRe: standard c_str() problem in C++ Pin
CPallini22-Feb-12 0:18
mveCPallini22-Feb-12 0:18 
GeneralRe: standard c_str() problem in C++ Pin
Eytukan22-Feb-12 0:52
Eytukan22-Feb-12 0:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.