TIP: Click on subject to list as thread! ANSI
echo: os2prog
to: Francisco Caselin Nava
from: Phil Crown
date: 1996-11-05 20:00:00
subject: Which Files Are Needed?

-=> Quoting Francisco Caselin Nava to All <=-

 FCN> Hello All =)

 FCN> I have some questions, if somebody can help me:

 FCN> What files are needed for download the GNU C/C++
 FCN> compiler for OS/2 minimal (PM Dev, TEX Mode, API Reference ETC.)?

INSTALL.DOC tells what files are needed.  This is always in the same
directory as the rest of the EMX/GNU suite.

From install.doc...

"To use the GNU C compiler with emx, you need at least

  emxrt.zip     emx runtime package
  emxdev1.zip   Files required for developing programs with emx (part 1)
  emxdev2.zip   Files required for developing programs with emx (part 2)
  gnudev1.zip   The GNU C compiler, the GNU debugger, and other tools (part 1)
  gnudev2.zip   The GNU C compiler, the GNU debugger, and other tools (part 2)
  gppdev.zip    Additional files for GCC required for compiling C++ programs
  gobjcdev.zip  Additional files for GCC required for compiling
                programs written in the Objective C language"

You only need the last two if you're using C++ or Objective C.

 FCN> If somebody can re-sendme the program source with the OS/2 *.MSG
 FCN> Decompiler files?

 FCN> If somebody have a program which open a file, search for a string on,
 FCN> replace it for another, and close the file?

Here's a small REXX script that will search and replace text in text
files.  I was using it as an IPFC pre-processor to replace & with &.,
. with &per., etc...


/* replace text in a file

 usage: rep-rexx   

 */

parse arg fn s r

if fn == "" | s == "" | r == "" then do
  say "usage: rep-rexx   "
  exit 0
end

s = strip(s, 'b', '"')
r = strip(r, 'b', '"')

len = length(r)
if length(s) > len then len = length(s)

do while lines(fn)>0
    l = linein(fn)
    xlast = 1
    x = pos(s,l,xlast)
    do while x \== 0
        l = delstr(l,x,length(s))
        l = insert(r,l,x-1)
        xlast = x + len
        x = pos(s,l,xlast)
    end
    say l
end


Phil Crown
pcrown{at}airmail.net
http://web2.airmail.net/pcrown/
___ Blue Wave/OS2 v2.30

--- WILDMAIL!/WC v4.12 
* Origin: The Blues Cafe (214) 638-1186 8 Nodes (1:124/8014.0)
SEEN-BY: 50/99 270/101 620/243 625/160 711/401 409 410 413 430 808 809 934
SEEN-BY: 711/955 712/407 515 624 628 713/317 800/1
@PATH: 124/8014 8001 1 396/1 270/101 712/515 711/808 934

SOURCE: echomail via fidonet.ozzmosis.com

Email questions or comments to sysop@ipingthereforeiam.com
All parts of this website painstakingly hand-crafted in the U.S.A.!
IPTIA BBS/MUD/Terminal/Game Server List, © 2025 IPTIA Consulting™.