<?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: trying to compile vsftpd in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/trying-to-compile-vsftpd/m-p/3539559#M554570</link>
    <description>Editing that file and adding that line worked.  Thanks for the tip Ermin.</description>
    <pubDate>Sat, 07 May 2005 11:18:04 GMT</pubDate>
    <dc:creator>Amy Musser</dc:creator>
    <dc:date>2005-05-07T11:18:04Z</dc:date>
    <item>
      <title>trying to compile vsftpd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/trying-to-compile-vsftpd/m-p/3539555#M554566</link>
      <description>I am running HP-UX 11iv2 and I'm trying to compile vsftpd 2.0.3 and I'm getting the following error.&lt;BR /&gt;&lt;BR /&gt;# make&lt;BR /&gt;        gcc -c sysdeputil.c -O2 -Wall -W -Wshadow -idirafter dummyinc&lt;BR /&gt;sysdeputil.c: In function `vsf_sysdep_check_auth':&lt;BR /&gt;sysdeputil.c:289: warning: initialization from incompatible pointer type&lt;BR /&gt;sysdeputil.c: In function `vsf_sysutil_setproctitle_internal':&lt;BR /&gt;sysdeputil.c:827: warning: assignment discards qualifiers from pointer target type&lt;BR /&gt;sysdeputil.c: In function `vsf_insert_uwtmp':&lt;BR /&gt;sysdeputil.c:1146: warning: implicit declaration of function `updwtmpx'&lt;BR /&gt;sysdeputil.c:1146: error: `WTMPX_FILE' undeclared (first use in this function)&lt;BR /&gt;sysdeputil.c:1146: error: (Each undeclared identifier is reported only once&lt;BR /&gt;sysdeputil.c:1146: error: for each function it appears in.)&lt;BR /&gt;sysdeputil.c: In function `vsf_remove_uwtmp':&lt;BR /&gt;sysdeputil.c:1166: error: `WTMPX_FILE' undeclared (first use in this function)&lt;BR /&gt;*** Error exit code 1&lt;BR /&gt;&lt;BR /&gt;Stop.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Anyone else ever run into this?</description>
      <pubDate>Fri, 06 May 2005 14:40:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/trying-to-compile-vsftpd/m-p/3539555#M554566</guid>
      <dc:creator>Amy Musser</dc:creator>
      <dc:date>2005-05-06T14:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: trying to compile vsftpd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/trying-to-compile-vsftpd/m-p/3539556#M554567</link>
      <description>After some googling I saw that it's a pretty common problem on HPUX when compiling different applications and it appears as bug report. Like here:&lt;BR /&gt;&lt;A href="http://mail.gnome.org/archives/gnome-list/1998-November/msg00443.html" target="_blank"&gt;http://mail.gnome.org/archives/gnome-list/1998-November/msg00443.html&lt;/A&gt;&lt;BR /&gt;Yes, it's old, but it seems that the problem is still actual.&lt;BR /&gt;&lt;BR /&gt;I think you should ask for a patch from developers os vsftpd.</description>
      <pubDate>Fri, 06 May 2005 16:18:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/trying-to-compile-vsftpd/m-p/3539556#M554567</guid>
      <dc:creator>Alex Lavrov.</dc:creator>
      <dc:date>2005-05-06T16:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: trying to compile vsftpd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/trying-to-compile-vsftpd/m-p/3539557#M554568</link>
      <description>Almost every single application that was open source that I used in various HP classes required some minor changes in the configuration files or header files before it would compile in HP-UX.&lt;BR /&gt;&lt;BR /&gt;What you are trying is not very common. Proftpd has been ported to HP-UX and has the bugs pretty much worked out.&lt;BR /&gt;&lt;BR /&gt;If you suceed, perhaps take the time to create a depot version, but beware of security issues and instability. Test heavily before you rely on it.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 06 May 2005 17:09:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/trying-to-compile-vsftpd/m-p/3539557#M554568</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-05-06T17:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: trying to compile vsftpd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/trying-to-compile-vsftpd/m-p/3539558#M554569</link>
      <description>HP-UX doesn't use wtmpx file, instead it uses wtmp file (/var/adm/wtmp). This binary file records all logins and logouts.&lt;BR /&gt;&lt;BR /&gt;To fix simply edit sysdeputil.c and find the following section. Last line before #endif is what you need to add. This will make vsftpd use wtmp related functions (not wtmpx equivalents).&lt;BR /&gt;&lt;BR /&gt;#ifdef __hpux&lt;BR /&gt;  #include &lt;SYS&gt;&lt;BR /&gt;  #ifdef SF_DISCONNECT&lt;BR /&gt;    #define VSF_SYSDEP_HAVE_HPUX_SENDFILE&lt;BR /&gt;  #endif&lt;BR /&gt;  #include &lt;SYS&gt;&lt;BR /&gt;  #include &lt;SYS&gt;&lt;BR /&gt;  #ifdef PSTAT_SETCMD&lt;BR /&gt;    #define VSF_SYSDEP_HAVE_HPUX_SETPROCTITLE&lt;BR /&gt;  #endif&lt;BR /&gt;  #undef VSF_SYSDEP_HAVE_UTMPX&lt;BR /&gt;#endif&lt;BR /&gt;&lt;BR /&gt;After modifying sysdeputil.c as described vsftpd should compile without any problems.&lt;/SYS&gt;&lt;/SYS&gt;&lt;/SYS&gt;</description>
      <pubDate>Sat, 07 May 2005 04:16:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/trying-to-compile-vsftpd/m-p/3539558#M554569</guid>
      <dc:creator>Ermin Borovac</dc:creator>
      <dc:date>2005-05-07T04:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: trying to compile vsftpd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/trying-to-compile-vsftpd/m-p/3539559#M554570</link>
      <description>Editing that file and adding that line worked.  Thanks for the tip Ermin.</description>
      <pubDate>Sat, 07 May 2005 11:18:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/trying-to-compile-vsftpd/m-p/3539559#M554570</guid>
      <dc:creator>Amy Musser</dc:creator>
      <dc:date>2005-05-07T11:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: trying to compile vsftpd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/trying-to-compile-vsftpd/m-p/3539560#M554571</link>
      <description>Hi!&lt;BR /&gt;&lt;BR /&gt;I follow this instructions when I install vsftpd but I have still this error... &lt;BR /&gt;&lt;BR /&gt;The difference is that I work with HPUX 11iv1 and not v2 : this is a probleme?&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Fri, 04 Nov 2005 03:41:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/trying-to-compile-vsftpd/m-p/3539560#M554571</guid>
      <dc:creator>feuillet</dc:creator>
      <dc:date>2005-11-04T03:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: trying to compile vsftpd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/trying-to-compile-vsftpd/m-p/3539561#M554572</link>
      <description>feuilet,&lt;BR /&gt;&lt;BR /&gt;If you are having more problem then post as a separate thread with issues and log informations to get help. If you add question with this thread then, amy has to assign points. :)&lt;BR /&gt;&lt;BR /&gt;Start to create a new thread with your try and issues.&lt;BR /&gt;&lt;BR /&gt;-Muthu</description>
      <pubDate>Fri, 04 Nov 2005 03:44:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/trying-to-compile-vsftpd/m-p/3539561#M554572</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-11-04T03:44:41Z</dc:date>
    </item>
  </channel>
</rss>

