summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Borzenkov <bor@users.sourceforge.net>2001-06-29 15:25:29 +0000
committerAndrey Borzenkov <bor@users.sourceforge.net>2001-06-29 15:25:29 +0000
commitecbff2da37f13a3980a63cb4e54e85bbd6038573 (patch)
tree3daead8662f58ab7673ef6ec060afebafa03a455
parentfcd204718ef7b3636232b5136f5a8465a3b6c8e3 (diff)
downloadzsh-ecbff2da37f13a3980a63cb4e54e85bbd6038573.tar.gz
zsh-ecbff2da37f13a3980a63cb4e54e85bbd6038573.zip
15181: use -KPIC instead of -Kpic
-rw-r--r--ChangeLog4
-rw-r--r--zshconfig.ac2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9ff1b0824..a680be0c8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2001-06-29 Andrej Borsenkow <bor@zsh.org>
+ * 15181: zshconfig.ac: use -KPIC instead of -Kpic at request
+ of Tomi Vainio <Tomi.Vainio@Sun.COM>
+
+
* 15180: zshconfig.ac, Etc/MACHINES: make AIX default to termcap
as workaround for apparent AIX curses bug; add flags to create
modules with shared object type. Mention curses problem.
diff --git a/zshconfig.ac b/zshconfig.ac
index fae7f3982..f1e21aa87 100644
--- a/zshconfig.ac
+++ b/zshconfig.ac
@@ -1625,7 +1625,7 @@ char *argv[];
case "$host_os" in
hpux*) DLCFLAGS="${DLCFLAGS=+z}" ;;
sunos*) DLCFLAGS="${DLCFLAGS=-pic}" ;;
- solaris*|sysv4*|esix*) DLCFLAGS="${DLCFLAGS=-Kpic}" ;;
+ solaris*|sysv4*|esix*) DLCFLAGS="${DLCFLAGS=-KPIC}" ;;
esac
fi
case "$host_os" in