summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorTom Phoenix <rootbeer@teleport.com>1997-03-16 13:40:35 -0800
committerChip Salzenberg <chip@atlantic.net>1997-03-09 11:57:19 +1200
commitd409519965f1abcba7d1fa62a56192b4964d4e5b (patch)
tree3d468478991ee03d5c6055095e574f9cf08e167a /hints
parent375637f8c82b4d0449924d1402c74930afb0de35 (diff)
downloadperl-d409519965f1abcba7d1fa62a56192b4964d4e5b.tar.gz
More MachTen hints
private-msgid: Pine.GSO.3.95q.970316133852.27997A-100000@kelly.teleport.com
Diffstat (limited to 'hints')
-rw-r--r--hints/machten_2.sh31
1 files changed, 28 insertions, 3 deletions
diff --git a/hints/machten_2.sh b/hints/machten_2.sh
index dfcedede4e..3e12a6fa05 100644
--- a/hints/machten_2.sh
+++ b/hints/machten_2.sh
@@ -19,10 +19,32 @@
# Warning about tests which no longer fail
# fixed by Tom Phoenix <rootbeer@teleport.com>
# March 5, 1997
+#
+# Locale, optimization, and malloc changes by Tom Phoenix Mar 15, 1997
+
+# There seem to be some hard-to-diagnose problems under MachTen's
+# malloc, so we'll use Perl's. If you have problems which Perl's
+# malloc's diagnostics can't help you with, you may wish to use
+# MachTen's malloc after all.
+case "$usemymalloc" in
+'') usemymalloc='y' ;;
+esac
+
+# I (Tom Phoenix) don't know how to test for locales on MachTen. (If
+# you do, please fix this hints file!) But since mine didn't come
+# with locales working out of the box, I'll assume that's the case
+# for most folks.
+case "$d_setlocale" in
+'') d_setlocale=undef
+esac
-# I don't know why this is needed. It might be similar to NeXT's
-# problem. See hints/next_3.sh.
-usemymalloc='n'
+# MachTen doesn't have secure setid scripts
+d_suidsafe='undef'
+d_dosuid='define'
+
+case "$optimize" in
+'') optimize='-O2' ;;
+esac
so='none'
# These are useful only if you have DLD, but harmless otherwise.
@@ -47,6 +69,9 @@ dont_use_nlink=define
cat <<'EOM' >&4
+During Configure, you may get two "WHOA THERE" messages, for $d_setlocale
+and $i_db being 'undef'. You may keep the undef value.
+
At the end of Configure, you will see a harmless message
Hmm...You had some extra variables I don't know about...I'll try to keep 'em.