Re: Libtool 1.4.2 and EBCDIC

2002-09-25 Thread Robert Boehne

Howard,

This was installed already.

Thanks,
 
Robert Boehne Software Engineer
Ricardo Software   Chicago Technical Center
TEL: (630)789-0003 x. 238
FAX: (630)789-0127
email:  rboehne AT gnu DOT org


___
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool



Libtool 1.4.2 and EBCDIC

2002-09-24 Thread Howard Chu

I don't recall if I submitted this patch already, but this will patch libtool
to properly deal with EndOfLine on EBCDIC systems:
*** ltmain.sh   Fri Jun  7 16:35:33 2002
--- ../ldap/build/ltmain.sh   Thu Sep 19 23:21:52 2002
***
*** 69,76 
--- 74,90 
  # metacharacters that are still active within double-quoted strings.
  Xsed='sed -e 1s/^X//'
  sed_quote_subst='s/\([\\`\\$]\)/\\\1/g'
+ # test EBCDIC or ASCII
+ case `echo '' | od -x` in
+ *15*) # EBCDIC based system
+   SP2NL='tr \100 \025'
+   NL2SP='tr \025 \100'
+   ;;
+ *) # Assume ASCII based system
SP2NL='tr \040 \012'
NL2SP='tr \015\012 \040\040'
+   ;;
+ esac

  # NLS nuisances.
  # Only set LANG and LC_ALL to C if already set.

  -- Howard Chu
  Chief Architect, Symas Corp.   Director, Highland Sun
  http://www.symas.com   http://highlandsun.com/hyc
  Symas: Premier OpenSource Development and Support



___
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool