<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SSH 2.0.13 on HP-UX 11 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-2-0-13-on-hp-ux-11/m-p/2420611#M728841</link>
    <description>Thank you for the advice, but I actually managed to compile it with HP C/ANSI C &lt;BR /&gt;a couple of hours ago after failing to do so for about a week.&lt;BR /&gt;&lt;BR /&gt;As far as I can tell the error was in /usr/include/rpcsvc/nis.h. In lines &lt;BR /&gt;210-213 it says:&lt;BR /&gt;&lt;BR /&gt;struct nis_oid {&lt;BR /&gt;        u_long ctime;&lt;BR /&gt;        u_long mtime;&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;What happened everytime I ran make was that everything worked fine until the &lt;BR /&gt;compiler came to sshunixuser.c and started complaining about this part of nis.h &lt;BR /&gt;and then stop. It took some time to find any info at all about this but after a &lt;BR /&gt;while (i.e. a week) I found some documentation that I found on the web (I've &lt;BR /&gt;looked but I can't find the URL right now) that said that ctime was deprecated &lt;BR /&gt;under HP-UX 11.0 and that you should use strftime instead. After I had changed &lt;BR /&gt;ctime to strftime on row 211 in nis.h SSH 2.0.13 compiled just fine.&lt;BR /&gt;&lt;BR /&gt;// Fredrik</description>
    <pubDate>Fri, 31 Mar 2000 05:38:04 GMT</pubDate>
    <dc:creator>Fredrik Nygren_2</dc:creator>
    <dc:date>2000-03-31T05:38:04Z</dc:date>
    <item>
      <title>SSH 2.0.13 on HP-UX 11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-2-0-13-on-hp-ux-11/m-p/2420609#M728839</link>
      <description>I was wondering if anyone has been able to compile SSH 2.0.13 for HP-UX 11.0?&lt;BR /&gt;&lt;BR /&gt;I recently upgraded one of our servers from HP-UX 10.20 to 11.0 and as the last &lt;BR /&gt;step of that upgrade I have been trying to secure the server. My goal is to &lt;BR /&gt;only have SSH open on the server (something that worked perfectly under 10.20). &lt;BR /&gt;At first I tried to compile it with gcc 2.0.95 which I downloaded as binaries &lt;BR /&gt;from the Software Porting and Archive Centre For HP-UX. When that did not work &lt;BR /&gt;I compiled gcc myself, but I still could not compile SSH 2.0.13. Then as a last &lt;BR /&gt;resort I tried to compile SSH with HP's own C/ANSI C compiler.&lt;BR /&gt;&lt;BR /&gt;Without posting error messages and such in this forum (I will if anyone wants &lt;BR /&gt;me to though) I need to know if anyone has managed to get this to work at all? &lt;BR /&gt;Am I just a lousy compiler or is this really impossible?&lt;BR /&gt;&lt;BR /&gt;Any input you might have will be appreciated.&lt;BR /&gt;&lt;BR /&gt;Regards, Fredrik.&lt;BR /&gt;</description>
      <pubDate>Wed, 29 Mar 2000 07:41:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-2-0-13-on-hp-ux-11/m-p/2420609#M728839</guid>
      <dc:creator>Fredrik Nygren_2</dc:creator>
      <dc:date>2000-03-29T07:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: SSH 2.0.13 on HP-UX 11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-2-0-13-on-hp-ux-11/m-p/2420610#M728840</link>
      <description>frederick,&lt;BR /&gt;&lt;BR /&gt;i have recently installed ssh 2.0.13 on an hp-ux 11.0 environment. the real &lt;BR /&gt;trick to making it work is to be sure you have all the proper gcc utilities &lt;BR /&gt;installed and all recommended hp-ux patches.&lt;BR /&gt;&lt;BR /&gt;for the systems i installed i used gcc 2.95.2, binutils 2.9.1, bison 1.28 and &lt;BR /&gt;flex 2.5.4. note there is a specific order that you need to install the &lt;BR /&gt;utilities in so that everything installs properly.&lt;BR /&gt;i believe it was bison, flex, binutils then gcc. look at the output from your &lt;BR /&gt;configure and make commands that will tell you for sure.&lt;BR /&gt;&lt;BR /&gt;also i needed to install a number of hp-ux 11.0 patches.&lt;BR /&gt;they included PHKL 18543, 19537, 19403 and 20629, PHCO_15465, PHSS_17156, &lt;BR /&gt;17534, 17566, 18012, 19256, 19963 and 20715.&lt;BR /&gt;&lt;BR /&gt;once you have completed all that it installs and functions well.&lt;BR /&gt;&lt;BR /&gt;hope this helps, good luck.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;bill&lt;BR /&gt;</description>
      <pubDate>Thu, 30 Mar 2000 13:37:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-2-0-13-on-hp-ux-11/m-p/2420610#M728840</guid>
      <dc:creator>Willaim Hart</dc:creator>
      <dc:date>2000-03-30T13:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: SSH 2.0.13 on HP-UX 11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-2-0-13-on-hp-ux-11/m-p/2420611#M728841</link>
      <description>Thank you for the advice, but I actually managed to compile it with HP C/ANSI C &lt;BR /&gt;a couple of hours ago after failing to do so for about a week.&lt;BR /&gt;&lt;BR /&gt;As far as I can tell the error was in /usr/include/rpcsvc/nis.h. In lines &lt;BR /&gt;210-213 it says:&lt;BR /&gt;&lt;BR /&gt;struct nis_oid {&lt;BR /&gt;        u_long ctime;&lt;BR /&gt;        u_long mtime;&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;What happened everytime I ran make was that everything worked fine until the &lt;BR /&gt;compiler came to sshunixuser.c and started complaining about this part of nis.h &lt;BR /&gt;and then stop. It took some time to find any info at all about this but after a &lt;BR /&gt;while (i.e. a week) I found some documentation that I found on the web (I've &lt;BR /&gt;looked but I can't find the URL right now) that said that ctime was deprecated &lt;BR /&gt;under HP-UX 11.0 and that you should use strftime instead. After I had changed &lt;BR /&gt;ctime to strftime on row 211 in nis.h SSH 2.0.13 compiled just fine.&lt;BR /&gt;&lt;BR /&gt;// Fredrik</description>
      <pubDate>Fri, 31 Mar 2000 05:38:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-2-0-13-on-hp-ux-11/m-p/2420611#M728841</guid>
      <dc:creator>Fredrik Nygren_2</dc:creator>
      <dc:date>2000-03-31T05:38:04Z</dc:date>
    </item>
  </channel>
</rss>

