morrison@CS.WISC.EDU (Timothy Morrison) (05/16/91)
Hi, I am trying to compile InterViews 3.0 on a HP9000/300 which has AT&T C++ version 2.0. When I do , everything proceeds fine except for the folowing two areas: depending for HP300 in ./src/lib/InterViews depending for HP300 in ./src/lib/InterViews/HP300 makedepend -s "# DO NOT DELETE" -- -Dcplusplus_2_0 -I.. -I../../../.././src/include -I/usr/include/X11 -I/usr/misc/C++/include -- ../*.c makedepend: ../rubrect.c: makedepend: cannot find include file "values.h" makedepend: not in ../values.h makedepend: not in ../values.h makedepend: not in ../../../.././src/include/values.h makedepend: not in /usr/include/X11/values.h makedepend: not in /usr/misc/C++/include/values.h makedepend: not in /usr/local/lib/gcc-include/values.h makedepend: not in /usr/include/values.h makedepend: cannot open "values.h" depending for HP300 in ./src/lib/OS depending for HP300 in ./src/lib/OS/HP300 makedepend -s "# DO NOT DELETE" -- -Dcplusplus_2_0 -I.. -I../../../.././src/include -I/usr/include/X11 -I/usr/misc/C++/include -- ../*.c makedepend: ../directory.c: makedepend: cannot find include file "dirent.h" makedepend: not in ../dirent.h makedepend: not in ../dirent.h makedepend: not in ../../../.././src/include/dirent.h makedepend: not in /usr/include/X11/dirent.h makedepend: not in /usr/misc/C++/include/dirent.h makedepend: not in /usr/local/lib/gcc-include/dirent.h makedepend: not in /usr/include/dirent.h makedepend: cannot open "dirent.h" I have written to my system admin., and he has told me that C++ for the HPs does not have a "values.h" or "dirent.h" file. Is this correct? If so, how can I get around this problem for the HP? Is/are there analogous ".h" files which can be used in place of either of these missing ones? Any help would be greatly appreciated. -Tim Morrison morrison@cs.wisc.edu
linton@marktwain.rad.sgi.com (Mark Linton) (05/16/91)
In article <9105160353.AA26210@dingo.cs.wisc.edu>, morrison@CS.WISC.EDU (Timothy Morrison) writes: |> |> Hi, |> |> I am trying to compile InterViews 3.0 on a HP9000/300 which has AT&T |> C++ version 2.0. When I do , everything proceeds fine except for the folowing |> two areas: |> |> makedepend: ../rubrect.c: makedepend: cannot find include file "values.h" |> makedepend: ../directory.c: makedepend: cannot find include file "dirent.h" rubrect.c is looking for MAXFLOAT from values.h. dirent is the POSIX directory structure. You might have <direct.h> or <sys/dir.h>.