aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/programs/xterm/README.os390
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-02-02 15:02:49 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-02-02 15:02:49 +0100
commitb16b9e4656e7199c2aec74a4c8ebc7a875d3ba73 (patch)
tree4361edef0d42d5bf5ac984ef72b4fac35426eae7 /nx-X11/programs/xterm/README.os390
parent0d5a83e986f39982c0924652a3662e60b1f23162 (diff)
downloadnx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.tar.gz
nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.tar.bz2
nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.zip
massive reduction of unneeded files
Diffstat (limited to 'nx-X11/programs/xterm/README.os390')
-rw-r--r--nx-X11/programs/xterm/README.os39074
1 files changed, 0 insertions, 74 deletions
diff --git a/nx-X11/programs/xterm/README.os390 b/nx-X11/programs/xterm/README.os390
deleted file mode 100644
index 2fe50b604..000000000
--- a/nx-X11/programs/xterm/README.os390
+++ /dev/null
@@ -1,74 +0,0 @@
--- $XFree86: xc/programs/xterm/README.os390,v 1.3 2000/09/22 10:42:05 alanh Exp $
-
-Below are install instructions for os/390 2.5 & below and
-for os/390 2.6 & above. The basic reasons for exporting
-the LIBS and CFLAGS variables is to get the configure
-script to run properly under os/390. configure, when
-checking for X, attempts to compile a program something like
-
- int main() {
- XtMalloc()
- ; return 0; }
-
-using 'cc -o conftest conftest.c -lXt'. However this results
-in a number of linkedit messages such as:
-
- IEW2456E 9207 SYMBOL xcatd UNRESOLVED. MEMBER COULD NOT BE INCLUDED FROM THE
- DESIGNATED CALL LIBRARY. NAME SPACE = 3
- IEW2456E 9207 SYMBOL XrmQGetResource UNRESOLVED. MEMBER COULD NOT BE INCLUDED
- FROM THE DESIGNATED CALL LIBRARY.
- IEW2456E 9207 SYMBOL XrmGetDatabase UNRESOLVED. MEMBER COULD NOT BE INCLUDED
- FROM THE DESIGNATED CALL LIBRARY.
-
-The only way I can get this program to compile and link is to
-use 'cc -o conftest conftest.c -lXt -lX11 -lSM -lICE'.
-With os/390 2.6 and above, IBM has provided X functions in dlls;
-this is the reason for the separate install steps. In fact,
-trying to use the X archive files (eg -lX11) when linking xterm
-results in an abend0C1 in low storage when X tries to call the
-initialize function (at least on my system). This has something
-to do with the calling X routine thinking it has a function pointer
-descriptor (c++) when it actually has just a function pointer (c).
-Unfortunately, I have been unable to recreate the problem in a
-simple testcase, so I haven't reported it to IBM. Anyway, for os/390
-2.6 and above, configure will build a Makefile with the following line:
-
- LIBS = -lXaw -lXext -lXmu -lXt -lSM -lICE -lX11 /usr/lib/Xaw.x /usr/lib/SM.x /usr/lib/ICE.x /usr/lib/X11.x -lcurses
-
-The '-lXaw -lXext -lXmu -lXt -lSM -lICE -lX11' should be manually removed;
-this isn't strictly necessary, but will reduce the size of the executable
-by about 4M.
-
-The '-Wl,EDIT=NO' causes the Binder to produce a non-editable executable,
-dramatically reducing the size of the executable file.
-
-Good Luck!!
-Greg Smith
-rys@trex.rtpnc.epa.gov
-
-
-
-Install instructions for os/390 2.5 and *below*:
-------------------------------------------------
- gunzip xterm.tar.gz
- pax -o from=ISO8859-1,to=IBM-1047 -rf xterm.tar
- cd xterm
- export LIBS='-lXt -lX11 -lSM -lICE'
- export CFLAGS='-D_ALL_SOURCE -Wl,EDIT=NO'
- ./configure
- make
- export DISPLAY=my.xserver.name:0
- ./xterm
-
-
-Install instructions for os/390 2.6 and *above*:
-------------------------------------------------
- gunzip xterm.tar.gz
- pax -o from=ISO8859-1,to=IBM-1047 -rf xterm.tar
- cd xterm
- ./configure # LIBS, CFLAGS, and CC are defined by configure for os/390 2.6.
- [optional: edit the Makefile and remove '-lXaw -lXext -lXmu -lXt -lSM -lICE -lX11'
- from the LIBS assignment]
- make
- export DISPLAY=my.xserver.name:0
- ./xterm