<?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: Compile error in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976556#M718265</link>
    <description>All those GNU modules support $CONFIG_SITE, an environment variable that points to a file where your local settings are stored.&lt;BR /&gt;&lt;BR /&gt;Mine looks like below(also attached) to give you an idea of what you could put in there. Note that $OSTYPE is set by tcsh, the shell of my choice&lt;BR /&gt;&lt;BR /&gt;a5:/u/usr/merijn 108 &amp;gt; cat $CONFIG_SITE&lt;BR /&gt;# $CONFIG_SITE -&amp;gt; /pro/3gl/GNU/policy.sh&lt;BR /&gt;&lt;BR /&gt;echo "OSTYPE: $OSTYPE, CC: $CC, CFLAGS: $CFLAGS, LDFLAGS: $LDFLAGS"&lt;BR /&gt;if [ $OSTYPE = hpux -a ${CC:-x} = x ]; then&lt;BR /&gt;    CC=cc&lt;BR /&gt;#   CFLAGS="-Ae -fast +Onolimit"&lt;BR /&gt;    LDFLAGS="-Wl,+vnocompatwarnings $LDFLAGS"&lt;BR /&gt;    CFLAGS="-Ae +O2 +Onolimit $CFLAGS"&lt;BR /&gt;    if [ $HOST = d3 ]; then&lt;BR /&gt;        CFLAGS=$CFLAGS" +DAportable"&lt;BR /&gt;        fi&lt;BR /&gt;elif [ $OSTYPE = aix -a ${CC:-x} = x ]; then&lt;BR /&gt;    CC=cc&lt;BR /&gt;    CFLAGS="-O2 -qmaxmem=204800"&lt;BR /&gt;elif [ $OSTYPE = osf1 ]; then&lt;BR /&gt;    CC=cc&lt;BR /&gt;    CFLAGS="-O2 -std"&lt;BR /&gt;elif [ ${CC:-x} = gcc -o ${CC:-x} = gcc32 -o ${CC:-x} = gcc64 ]; then&lt;BR /&gt;    CFLAGS="-O4 $CFLAGS"&lt;BR /&gt;else&lt;BR /&gt;    #CC=cc&lt;BR /&gt;    CFLAGS=-O2&lt;BR /&gt;    fi&lt;BR /&gt;&lt;BR /&gt;if [ $OSTYPE = hpux -a ${CC:-x} = gcc64 ]; then&lt;BR /&gt;    PATH="/usr/local/pa20_64:$PATH"&lt;BR /&gt;    CC=gcc&lt;BR /&gt;    CFLAGS=$CFLAGS" -mpa-risc-2-0"&lt;BR /&gt;    LDFLAGS="-s -L/usr/lib/pa20_64 "$LDFLAGS&lt;BR /&gt;elif [ $OSTYPE = hpux -a ${CC:-x} = gcc ]; then&lt;BR /&gt;    if [ $HOST = d3 -o `uname -r` = "B.10.20" ]; then&lt;BR /&gt;        CFLAGS=$CFLAGS" -mpa-risc-1-1"&lt;BR /&gt;    else&lt;BR /&gt;        CFLAGS=$CFLAGS" -mpa-risc-2-0"&lt;BR /&gt;        fi&lt;BR /&gt;    fi&lt;BR /&gt;&lt;BR /&gt;case "$CFLAGS:$CC" in&lt;BR /&gt;    *DA2.0w*|*DD64*|*:gcc64) ;;&lt;BR /&gt;    *)  CFLAGS=$CFLAGS" -I/pro/local/include"&lt;BR /&gt;        LDFLAGS=$LDFLAGS" -s -L/pro/local/lib"&lt;BR /&gt;    esac&lt;BR /&gt;&lt;BR /&gt;if [ "${USE_NCURSES:-}" = "YES" ]; then&lt;BR /&gt;    CFLAGS=`echo "$CFLAGS -I." | sed -e 's,-I,-I/pro/local/include/ncurses -I,'&lt;BR /&gt;-e 's, -I.$,,'`&lt;BR /&gt;    fi&lt;BR /&gt;&lt;BR /&gt;if [ -d /usr/include/X11R6 ]; then&lt;BR /&gt;    CFLAGS=$CFLAGS" -I/usr/include/X11R6"&lt;BR /&gt;    fi&lt;BR /&gt;if [ -d /usr/lib/X11R6 ]; then&lt;BR /&gt;    LDFLAGS=$LDFLAGS" -L/usr/lib/X11R6"&lt;BR /&gt;    fi&lt;BR /&gt;echo "OSTYPE: $OSTYPE, CC: $CC, CFLAGS: $CFLAGS, LDFLAGS: $LDFLAGS"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Enjoy, have FUN! H.Merijn</description>
    <pubDate>Tue, 20 May 2003 11:55:48 GMT</pubDate>
    <dc:creator>H.Merijn Brand (procura</dc:creator>
    <dc:date>2003-05-20T11:55:48Z</dc:date>
    <item>
      <title>Compile error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976548#M718257</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I already had another question today about how to install GD::GRAPH::lines&lt;BR /&gt;As that issue can only be solved by the having gd installed, I chose to have a new question opened.&lt;BR /&gt;&lt;BR /&gt;The problem is in compiling gd-2.0.12. I did install zlib and I did install libpng (in /usr/local).&lt;BR /&gt;Now when running cd /usr/local/gd-2.0.12/; ./configure --prefix=/usr/local it looks like it's ok, but when looking at the config.log file you see it didn't :&lt;BR /&gt;&lt;BR /&gt;configure:10613: result: no&lt;BR /&gt;configure:10641: checking for XpmReadFileToXpmImage in -lXpm&lt;BR /&gt;configure:10672: gcc -o conftest -g -O2   -I/usr/local/include/libpng12  conftest.c -lXpm -lX11 -lm  &amp;gt;&amp;amp;5&lt;BR /&gt;/usr/ccs/bin/ld: Can't find library: "Xpm"&lt;BR /&gt;collect2: ld returned 1 exit status&lt;BR /&gt;configure:10675: $? = 1&lt;BR /&gt;configure: failed program was:&lt;BR /&gt;| #line 10648 "configure"&lt;BR /&gt;| /* confdefs.h.  */&lt;BR /&gt;|&lt;BR /&gt;| #define PACKAGE_NAME "GD"&lt;BR /&gt;| #define PACKAGE_TARNAME "gd"&lt;BR /&gt;| #define PACKAGE_VERSION "2.0.12"&lt;BR /&gt;| #define PACKAGE_STRING "GD 2.0.12"&lt;BR /&gt;| #define PACKAGE_BUGREPORT "gd@boutell.com"&lt;BR /&gt;| #define PACKAGE "gd"&lt;BR /&gt;| #define VERSION "2.0.12"&lt;BR /&gt;| #define STDC_HEADERS 1&lt;BR /&gt;| #define HAVE_SYS_TYPES_H 1&lt;BR /&gt;| #define HAVE_SYS_STAT_H 1&lt;BR /&gt;| #define HAVE_STDLIB_H 1&lt;BR /&gt;| #define HAVE_STRING_H 1&lt;BR /&gt;| #define HAVE_MEMORY_H 1&lt;BR /&gt;| #define HAVE_STRINGS_H 1&lt;BR /&gt;| #define HAVE_INTTYPES_H 1&lt;BR /&gt;| #define HAVE_UNISTD_H 1&lt;BR /&gt;| #define HAVE_DLFCN_H 1&lt;BR /&gt;| #define STDC_HEADERS 1&lt;BR /&gt;| #define HAVE_ERRNO_H 1&lt;BR /&gt;| #define HAVE_LIMITS_H 1&lt;BR /&gt;| #define HAVE_STDDEF_H 1&lt;BR /&gt;| #define HAVE_STDLIB_H 1&lt;BR /&gt;| #define HAVE_STRING_H 1&lt;BR /&gt;| #define HAVE_UNISTD_H 1&lt;BR /&gt;| #define HAVE_ICONV 1&lt;BR /&gt;| #define ICONV_CONST&lt;BR /&gt;| #define HAVE_ICONV_H 1&lt;BR /&gt;| #define HAVE_ICONV_T_DEF 1&lt;BR /&gt;| #define HAVE_LIBM 1&lt;BR /&gt;| #define HAVE_PNG_H 1&lt;BR /&gt;| /* end confdefs.h.  */&lt;BR /&gt;|&lt;BR /&gt;| /* Override any gcc2 internal prototype to avoid an error.  */&lt;BR /&gt;| #ifdef __cplusplus&lt;BR /&gt;&lt;BR /&gt;When running the "make install" I get the following error :&lt;BR /&gt;&lt;BR /&gt;/usr/local/gd-2.0.12 3# make install&lt;BR /&gt;Making install in config&lt;BR /&gt;No suffix list.&lt;BR /&gt;No suffix list.&lt;BR /&gt;        /bin/sh ../config/mkinstalldirs /usr/local/bin&lt;BR /&gt; ../config/install-sh -c gdlib-config /usr/local/bin/gdlib-config&lt;BR /&gt;Making install in test&lt;BR /&gt;No suffix list.&lt;BR /&gt;No suffix list.&lt;BR /&gt;        /bin/sh ./libtool --mode=link gcc  -g -O2    -o gdparttopng  gdparttopng.o ./libgd.la -lm &lt;BR /&gt;libtool: link: warning: this platform does not like uninstalled shared libraries&lt;BR /&gt;libtool: link: `gdparttopng' will be relinked during installation&lt;BR /&gt;gcc -g -O2 -o .libs/gdparttopng gdparttopng.o  ./.libs/libgd.sl -lm -Wl,+b -Wl,/usr/local/gd-2.0.12/.libs:/usr/local/lib&lt;BR /&gt;/usr/ccs/bin/ld: Unsatisfied symbols:&lt;BR /&gt;   gdImageCreateFromGd2Part (first referenced in gdparttopng.o) (code)&lt;BR /&gt;collect2: ld returned 1 exit status&lt;BR /&gt;*** Error exit code 1&lt;BR /&gt;&lt;BR /&gt;Stop.&lt;BR /&gt;*** Error exit code 1&lt;BR /&gt;&lt;BR /&gt;Stop.&lt;BR /&gt;&lt;BR /&gt;Anyone that could help me out ? &lt;BR /&gt;&lt;BR /&gt;Regs David</description>
      <pubDate>Mon, 19 May 2003 15:04:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976548#M718257</guid>
      <dc:creator>David_246</dc:creator>
      <dc:date>2003-05-19T15:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: Compile error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976549#M718258</link>
      <description>David&lt;BR /&gt;&lt;BR /&gt;Start here:-&lt;BR /&gt;&lt;BR /&gt;/usr/ccs/bin/ld: Can't find library: "Xpm" &lt;BR /&gt;&lt;BR /&gt;Do you have Xpm ?&lt;BR /&gt;&lt;BR /&gt;Paula</description>
      <pubDate>Mon, 19 May 2003 16:04:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976549#M718258</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2003-05-19T16:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: Compile error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976550#M718259</link>
      <description>You've got gd configured to use XPM format images, but you don't have libXpm installed on your system.&lt;BR /&gt;&lt;BR /&gt;You cand/l and install it from:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/X11/Graphics/xpm-3.4k/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/X11/Graphics/xpm-3.4k/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This will put libXpm.sl and libXpm.a in /usr/local/lib on your system.  Then re-run your config and make.</description>
      <pubDate>Mon, 19 May 2003 16:09:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976550#M718259</guid>
      <dc:creator>Bill Douglass</dc:creator>
      <dc:date>2003-05-19T16:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: Compile error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976551#M718260</link>
      <description>I will try for the second!!!&lt;BR /&gt;&lt;BR /&gt;Normally I get No suffix list when I use /usr/bin/make.  With /usr/local/gmake I dont get these type of errors.&lt;BR /&gt;&lt;BR /&gt;Did you use gnu make to compile these?&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;Umapathy&lt;BR /&gt;</description>
      <pubDate>Mon, 19 May 2003 16:39:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976551#M718260</guid>
      <dc:creator>Umapathy S</dc:creator>
      <dc:date>2003-05-19T16:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: Compile error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976552#M718261</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Thanks for your reply. I installed Xpm (as provided in the url), installed the gmake from Merijn's site. But still I even get the missing Xpm :(&lt;BR /&gt;And exact the same error again when compiling.&lt;BR /&gt;&lt;BR /&gt;Why does it not recognize I have it installed ? (yes, officialy using swinstall and it succeeded correct)&lt;BR /&gt;When running ./configure it also will report in the end :&lt;BR /&gt;&lt;BR /&gt;** Configuration summary for gd 2.0.12:&lt;BR /&gt;&lt;BR /&gt;   Support for PNG library:          no&lt;BR /&gt;   Support for JPEG library:         no&lt;BR /&gt;   Support for Freetype 2.x library: no&lt;BR /&gt;   Support for Xpm library:          no&lt;BR /&gt;&lt;BR /&gt;Although Xpm and PNG is installed currently ?? Any last advise ?&lt;BR /&gt;&lt;BR /&gt;Regs David</description>
      <pubDate>Tue, 20 May 2003 07:21:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976552#M718261</guid>
      <dc:creator>David_246</dc:creator>
      <dc:date>2003-05-20T07:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Compile error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976553#M718262</link>
      <description>hi,&lt;BR /&gt;You should specify the PATH to the lib.&lt;BR /&gt;2 ways :&lt;BR /&gt;1 - LD_LIBRARY_PATH, and add in this env variable the path to xpm and png libs.&lt;BR /&gt;2 - In the configure script .&lt;BR /&gt;Check with ./configure --help&lt;BR /&gt;and see if there's a with-xpm-dir=... or something like that (and also with png).&lt;BR /&gt;I already installed gd lib from sources, and if I remember i used the option 2...&lt;BR /&gt;hth&lt;BR /&gt;Benoit</description>
      <pubDate>Tue, 20 May 2003 11:28:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976553#M718262</guid>
      <dc:creator>benoit Bruckert</dc:creator>
      <dc:date>2003-05-20T11:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Compile error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976554#M718263</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;You need to tell the configure the location of xpm headers and library:&lt;BR /&gt;&lt;BR /&gt;Use this:&lt;BR /&gt;&lt;BR /&gt;CPPFLAGS="-I/usr/local/include/X11" LDFLGES="-L/usr/local/lib/X11" ./configure&lt;BR /&gt;&lt;BR /&gt;That should provide configure with path to Xpm library and header.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I hope that helps.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;__Mehdi</description>
      <pubDate>Tue, 20 May 2003 11:40:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976554#M718263</guid>
      <dc:creator>Mehdi_1</dc:creator>
      <dc:date>2003-05-20T11:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: Compile error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976555#M718264</link>
      <description>Sorry, I meant:&lt;BR /&gt;&lt;BR /&gt;CPPFLAGES="-I/usr/local/include/X11" -LDFLAGES="-L/usr/local/lib/X11" ./configure&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;All in one line.&lt;BR /&gt;&lt;BR /&gt;__Mehdi</description>
      <pubDate>Tue, 20 May 2003 11:44:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976555#M718264</guid>
      <dc:creator>Mehdi_1</dc:creator>
      <dc:date>2003-05-20T11:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: Compile error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976556#M718265</link>
      <description>All those GNU modules support $CONFIG_SITE, an environment variable that points to a file where your local settings are stored.&lt;BR /&gt;&lt;BR /&gt;Mine looks like below(also attached) to give you an idea of what you could put in there. Note that $OSTYPE is set by tcsh, the shell of my choice&lt;BR /&gt;&lt;BR /&gt;a5:/u/usr/merijn 108 &amp;gt; cat $CONFIG_SITE&lt;BR /&gt;# $CONFIG_SITE -&amp;gt; /pro/3gl/GNU/policy.sh&lt;BR /&gt;&lt;BR /&gt;echo "OSTYPE: $OSTYPE, CC: $CC, CFLAGS: $CFLAGS, LDFLAGS: $LDFLAGS"&lt;BR /&gt;if [ $OSTYPE = hpux -a ${CC:-x} = x ]; then&lt;BR /&gt;    CC=cc&lt;BR /&gt;#   CFLAGS="-Ae -fast +Onolimit"&lt;BR /&gt;    LDFLAGS="-Wl,+vnocompatwarnings $LDFLAGS"&lt;BR /&gt;    CFLAGS="-Ae +O2 +Onolimit $CFLAGS"&lt;BR /&gt;    if [ $HOST = d3 ]; then&lt;BR /&gt;        CFLAGS=$CFLAGS" +DAportable"&lt;BR /&gt;        fi&lt;BR /&gt;elif [ $OSTYPE = aix -a ${CC:-x} = x ]; then&lt;BR /&gt;    CC=cc&lt;BR /&gt;    CFLAGS="-O2 -qmaxmem=204800"&lt;BR /&gt;elif [ $OSTYPE = osf1 ]; then&lt;BR /&gt;    CC=cc&lt;BR /&gt;    CFLAGS="-O2 -std"&lt;BR /&gt;elif [ ${CC:-x} = gcc -o ${CC:-x} = gcc32 -o ${CC:-x} = gcc64 ]; then&lt;BR /&gt;    CFLAGS="-O4 $CFLAGS"&lt;BR /&gt;else&lt;BR /&gt;    #CC=cc&lt;BR /&gt;    CFLAGS=-O2&lt;BR /&gt;    fi&lt;BR /&gt;&lt;BR /&gt;if [ $OSTYPE = hpux -a ${CC:-x} = gcc64 ]; then&lt;BR /&gt;    PATH="/usr/local/pa20_64:$PATH"&lt;BR /&gt;    CC=gcc&lt;BR /&gt;    CFLAGS=$CFLAGS" -mpa-risc-2-0"&lt;BR /&gt;    LDFLAGS="-s -L/usr/lib/pa20_64 "$LDFLAGS&lt;BR /&gt;elif [ $OSTYPE = hpux -a ${CC:-x} = gcc ]; then&lt;BR /&gt;    if [ $HOST = d3 -o `uname -r` = "B.10.20" ]; then&lt;BR /&gt;        CFLAGS=$CFLAGS" -mpa-risc-1-1"&lt;BR /&gt;    else&lt;BR /&gt;        CFLAGS=$CFLAGS" -mpa-risc-2-0"&lt;BR /&gt;        fi&lt;BR /&gt;    fi&lt;BR /&gt;&lt;BR /&gt;case "$CFLAGS:$CC" in&lt;BR /&gt;    *DA2.0w*|*DD64*|*:gcc64) ;;&lt;BR /&gt;    *)  CFLAGS=$CFLAGS" -I/pro/local/include"&lt;BR /&gt;        LDFLAGS=$LDFLAGS" -s -L/pro/local/lib"&lt;BR /&gt;    esac&lt;BR /&gt;&lt;BR /&gt;if [ "${USE_NCURSES:-}" = "YES" ]; then&lt;BR /&gt;    CFLAGS=`echo "$CFLAGS -I." | sed -e 's,-I,-I/pro/local/include/ncurses -I,'&lt;BR /&gt;-e 's, -I.$,,'`&lt;BR /&gt;    fi&lt;BR /&gt;&lt;BR /&gt;if [ -d /usr/include/X11R6 ]; then&lt;BR /&gt;    CFLAGS=$CFLAGS" -I/usr/include/X11R6"&lt;BR /&gt;    fi&lt;BR /&gt;if [ -d /usr/lib/X11R6 ]; then&lt;BR /&gt;    LDFLAGS=$LDFLAGS" -L/usr/lib/X11R6"&lt;BR /&gt;    fi&lt;BR /&gt;echo "OSTYPE: $OSTYPE, CC: $CC, CFLAGS: $CFLAGS, LDFLAGS: $LDFLAGS"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Enjoy, have FUN! H.Merijn</description>
      <pubDate>Tue, 20 May 2003 11:55:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976556#M718265</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2003-05-20T11:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: Compile error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976557#M718266</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Sorry, but all your answers didn't work out for me. Maybe I should attend a course ones.&lt;BR /&gt;It's quiet anoying to not get it to work.&lt;BR /&gt;&lt;BR /&gt;5 points for al &lt;STRONG&gt;previous &lt;/STRONG&gt; answers. And a big thanks to all!&lt;BR /&gt;&lt;BR /&gt;Best Regs David</description>
      <pubDate>Wed, 21 May 2003 10:56:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/compile-error/m-p/2976557#M718266</guid>
      <dc:creator>David_246</dc:creator>
      <dc:date>2003-05-21T10:56:27Z</dc:date>
    </item>
  </channel>
</rss>

