home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.windows.interviews
- Path: sparky!uunet!pipex!ibmpcug!iocgate!dfr
- From: dfr@ioc.co.uk (Doug Rabson)
- Subject: Re: Where are stream.h and osfcn.h
- Sender: news@ioc.co.uk
- Message-ID: <DFR.92Nov20110136@rhino.ioc.co.uk>
- In-Reply-To: barr@stein.u.washington.edu's message of 19 Nov 92 17:56:31 GMT
- Date: Fri, 20 Nov 1992 11:01:36 GMT
- Lines: 93
- References: <1992Nov19.125711.29515@ccsun7.csie.nctu.edu.tw>
- <1992Nov19.175631.18715@u.washington.edu>
- Nntp-Posting-Host: rhino.ioc.co.uk
- Organization: Intelligent Office Company Ltd.
-
- In article <1992Nov19.175631.18715@u.washington.edu> barr@stein.u.washington.edu (David Barr) writes:
- > jypai@csie.nctu.edu.tw (Pai Jin-Yuan) writes:
- >
- > >I use find command in /usr and found
- > >/usr/include/sys/stream.h
- > >but didn't find osfcn.h.
- >
- > Those two files are in $GCCDIR/lib/g++-include. I got those errors
- > too. Somehow you have to let makedepend know to look in those
- > directories.
-
- I used the following local.def file to compile 3.1-beta4 using
- g++-2.3.1 on an rs6000 under AIX3.2.1:
-
- --------------------snip snip--------------------
- #undef ExtraCCIncludes
- #define ExtraCCIncludes -I/usr/local/lib/g++-include
- #define TurnOnOptimizing YES
-
- /*
- * For now, just assume cfront 2.0.
- * If you are using cfront 2.1 or cfront 3.0, then use -Dcplusplus_2_1.
- */
- #undef LanguageCCDefines
- #define LanguageCCDefines -Dcplusplus_2_0
-
- /*
- * If you are using gcc/g++, then uncomment the include below.
- */
- #include <InterViews/gcc.def>
- #undef ExtraCCLdFlags
-
- /*
- * Default customization of kits.
- * Possible flags to define:
- * sgi_motif_kit (SMFKit), motif_kit (MFKit),
- * openlook_kit (OLKit), bw_kit (MonoKit)
- */
- #ifndef KitFlags
- #define KitFlags \
- -Dmotif_kit \
- -Dsgi_motif_kit \
- -Dopenlook_kit \
- -Dbw_kit \
- -Ddefault_kit=SMFKit
- #endif
-
- /*
- * If you are using g++, define BuildRPCClasses to NO.
- */
- #if defined(SGIArchitecture) || defined(SunArchitecture)
- #undef BuildRPCClasses
- #define BuildRPCClasses YES
- #endif
-
- /*
- * Delete this definition if your /tmp space is less than five megabytes.
- */
- #undef HasLargeTmp
- #define HasLargeTmp YES
-
- /*
- * If you do not want to create a symbolic link called "/interviews"
- * that points at /..../iv/installed, you should replace /interviews
- * below with the name of the symbolic link you do want to use (say,
- * /usr/local/interviews). If you don't want to create a symbolic
- * link at all, replace /interviews with the absolute pathname of
- * /..../iv/installed so InterViews applications still can find the
- * installed data files.
- */
- #undef InstalledRoot
- #define InstalledRoot /interviews
-
- /*
- * If the X11 config files are not in /usr/lib/X11/config, the X11
- * includes are not in /usr/include, or the X11 libraries are not in
- * /lib, /usr/lib, or /usr/local/lib, then you should specify their
- * actual locations here.
- *
- * If you have to set XConfigDir, don't forget to override XCONFIGDIR
- * on the command line when saying "make World" for the first time.
- */
- #undef XConfigDir
- #define XConfigDir /vol/X11R5/lib/X11/config
- #undef XIncDir
- #define XIncDir /vol/X11R5/include
- #undef XLibDir
- #define XLibDir /vol/X11R5/lib
- --------------------snip snip--------------------
- --
- Doug Rabson, IOC Ltd. | Email: dfr@ioc.co.uk
- Phone: +44 81 528 9864 | drabson@cix.compulink.co.uk
- Fax: +44 81 528 9878 |
-