summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2001-03-11 15:53:27 +0000
committerBruno Haible <bruno@clisp.org>2001-03-11 15:53:27 +0000
commit1e5d40a2467721faebafcff139ec231d86ba4a54 (patch)
tree760fcde4937786de63bdc97b495d2d9281d7c6ae /INSTALL
parent6682842a0193a1fc1da89be39b1b1530e587171a (diff)
downloadexternal_gettext-1e5d40a2467721faebafcff139ec231d86ba4a54.zip
external_gettext-1e5d40a2467721faebafcff139ec231d86ba4a54.tar.gz
external_gettext-1e5d40a2467721faebafcff139ec231d86ba4a54.tar.bz2
New section "Particular Systems".
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL23
1 files changed, 23 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
index 50dbe43..c134f78 100644
--- a/INSTALL
+++ b/INSTALL
@@ -119,6 +119,29 @@ find the X include and library files automatically, but if it doesn't,
you can use the `configure' options `--x-includes=DIR' and
`--x-libraries=DIR' to specify their locations.
+Particular Systems
+==================
+
+ On FreeBSD, NetBSD, and OpenBSD, the compiler doesn't search include
+files in /usr/local/include, and the linker doesn't search libraries in
+/usr/local/lib. Therefore some packages won't find other packages
+installed earlier. To overcome this problem, it is recommended to use
+the following options:
+
+ env CPPFLAGS=-I/usr/local/include LDFLAGS=-L/usr/local/lib ./configure
+
+ On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC
+is not installed, it is recommended to use the following options in order
+to use an ANSI C compiler:
+
+ env CC="cc -Ae" ./configure
+
+ On BeOS, user installed software goes in /boot/home/config, not
+/usr/local. It is recommended to use the following options:
+
+ CPPFLAGS=-I/boot/home/config/include LDFLAGS=-L/boot/home/config/lib \
+ ./configure --prefix=/boot/home/config
+
Specifying the System Type
==========================