public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* iconv.h?
@ 2003-10-30  9:52 Thomas L Roche
  2003-10-30 13:39 ` iconv.h? Gerrit P. Haase
  2003-10-30 16:54 ` libxml2 setup.hint was iconv.h? Brian Ford
  0 siblings, 2 replies; 10+ messages in thread
From: Thomas L Roche @ 2003-10-30  9:52 UTC (permalink / raw)
  To: cygwin

I'm trying to build 'nd'

http://www.gohome.org/nd/

a CLI for WebDAV needed to run a related WebDAV client under Emacs.
I have latest libxml2 (2.5.11-1) from cygwin. But when I try to build,
I get

> tlroche@tlrf204 ~/emacs/eldav-0.7.2/nd-0.7.2
> $ ./configure
> checking for a BSD-compatible install... /usr/bin/install -c
> checking whether build environment is sane... yes
> checking for gawk... gawk
> checking whether make sets $(MAKE)... yes
> checking for gcc... gcc
> checking for C compiler default output... a.exe
> checking whether the C compiler works... yes
> checking whether we are cross compiling... no
> checking for suffix of executables... .exe
> checking for suffix of object files... o
> checking whether we are using the GNU C compiler... yes
> checking whether gcc accepts -g... yes
> checking for gcc option to accept ANSI C... none needed
> checking for style of include used by make... GNU
> checking dependency style of gcc... gcc3
> checking for a BSD-compatible install... /usr/bin/install -c
> checking for xml2-config... /usr/bin/xml2-config
> checking how to run the C preprocessor... gcc -E
> checking for egrep... grep -E
> checking for ANSI C header files... yes
> checking for sys/types.h... yes
> checking for sys/stat.h... yes
> checking for stdlib.h... yes
> checking for string.h... yes
> checking for memory.h... yes
> checking for strings.h... yes
> checking for inttypes.h... yes
> checking for stdint.h... yes
> checking for unistd.h... yes
> checking parser.h usability... no
> checking parser.h presence... no
> checking for parser.h... no
> checking for ANSI C header files... (cached) yes
> checking errno.h usability... yes
> checking errno.h presence... yes
> checking for errno.h... yes
> checking fcntl.h usability... yes
> checking fcntl.h presence... yes
> checking for fcntl.h... yes
> checking for stdlib.h... (cached) yes
> checking for string.h... (cached) yes
> checking for unistd.h... (cached) yes
> checking for an ANSI C-conforming const... yes
> checking for vprintf... no
> checking for getpass... no
> checking for memset... no
> checking for strchr... no
> checking for strerror... no
> checking for strncasecmp... no
> configure: creating ./config.status
> config.status: creating Makefile
> config.status: creating config.h
> config.status: executing depfiles commands 

> tlroche@tlrf204 ~/emacs/eldav-0.7.2/nd-0.7.2
> $ make
> make  all-am
> make[1]: Entering directory `/v/tlroche/emacs/eldav-0.7.2/nd-0.7.2'
> source='nd.c' object='nd.o' libtool=no \
> depfile='.deps/nd.Po' tmpdepfile='.deps/nd.TPo' \
> depmode=gcc3 /bin/bash ./depcomp \
> gcc -DHAVE_CONFIG_H -I. -I. -I.   -I/usr/include/libxml2  -g -O2 -c 
`test -f 'nd.c' || echo './'`nd.c
> In file included from /usr/include/libxml2/libxml/parser.h:655,
>                  from /usr/include/libxml2/libxml/globals.h:16,
>                  from /usr/include/libxml2/libxml/threads.h:31,
>                  from /usr/include/libxml2/libxml/xmlmemory.h:188,
>                  from nd.c:20:
> /usr/include/libxml2/libxml/encoding.h:27:19: iconv.h: No such file or 
directory
> In file included from /usr/include/libxml2/libxml/parser.h:655,
>                  from /usr/include/libxml2/libxml/globals.h:16,
>                  from /usr/include/libxml2/libxml/threads.h:31,
>                  from /usr/include/libxml2/libxml/xmlmemory.h:188,
>                  from nd.c:20:
> /usr/include/libxml2/libxml/encoding.h:132: error: parse error before 
"iconv_t"
> /usr/include/libxml2/libxml/encoding.h:132: warning: no semicolon at end 
of struct or union
> /usr/include/libxml2/libxml/encoding.h:133: warning: data definition has 
no type or storage class
> make[1]: *** [nd.o] Error 1
> make[1]: Leaving directory `/v/tlroche/emacs/eldav-0.7.2/nd-0.7.2'
> make: *** [all] Error 2

Where/how I can get iconv.h? Feel free to post to me directly,
as well as the list.


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: iconv.h?
  2003-10-30  9:52 iconv.h? Thomas L Roche
@ 2003-10-30 13:39 ` Gerrit P. Haase
  2003-10-30 20:59   ` iconv.h? Tom Roche
  2003-10-30 16:54 ` libxml2 setup.hint was iconv.h? Brian Ford
  1 sibling, 1 reply; 10+ messages in thread
From: Gerrit P. Haase @ 2003-10-30 13:39 UTC (permalink / raw)
  To: Thomas L Roche; +Cc: cygwin

Thomas wrote:

> Where/how I can get iconv.h? Feel free to post to me directly,
> as well as the list.

http://cygwin.com/cgi-bin2/package-grep.cgi?grep=iconv.h

This shows several hits, probably you'll need the libiconv package.

Gerrit
-- 
=^..^=                                     http://nyckelpiga.de/donate.html


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* libxml2 setup.hint was Re: iconv.h?
  2003-10-30  9:52 iconv.h? Thomas L Roche
  2003-10-30 13:39 ` iconv.h? Gerrit P. Haase
@ 2003-10-30 16:54 ` Brian Ford
  2003-10-30 17:06   ` Christopher Faylor
  2003-10-30 17:54   ` Gerrit P. Haase
  1 sibling, 2 replies; 10+ messages in thread
From: Brian Ford @ 2003-10-30 16:54 UTC (permalink / raw)
  To: cygwin

A couple of questions.

Did you install libxml2-2.5.11-1 via Cygwin's setup.exe?  If so, shouldn't
it have depended on libiconv?

BTW, how does one go about viewing a package's setup.hint to check for
this kind of thing?

On Thu, 30 Oct 2003, Thomas L Roche wrote:

> I have latest libxml2 (2.5.11-1) from cygwin. But when I try to build,
> I get
>
> > gcc -DHAVE_CONFIG_H -I. -I. -I.   -I/usr/include/libxml2  -g -O2 -c
> `test -f 'nd.c' || echo './'`nd.c
> > In file included from /usr/include/libxml2/libxml/parser.h:655,
> >                  from /usr/include/libxml2/libxml/globals.h:16,
> >                  from /usr/include/libxml2/libxml/threads.h:31,
> >                  from /usr/include/libxml2/libxml/xmlmemory.h:188,
> >                  from nd.c:20:
> > /usr/include/libxml2/libxml/encoding.h:27:19: iconv.h: No such file or
> directory
> > In file included from /usr/include/libxml2/libxml/parser.h:655,
> >                  from /usr/include/libxml2/libxml/globals.h:16,
> >                  from /usr/include/libxml2/libxml/threads.h:31,
> >                  from /usr/include/libxml2/libxml/xmlmemory.h:188,
> >                  from nd.c:20:
> > /usr/include/libxml2/libxml/encoding.h:132: error: parse error before
> "iconv_t"
> > /usr/include/libxml2/libxml/encoding.h:132: warning: no semicolon at end
> of struct or union
> > /usr/include/libxml2/libxml/encoding.h:133: warning: data definition has
> no type or storage class
>

-- 
Brian Ford
Senior Realtime Software Engineer
VITAL - Visual Simulation Systems
FlightSafety International
Phone: 314-551-8460
Fax:   314-551-8444

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: libxml2 setup.hint was Re: iconv.h?
  2003-10-30 16:54 ` libxml2 setup.hint was iconv.h? Brian Ford
@ 2003-10-30 17:06   ` Christopher Faylor
  2003-10-30 17:54   ` Gerrit P. Haase
  1 sibling, 0 replies; 10+ messages in thread
From: Christopher Faylor @ 2003-10-30 17:06 UTC (permalink / raw)
  To: cygwin

On Thu, Oct 30, 2003 at 10:27:21AM -0600, Brian Ford wrote:
>A couple of questions.
>
>Did you install libxml2-2.5.11-1 via Cygwin's setup.exe?  If so, shouldn't
>it have depended on libiconv?
>
>BTW, how does one go about viewing a package's setup.hint to check for
>this kind of thing?

The setup.hint's show up in setup.ini.  You don't have to view the setup.hint
directly.
--
Please use the resources at cygwin.com rather than sending personal email.
Special for spam email harvesters: send email to aaaspam@sourceware.org
and be permanently blocked from mailing lists at sources.redhat.com

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: libxml2 setup.hint was Re: iconv.h?
  2003-10-30 16:54 ` libxml2 setup.hint was iconv.h? Brian Ford
  2003-10-30 17:06   ` Christopher Faylor
@ 2003-10-30 17:54   ` Gerrit P. Haase
  2003-10-30 18:36     ` Rsync + Win2K Aaron
  1 sibling, 1 reply; 10+ messages in thread
From: Gerrit P. Haase @ 2003-10-30 17:54 UTC (permalink / raw)
  To: Brian Ford; +Cc: cygwin

Brian wrote:

> A couple of questions.

> Did you install libxml2-2.5.11-1 via Cygwin's setup.exe?  If so, shouldn't
> it have depended on libiconv?

Unfortunately this dependency was missing from the setup.hint, I've
fixed it now.

> BTW, how does one go about viewing a package's setup.hint to check for
> this kind of thing?

Look in setup.ini which includes all setup.hint informations.


Gerrit
-- 
=^..^=                                     http://nyckelpiga.de/donate.html


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Rsync + Win2K
  2003-10-30 17:54   ` Gerrit P. Haase
@ 2003-10-30 18:36     ` Aaron
  2003-10-30 18:54       ` Larry Hall
  0 siblings, 1 reply; 10+ messages in thread
From: Aaron @ 2003-10-30 18:36 UTC (permalink / raw)
  Cc: cygwin

I have successfully got rsync to run as a service ... but I am getting 
this error ... any help debugging would be great!

The description for Event ID ( 0 ) in Source ( rsyncd ) cannot be found. 
The local computer may not have the necessary registry information or 
message DLL files to display messages from a remote computer. The 
following information is part of the event: rsyncd : PID 1804 : rsyncd 
version 2.5.6 starting, listening on port 873.


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Rsync + Win2K
  2003-10-30 18:36     ` Rsync + Win2K Aaron
@ 2003-10-30 18:54       ` Larry Hall
  2003-10-30 19:04         ` Aaron
  0 siblings, 1 reply; 10+ messages in thread
From: Larry Hall @ 2003-10-30 18:54 UTC (permalink / raw)
  To: Aaron; +Cc: cygwin

At 12:54 PM 10/30/2003, Aaron you wrote:
>I have successfully got rsync to run as a service ... but I am getting this error ... any help debugging would be great!
>
>The description for Event ID ( 0 ) in Source ( rsyncd ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. The following information is part of the event: rsyncd : PID 1804 : rsyncd version 2.5.6 

                                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

>starting, listening on port 873.

 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

It's not an error.  It's information.


--
Larry Hall                              http://www.rfk.com
RFK Partners, Inc.                      (508) 893-9779 - RFK Office
838 Washington Street                   (508) 893-9889 - FAX
Holliston, MA 01746                     


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Rsync + Win2K
  2003-10-30 18:54       ` Larry Hall
@ 2003-10-30 19:04         ` Aaron
  2003-10-30 19:35           ` Larry Hall
  0 siblings, 1 reply; 10+ messages in thread
From: Aaron @ 2003-10-30 19:04 UTC (permalink / raw)
  To: Cygwin List

OK, it's information. Any idea which DLLs could be missing?

Larry Hall wrote:

>At 12:54 PM 10/30/2003, Aaron you wrote:
>  
>
>>I have successfully got rsync to run as a service ... but I am getting this error ... any help debugging would be great!
>>
>>The description for Event ID ( 0 ) in Source ( rsyncd ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. The following information is part of the event: rsyncd : PID 1804 : rsyncd version 2.5.6 
>>    
>>
>
>                                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
>
>  
>
>>starting, listening on port 873.
>>    
>>
>
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
>
>It's not an error.  It's information.
>
>
>--
>Larry Hall                              http://www.rfk.com
>RFK Partners, Inc.                      (508) 893-9779 - RFK Office
>838 Washington Street                   (508) 893-9889 - FAX
>Holliston, MA 01746                     
>
>
>--
>Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
>Problem reports:       http://cygwin.com/problems.html
>Documentation:         http://cygwin.com/docs.html
>FAQ:                   http://cygwin.com/faq/
>
>  
>



--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Rsync + Win2K
  2003-10-30 19:04         ` Aaron
@ 2003-10-30 19:35           ` Larry Hall
  0 siblings, 0 replies; 10+ messages in thread
From: Larry Hall @ 2003-10-30 19:35 UTC (permalink / raw)
  To: Aaron, Cygwin List

At 01:36 PM 10/30/2003, Aaron you wrote:
>OK, it's information. Any idea which DLLs could be missing?
>
>Larry Hall wrote:
>
>>At 12:54 PM 10/30/2003, Aaron you wrote:
>> 
>>
>>>I have successfully got rsync to run as a service ... but I am getting this error ... any help debugging would be great!
>>>
>>>The description for Event ID ( 0 ) in Source ( rsyncd ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. The following information is part of the event: rsyncd : PID 1804 : rsyncd version 2.5.6    
>>
>>                                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
>>
>> 
>>
>>>starting, listening on port 873.
>>>   
>>
>>^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
>>
>>It's not an error.  It's information.


None.  Ignore the first part of the message in the event log.  The part
I underlined is all you need to pay attention to.  If you're curious 
about the rest, check the email archives and/or MS docs and/or google.



--
Larry Hall                              http://www.rfk.com
RFK Partners, Inc.                      (508) 893-9779 - RFK Office
838 Washington Street                   (508) 893-9889 - FAX
Holliston, MA 01746                     


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: iconv.h?
  2003-10-30 13:39 ` iconv.h? Gerrit P. Haase
@ 2003-10-30 20:59   ` Tom Roche
  0 siblings, 0 replies; 10+ messages in thread
From: Tom Roche @ 2003-10-30 20:59 UTC (permalink / raw)
  To: cygwin

Gerrit P. Haase wrote:
> http://cygwin.com/cgi-bin2/package-grep.cgi?grep=iconv.h

Doh! Thanks, and thanks for fixing the setup.hint.



--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2003-10-30 20:20 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-30  9:52 iconv.h? Thomas L Roche
2003-10-30 13:39 ` iconv.h? Gerrit P. Haase
2003-10-30 20:59   ` iconv.h? Tom Roche
2003-10-30 16:54 ` libxml2 setup.hint was iconv.h? Brian Ford
2003-10-30 17:06   ` Christopher Faylor
2003-10-30 17:54   ` Gerrit P. Haase
2003-10-30 18:36     ` Rsync + Win2K Aaron
2003-10-30 18:54       ` Larry Hall
2003-10-30 19:04         ` Aaron
2003-10-30 19:35           ` Larry Hall

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).