Freesco, NND, CDN, EOS

http://www.freesco.pl
Dzisiaj jest wtorek, 17 czerwca 2025, 05:57

Strefa czasowa UTC+2godz.




Nowy temat Odpowiedz w temacie  [ Posty: 9 ] 
Autor Wiadomość
 Tytuł: xmlrpc stdarg.h
Post: niedziela, 5 kwietnia 2009, 17:48 
Offline

Rejestracja: niedziela, 25 stycznia 2009, 04:30
Posty: 21
Lokalizacja: Mińsk- Mazowiecki
Mam problem z kompilacją xmlrpc-c-1.06.31 jest to ver. super stable

doszedłem już do momentu :

: [/] [] ()
 ./configure
checking for a BSD-compatible install... /bin/install -c
checking whether build environment is sane... yes
checking whether make sets $(MAKE)... no
checking for working aclocal... missing
checking for working autoconf... missing
checking for working automake... missing
checking for working autoheader... missing
checking for working makeinfo... missing
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for wininet-config... no
configure: You don't appear to have Wininet installed (no working wininet-config in your command search path), so we will not build the Wininet client XML transport
checking whether to build Wininet client XML transport module... no
checking for curl-config... yes
checking whether to build Curl client XML transport module... yes
checking for libwww-config... no
configure: You don't appear to have Libwww installed (no working libwww-config in your command search path), so we will not build the Libwww client XML transport
checking whether to build Libwww client XML transport module... no
checking whether to build Abyss server module... yes
checking whether to build CGI server module... yes
checking whether to build C++ wrappers and tools... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
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 g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for socket... no
checking for socket in -lsocket... no
checking how to run the C preprocessor... /lib/cpp
checking for egrep... grep -E
checking for ANSI C header files... no
checking for sys/types.h... no
checking for sys/stat.h... no
checking for stdlib.h... no
checking for string.h... no
checking for memory.h... no
checking for strings.h... no
checking for inttypes.h... no
checking for stdint.h... no
checking for unistd.h... no
checking wchar.h usability... no
checking wchar.h presence... no
checking for wchar.h... no
checking sys/filio.h usability... no
checking sys/filio.h presence... no
checking for sys/filio.h... no
checking sys/ioctl.h usability... no
checking sys/ioctl.h presence... yes
configure: WARNING: sys/ioctl.h: present but cannot be compiled
configure: WARNING: sys/ioctl.h:     check for missing prerequisite headers?
configure: WARNING: sys/ioctl.h: see the Autoconf documentation
configure: WARNING: sys/ioctl.h:     section "Present But Cannot Be Compiled"
configure: WARNING: sys/ioctl.h: proceeding with the preprocessor's result
configure: WARNING: sys/ioctl.h: in the future, the compiler will take precedence
configure: WARNING:     ## ------------------------------------------ ##
configure: WARNING:     ## Report this to the AC_PACKAGE_NAME lists.  ##
configure: WARNING:     ## ------------------------------------------ ##
checking for sys/ioctl.h... yes
checking stdarg.h usability... no
checking stdarg.h presence... no
checking for stdarg.h... no
configure: error: stdarg.h is required to build this library



Na necie znalazłem stdarg.h

: [/] [] ()
/*
 * stdarg.h
 *
 * Provides facilities for stepping through a list of function arguments of
 * an unknown number and type.
 *
 * NOTE: Gcc should provide stdarg.h, and I believe their version will work
 *       with crtdll. If necessary I think you can replace this with the GCC
 *       stdarg.h (or is it vararg.h).
 *
 * Note that the type used in va_arg is supposed to match the actual type
 * *after default promotions*. Thus, va_arg (..., short) is not valid.
 *
 * This file is part of the Mingw32 package.
 *
 * Contributors:
 *  Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
 *
 *  THIS SOFTWARE IS NOT COPYRIGHTED
 *
 *  This source code is offered for use in the public domain. You may
 *  use, modify or distribute it freely.
 *
 *  This code is distributed in the hope that it will be useful but
 *  WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
 *  DISCLAMED. This includes but is not limited to warranties of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 * $Revision: 1.1.1.1 $
 * $Author: brandon6684 $
 * $Date: 2001/12/18 22:53:51 $
 *
 */
/* Appropriated for Reactos Crtdll by Ariadne */

#ifndef _STDARG_H_
#define _STDARG_H_

/*
 * Don't do any of this stuff for the resource compiler.
 */
#ifndef RC_INVOKED

/*
 * I was told that Win NT likes this.
 */
#ifndef _VA_LIST_DEFINED
#define _VA_LIST_DEFINED
#endif

#ifndef   _VA_LIST
#define _VA_LIST
typedef char* va_list;
#endif


/*
 * Amount of space required in an argument list (ie. the stack) for an
 * argument of type t.
 */
#define __va_argsiz(t)   \
   (((sizeof(t) + sizeof(int) - 1) / sizeof(int)) * sizeof(int))


/*
 * Start variable argument list processing by setting AP to point to the
 * argument after pN.
 */
#ifdef   __GNUC__
/*
 * In GNU the stack is not necessarily arranged very neatly in order to
 * pack shorts and such into a smaller argument list. Fortunately a
 * neatly arranged version is available through the use of __builtin_next_arg.
 */
#define va_start(ap, pN)   \
   ((ap) = ((va_list) __builtin_next_arg(pN)))
#else
/*
 * For a simple minded compiler this should work (it works in GNU too for
 * vararg lists that don't follow shorts and such).
 */
#define va_start(ap, pN)   \
   ((ap) = ((va_list) (&pN) + __va_argsiz(pN)))
#endif


/*
 * End processing of variable argument list. In this case we do nothing.
 */
#define va_end(ap)   ((void)0)


/*
 * Increment ap to the next argument in the list while returing a
 * pointer to what ap pointed to first, which is of type t.
 *
 * We cast to void* and then to t* because this avoids a warning about
 * increasing the alignment requirement.
 */

#define va_arg(ap, t)               \
    (((ap) = (ap) + __va_argsiz(t)),      \
     *((t*) (void*) ((ap) - __va_argsiz(t))))

#endif /* Not RC_INVOKED */

#endif /* not _STDARG_H_ */


Ale wszystko # - ktos ma jakiś pomysł ?


Na górę
 Wyświetl profil  
 
 Tytuł:
Post: niedziela, 5 kwietnia 2009, 20:49 
Offline
PGF

Rejestracja: wtorek, 27 czerwca 2006, 14:09
Posty: 2112
Lokalizacja: Poznań
pacman -S gcc-devel

# pacman -Qo /usr/lib/gcc-lib/i586-pc-linux-gnu/3.3.3/include/stdarg.h
/usr/lib/gcc-lib/i586-pc-linux-gnu/3.3.3/include/stdarg.h należy do gcc-devel 3.3.3-4nnd

BTW. Te # to nie komentarze, to normalny zapis w plikach nagłówkowych.

_________________
Dedykowane systemy CRM, e-commerce i witryny korporacyjne.
Software House Poznań


Na górę
 Wyświetl profil  
 
 Tytuł:
Post: poniedziałek, 6 kwietnia 2009, 10:46 
Offline

Rejestracja: niedziela, 25 stycznia 2009, 04:30
Posty: 21
Lokalizacja: Mińsk- Mazowiecki
Ok dzięki.

doinstalowałem jeszcze make i curl-devel

teraz jestem na etapie :

: [/] [] ()
> ./configure && make && make install
checking for a BSD-compatible install... /bin/install -c
checking whether build environment is sane... yes
checking whether make sets $(MAKE)... yes
checking for working aclocal... missing
checking for working autoconf... missing
checking for working automake... missing
checking for working autoheader... missing
checking for working makeinfo... missing
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for wininet-config... no
configure: You don't appear to have Wininet installed (no working wininet-config in your command search path), so we will not build the Wininet client XML transport
checking whether to build Wininet client XML transport module... no
checking for curl-config... yes
checking whether to build Curl client XML transport module... yes
checking for libwww-config... no
configure: You don't appear to have Libwww installed (no working libwww-config in your command search path), so we will not build the Libwww client XML transport
checking whether to build Libwww client XML transport module... no
checking whether to build Abyss server module... yes
checking whether to build CGI server module... yes
checking whether to build C++ wrappers and tools... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
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 g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for socket... yes
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 wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking sys/filio.h usability... no
checking sys/filio.h presence... no
checking for sys/filio.h... no
checking sys/ioctl.h usability... yes
checking sys/ioctl.h presence... yes
checking for sys/ioctl.h... yes
checking stdarg.h usability... yes
checking stdarg.h presence... yes
checking for stdarg.h... yes
checking for size_t... yes
checking whether va_list is an array... no
checking whether compiler has __attribute__... yes
checking for vsnprintf... yes
checking for wcsncmp... yes
checking for setgroups... yes
checking for asprintf... yes
checking for setenv... yes
checking whether to use Abyss pthread function... yes
checking for curl-xmlrpc-config... no
checking for curl-config... /usr/bin/curl-config
checking for curl library directory... /usr/lib
checking whether to use SSL with libwww... no
checking whether to build the libxml2 backend... no
checking for ranlib... ranlib
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking for object suffix... o
checking for executable suffix... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.lo... yes
checking if gcc supports -fno-rtti -fno-exceptions ... no
checking if gcc static flag -static works... -static
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the linker (/usr/bin/ld) supports shared libraries... yes
checking command to parse /usr/bin/nm -B output... ok
checking how to hardcode library paths into programs... immediate
checking for /usr/bin/ld option to reload object files... -r
checking dynamic linker characteristics... Linux ld.so
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for objdir... .libs
creating libtool
configure: creating ./config.status
config.status: creating xmlrpc-c-config
config.status: creating xmlrpc-c-config.test
config.status: creating Makefile.config
config.status: creating xmlrpc_config.h
config.status: creating xmlrpc_amconfig.h
config.status: executing default-1 commands
make -C include/ -f /root/xmlrpc-c-1.06.31/./include/Makefile \
    all
make[1]: Entering directory `/root/xmlrpc-c-1.06.31/include'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/xmlrpc-c-1.06.31/include'
make -C lib/ -f /root/xmlrpc-c-1.06.31/./lib/Makefile \
    all
make[1]: Entering directory `/root/xmlrpc-c-1.06.31/lib'
make -C util/ -f /root/xmlrpc-c-1.06.31/lib/../lib/util/Makefile \
    all
make[2]: Entering directory `/root/xmlrpc-c-1.06.31/lib/util'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/root/xmlrpc-c-1.06.31/lib/util'
make -C libutil/ -f /root/xmlrpc-c-1.06.31/lib/../lib/libutil/Makefile \
    all
make[2]: Entering directory `/root/xmlrpc-c-1.06.31/lib/libutil'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/root/xmlrpc-c-1.06.31/lib/libutil'
make -C abyss/ -f /root/xmlrpc-c-1.06.31/lib/../lib/abyss/Makefile \
    all
make[2]: Entering directory `/root/xmlrpc-c-1.06.31/lib/abyss'
make -C src/ -f /root/xmlrpc-c-1.06.31/lib/abyss/../../lib/abyss/src/Makefile \
    all
make[3]: Entering directory `/root/xmlrpc-c-1.06.31/lib/abyss/src'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/root/xmlrpc-c-1.06.31/lib/abyss/src'
make[2]: Leaving directory `/root/xmlrpc-c-1.06.31/lib/abyss'
make -C curl_transport/ -f /root/xmlrpc-c-1.06.31/lib/../lib/curl_transport/Makefile \
    all
make[2]: Entering directory `/root/xmlrpc-c-1.06.31/lib/curl_transport'
/root/xmlrpc-c-1.06.31/lib/curl_transport/../../libtool --mode=compile gcc -c -I/root/xmlrpc-c-1.06.31/lib/curl_transport/../.. -I/root/xmlrpc-c-1.06.31/lib/curl_transport/../../include -I/root/xmlrpc-c-1.06.31/lib/curl_transport/../../lib/util/include  -DNDEBUG -Wall -Wundef -Wimplicit -W -Winline -Wundef -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -fno-common -g -O3   xmlrpc_curl_transport.c
rm -f .libs/xmlrpc_curl_transport.lo
gcc -c -I/root/xmlrpc-c-1.06.31/lib/curl_transport/../.. -I/root/xmlrpc-c-1.06.31/lib/curl_transport/../../include -I/root/xmlrpc-c-1.06.31/lib/curl_transport/../../lib/util/include -DNDEBUG -Wall -Wundef -Wimplicit -W -Winline -Wundef -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -fno-common -g -O3 xmlrpc_curl_transport.c  -fPIC -DPIC -o .libs/xmlrpc_curl_transport.lo
xmlrpc_curl_transport.c:78:23: curl/curl.h: No such file or directory
xmlrpc_curl_transport.c:79:24: curl/types.h: No such file or directory
xmlrpc_curl_transport.c:80:23: curl/easy.h: No such file or directory
xmlrpc_curl_transport.c:81:24: curl/multi.h: No such file or directory
xmlrpc_curl_transport.c:217: error: parse error before "CURLM"
xmlrpc_curl_transport.c:217: warning: no semicolon at end of struct or union
xmlrpc_curl_transport.c:232: error: parse error before '}' token
xmlrpc_curl_transport.c: In function `createCurlMulti':
xmlrpc_curl_transport.c:242: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:247: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:249: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:252: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:252: warning: implicit declaration of function `curl_multi_init'
xmlrpc_curl_transport.c:253: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:259: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:259: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: In function `destroyCurlMulti':
xmlrpc_curl_transport.c:272: warning: implicit declaration of function `curl_multi_cleanup'
xmlrpc_curl_transport.c:272: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:274: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:274: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: In function `curlMulti_perform':
xmlrpc_curl_transport.c:287: error: `CURLMcode' undeclared (first use in this function)
xmlrpc_curl_transport.c:287: error: (Each undeclared identifier is reported only once
xmlrpc_curl_transport.c:287: error: for each function it appears in.)
xmlrpc_curl_transport.c:287: error: parse error before "rc"
xmlrpc_curl_transport.c:289: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:289: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:291: error: `rc' undeclared (first use in this function)
xmlrpc_curl_transport.c:291: warning: implicit declaration of function `curl_multi_perform'
xmlrpc_curl_transport.c:291: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:293: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:293: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:295: error: `CURLM_CALL_MULTI_PERFORM' undeclared (first use in this function)
xmlrpc_curl_transport.c:300: error: `CURLM_OK' undeclared (first use in this function)
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:313: error: parse error before "CURL"
xmlrpc_curl_transport.c:313: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `curlMulti_addHandle':
xmlrpc_curl_transport.c:315: error: `CURLMcode' undeclared (first use in this function)
xmlrpc_curl_transport.c:315: error: parse error before "rc"
xmlrpc_curl_transport.c:317: error: `curlMultiP' undeclared (first use in this function)
xmlrpc_curl_transport.c:319: error: `rc' undeclared (first use in this function)
xmlrpc_curl_transport.c:319: warning: implicit declaration of function `curl_multi_add_handle'
xmlrpc_curl_transport.c:319: error: `curlSessionP' undeclared (first use in this function)
xmlrpc_curl_transport.c:323: error: `CURLM_OK' undeclared (first use in this function)
xmlrpc_curl_transport.c:324: error: `envP' undeclared (first use in this function)
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:332: error: parse error before "CURL"
xmlrpc_curl_transport.c:332: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `curlMulti_removeHandle':
xmlrpc_curl_transport.c:334: error: `curlMultiP' undeclared (first use in this function)
xmlrpc_curl_transport.c:336: warning: implicit declaration of function `curl_multi_remove_handle'
xmlrpc_curl_transport.c:336: error: `curlSessionP' undeclared (first use in this function)
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:346: error: parse error before "CURLMsg"
xmlrpc_curl_transport.c:346: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `curlMulti_getMessage':
xmlrpc_curl_transport.c:356: error: `CURLMsg' undeclared (first use in this function)
xmlrpc_curl_transport.c:356: error: `privateCurlMsgP' undeclared (first use in this function)
xmlrpc_curl_transport.c:361: error: `curlMultiP' undeclared (first use in this function)
xmlrpc_curl_transport.c:363: warning: implicit declaration of function `curl_multi_info_read'
xmlrpc_curl_transport.c:367: error: `endOfMessagesP' undeclared (first use in this function)
xmlrpc_curl_transport.c:370: error: `curlMsgP' undeclared (first use in this function)
xmlrpc_curl_transport.c: In function `curlMulti_fdset':
xmlrpc_curl_transport.c:394: error: `CURLMcode' undeclared (first use in this function)
xmlrpc_curl_transport.c:394: error: parse error before "rc"
xmlrpc_curl_transport.c:396: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:396: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:402: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:403: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:404: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:413: error: `rc' undeclared (first use in this function)
xmlrpc_curl_transport.c:413: warning: implicit declaration of function `curl_multi_fdset'
xmlrpc_curl_transport.c:413: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:414: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:415: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:416: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:419: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:420: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:421: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:423: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:423: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:425: error: `CURLM_OK' undeclared (first use in this function)
xmlrpc_curl_transport.c: In function `curlMulti_updateFdSet':
xmlrpc_curl_transport.c:442: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:443: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:444: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:457: error: parse error before "CURL"
xmlrpc_curl_transport.c:457: warning: no semicolon at end of struct or union
xmlrpc_curl_transport.c:480: error: parse error before '}' token
xmlrpc_curl_transport.c:491: error: parse error before "CURL"
xmlrpc_curl_transport.c:491: warning: no semicolon at end of struct or union
xmlrpc_curl_transport.c:497: error: `curlMultiP' used prior to declaration
xmlrpc_curl_transport.c:510: error: `CURL_ERROR_SIZE' undeclared here (not in a function)
xmlrpc_curl_transport.c:515: error: parse error before '}' token
xmlrpc_curl_transport.c:515: warning: type defaults to `int' in declaration of `curlTransaction'
xmlrpc_curl_transport.c:515: warning: data definition has no type or storage class
xmlrpc_curl_transport.c:520: error: parse error before "curlTransaction"
xmlrpc_curl_transport.c:520: warning: no semicolon at end of struct or union
xmlrpc_curl_transport.c:532: error: parse error before '}' token
xmlrpc_curl_transport.c:532: warning: type defaults to `int' in declaration of `rpc'
xmlrpc_curl_transport.c:532: warning: data definition has no type or storage class
xmlrpc_curl_transport.c: In function `lockSyncCurlSession':
xmlrpc_curl_transport.c:581: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:581: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: In function `unlockSyncCurlSession':
xmlrpc_curl_transport.c:588: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:588: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:597: error: parse error before "FILE"
xmlrpc_curl_transport.c:597: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `collect':
xmlrpc_curl_transport.c:602: error: `stream' undeclared (first use in this function)
xmlrpc_curl_transport.c:603: error: `ptr' undeclared (first use in this function)
xmlrpc_curl_transport.c:604: error: `nmemb' undeclared (first use in this function)
xmlrpc_curl_transport.c:604: error: `size' undeclared (first use in this function)
xmlrpc_curl_transport.c: In function `getXportParms':
xmlrpc_curl_transport.c:695: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:698: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:700: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:702: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: In function `freeXportParms':
xmlrpc_curl_transport.c:824: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:852: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:853: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:860: error: parse error before "CURL"
xmlrpc_curl_transport.c:860: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `createSyncCurlSession':
xmlrpc_curl_transport.c:877: error: `CURL' undeclared (first use in this function)
xmlrpc_curl_transport.c:877: error: parse error before "const"
xmlrpc_curl_transport.c:879: error: `curlSessionP' undeclared (first use in this function)
xmlrpc_curl_transport.c:880: error: `envP' undeclared (first use in this function)
xmlrpc_curl_transport.c:894: warning: implicit declaration of function `curl_easy_setopt'
xmlrpc_curl_transport.c:894: error: `CURLOPT_COOKIEFILE' undeclared (first use in this function)
xmlrpc_curl_transport.c:896: error: `curlSessionPP' undeclared (first use in this function)
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:903: error: parse error before '*' token
xmlrpc_curl_transport.c:903: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `destroySyncCurlSession':
xmlrpc_curl_transport.c:905: warning: implicit declaration of function `curl_easy_cleanup'
xmlrpc_curl_transport.c:905: error: `curlSessionP' undeclared (first use in this function)
xmlrpc_curl_transport.c: In function `makeSyncCurlSession':
xmlrpc_curl_transport.c:914: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:915: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:919: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:921: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:922: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: In function `unmakeSyncCurlSession':
xmlrpc_curl_transport.c:931: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:933: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:934: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: In function `create':
xmlrpc_curl_transport.c:973: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:977: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:979: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:991: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: In function `destroy':
xmlrpc_curl_transport.c:1030: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:1036: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: In function `addHeader':
xmlrpc_curl_transport.c:1051: warning: implicit declaration of function `curl_slist_append'
xmlrpc_curl_transport.c:1051: warning: assignment makes pointer from integer without a cast
xmlrpc_curl_transport.c: In function `addUserAgentHeader':
xmlrpc_curl_transport.c:1077: error: `curl_version_info_data' undeclared (first use in this function)
xmlrpc_curl_transport.c:1077: error: parse error before "const"
xmlrpc_curl_transport.c:1082: warning: implicit declaration of function `snprintf'
xmlrpc_curl_transport.c:1083: error: `curlInfoP' undeclared (first use in this function)
xmlrpc_curl_transport.c: In function `createCurlHeaderList':
xmlrpc_curl_transport.c:1148: warning: implicit declaration of function `curl_slist_free_all'
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:1157: error: parse error before "curlTransaction"
xmlrpc_curl_transport.c:1160: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `setupCurlSession':
xmlrpc_curl_transport.c:1165: error: `CURL' undeclared (first use in this function)
xmlrpc_curl_transport.c:1165: error: parse error before "const"
xmlrpc_curl_transport.c:1169: error: `curlSessionP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1169: error: `CURLOPT_POST' undeclared (first use in this function)
xmlrpc_curl_transport.c:1170: error: `CURLOPT_URL' undeclared (first use in this function)
xmlrpc_curl_transport.c:1170: error: `curlTransactionP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1172: error: `envP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1172: error: `callXmlP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1174: error: `CURLOPT_POSTFIELDS' undeclared (first use in this function)
xmlrpc_curl_transport.c:1177: error: `CURLOPT_WRITEFUNCTION' undeclared (first use in this function)
xmlrpc_curl_transport.c:1178: error: `CURLOPT_FILE' undeclared (first use in this function)
xmlrpc_curl_transport.c:1179: error: `CURLOPT_HEADER' undeclared (first use in this function)
xmlrpc_curl_transport.c:1180: error: `CURLOPT_ERRORBUFFER' undeclared (first use in this function)
xmlrpc_curl_transport.c:1182: error: `CURLOPT_NOPROGRESS' undeclared (first use in this function)
xmlrpc_curl_transport.c:1184: error: `CURLOPT_HTTPHEADER' undeclared (first use in this function)
xmlrpc_curl_transport.c:1187: error: `CURLOPT_SSL_VERIFYPEER' undeclared (first use in this function)
xmlrpc_curl_transport.c:1188: error: `curlSetupP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1189: error: `CURLOPT_SSL_VERIFYHOST' undeclared (first use in this function)
xmlrpc_curl_transport.c:1193: error: `CURLOPT_INTERFACE' undeclared (first use in this function)
xmlrpc_curl_transport.c:1196: error: `CURLOPT_SSLCERT' undeclared (first use in this function)
xmlrpc_curl_transport.c:1199: error: `CURLOPT_SSLCERTTYPE' undeclared (first use in this function)
xmlrpc_curl_transport.c:1202: error: `CURLOPT_SSLCERTPASSWD' undeclared (first use in this function)
xmlrpc_curl_transport.c:1205: error: `CURLOPT_SSLKEY' undeclared (first use in this function)
xmlrpc_curl_transport.c:1208: error: `CURLOPT_SSLKEYTYPE' undeclared (first use in this function)
xmlrpc_curl_transport.c:1211: error: `CURLOPT_SSLKEYPASSWD' undeclared (first use in this function)
xmlrpc_curl_transport.c:1214: error: `CURLOPT_SSLENGINE' undeclared (first use in this function)
xmlrpc_curl_transport.c:1218: error: `CURLOPT_SSLENGINE_DEFAULT' undeclared (first use in this function)
xmlrpc_curl_transport.c:1220: error: `CURLOPT_SSLVERSION' undeclared (first use in this function)
xmlrpc_curl_transport.c:1223: error: `CURLOPT_CAINFO' undeclared (first use in this function)
xmlrpc_curl_transport.c:1226: error: `CURLOPT_CAPATH' undeclared (first use in this function)
xmlrpc_curl_transport.c:1229: error: `CURLOPT_RANDOM_FILE' undeclared (first use in this function)
xmlrpc_curl_transport.c:1232: error: `CURLOPT_EGDSOCKET' undeclared (first use in this function)
xmlrpc_curl_transport.c:1235: error: `CURLOPT_SSL_CIPHER_LIST' undeclared (first use in this function)
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:1244: error: parse error before "CURL"
xmlrpc_curl_transport.c:1252: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `createCurlTransaction':
xmlrpc_curl_transport.c:1254: error: `curlTransactionP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1258: error: `envP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1260: error: `curlSessionP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1264: error: `serverP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1273: error: `callXmlP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1274: error: `curlSetupStuffP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1282: error: `curlTransactionPP' undeclared (first use in this function)
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:1288: error: parse error before '*' token
xmlrpc_curl_transport.c:1288: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `destroyCurlTransaction':
xmlrpc_curl_transport.c:1290: error: `curlTransactionP' undeclared (first use in this function)
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:1299: error: parse error before '*' token
xmlrpc_curl_transport.c:1300: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `getCurlTransactionError':
xmlrpc_curl_transport.c:1302: error: `CURLcode' undeclared (first use in this function)
xmlrpc_curl_transport.c:1302: error: parse error before "res"
xmlrpc_curl_transport.c:1305: error: `res' undeclared (first use in this function)
xmlrpc_curl_transport.c:1305: warning: implicit declaration of function `curl_easy_getinfo'
xmlrpc_curl_transport.c:1305: error: `curlTransactionP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1306: error: `CURLINFO_HTTP_CODE' undeclared (first use in this function)
xmlrpc_curl_transport.c:1308: error: `CURLE_OK' undeclared (first use in this function)
xmlrpc_curl_transport.c:1310: error: `envP' undeclared (first use in this function)
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:1327: error: parse error before "curlTransaction"
xmlrpc_curl_transport.c:1327: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `performCurlTransaction':
xmlrpc_curl_transport.c:1329: error: `CURL' undeclared (first use in this function)
xmlrpc_curl_transport.c:1329: error: parse error before "const"
xmlrpc_curl_transport.c:1331: error: `CURLcode' undeclared (first use in this function)
xmlrpc_curl_transport.c:1333: error: `res' undeclared (first use in this function)
xmlrpc_curl_transport.c:1333: warning: implicit declaration of function `curl_easy_perform'
xmlrpc_curl_transport.c:1333: error: `curlSessionP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1335: error: `CURLE_OK' undeclared (first use in this function)
xmlrpc_curl_transport.c:1337: error: `envP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1339: error: `curlTransactionP' undeclared (first use in this function)
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:1349: error: parse error before "CURL"
xmlrpc_curl_transport.c:1355: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `createRpc':
xmlrpc_curl_transport.c:1357: error: invalid operands to binary *
xmlrpc_curl_transport.c:1359: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:1361: error: `envP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1363: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:1364: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:1365: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:1368: error: `curlSessionP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1369: error: `clientTransportP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1370: error: `serverP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1371: error: `callXmlP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1375: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:1378: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:1383: error: `rpcPP' undeclared (first use in this function)
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:1389: error: parse error before '*' token
xmlrpc_curl_transport.c:1389: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `destroyRpc':
xmlrpc_curl_transport.c:1393: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:1402: error: parse error before "rpc"
xmlrpc_curl_transport.c:1402: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `performRpc':
xmlrpc_curl_transport.c:1404: error: `envP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1404: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:1411: error: parse error before "curlTransaction"
xmlrpc_curl_transport.c:1411: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `startCurlTransaction':
xmlrpc_curl_transport.c:1420: error: `curlTransactionP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1420: error: `CURLOPT_PRIVATE' undeclared (first use in this function)
xmlrpc_curl_transport.c:1423: error: `envP' undeclared (first use in this function)
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:1432: error: parse error before "rpc"
xmlrpc_curl_transport.c:1432: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `startRpc':
xmlrpc_curl_transport.c:1434: error: `envP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1434: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: In function `sendRequest':
xmlrpc_curl_transport.c:1455: error: invalid operands to binary *
xmlrpc_curl_transport.c:1460: error: `CURL' undeclared (first use in this function)
xmlrpc_curl_transport.c:1460: error: parse error before "const"
xmlrpc_curl_transport.c:1462: error: `curlSessionP' undeclared (first use in this function)
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:1493: error: parse error before "CURL"
xmlrpc_curl_transport.c:1494: warning: function declaration isn't a prototype
xmlrpc_curl_transport.c: In function `finishCurlTransaction':
xmlrpc_curl_transport.c:1505: error: `curlTransactionP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1506: error: invalid operands to binary *
xmlrpc_curl_transport.c:1508: error: `curlSessionP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1508: error: `CURLINFO_PRIVATE' undeclared (first use in this function)
xmlrpc_curl_transport.c:1519: error: `result' undeclared (first use in this function)
xmlrpc_curl_transport.c:1519: error: `CURLE_OK' undeclared (first use in this function)
xmlrpc_curl_transport.c:1521: error: `envP' undeclared (first use in this function)
xmlrpc_curl_transport.c:1526: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:1526: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:1526: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:1533: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: In function `processCurlMessages':
xmlrpc_curl_transport.c:1589: error: `CURLMsg' undeclared (first use in this function)
xmlrpc_curl_transport.c:1589: error: parse error before "curlMsg"
xmlrpc_curl_transport.c:1591: error: `curlMsg' undeclared (first use in this function)
xmlrpc_curl_transport.c:1594: error: `CURLMSG_DONE' undeclared (first use in this function)
xmlrpc_curl_transport.c: In function `finishAsynch':
xmlrpc_curl_transport.c:1752: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c:1771: warning: implicit declaration of function `fprintf'
xmlrpc_curl_transport.c:1771: error: `stderr' undeclared (first use in this function)
xmlrpc_curl_transport.c: In function `call':
xmlrpc_curl_transport.c:1789: error: invalid operands to binary *
xmlrpc_curl_transport.c:1802: error: dereferencing pointer to incomplete type
xmlrpc_curl_transport.c: In function `setupGlobalConstants':
xmlrpc_curl_transport.c:1832: error: `CURLcode' undeclared (first use in this function)
xmlrpc_curl_transport.c:1832: error: parse error before "rc"
xmlrpc_curl_transport.c:1834: error: `rc' undeclared (first use in this function)
xmlrpc_curl_transport.c:1834: warning: implicit declaration of function `curl_global_init'
xmlrpc_curl_transport.c:1834: error: `CURL_GLOBAL_ALL' undeclared (first use in this function)
xmlrpc_curl_transport.c:1836: error: `CURLE_OK' undeclared (first use in this function)
xmlrpc_curl_transport.c: In function `teardownGlobalConstants':
xmlrpc_curl_transport.c:1849: warning: implicit declaration of function `curl_global_cleanup'
xmlrpc_curl_transport.c: At top level:
xmlrpc_curl_transport.c:510: error: storage size of `curlError' isn't known
make[2]: *** [xmlrpc_curl_transport.lo] Error 1
make[2]: Leaving directory `/root/xmlrpc-c-1.06.31/lib/curl_transport'
make[1]: *** [curl_transport/all] Error 2
make[1]: Leaving directory `/root/xmlrpc-c-1.06.31/lib'
make: *** [lib/all] Error 2



Na Debianie Sarge tak samo miałem problemy z tym pakietem........

Prosze dalej o propozycje bo ja juz się dawno poddałem z ta jedyną rzeczą .


Na górę
 Wyświetl profil  
 
 Tytuł:
Post: wtorek, 7 kwietnia 2009, 18:52 
Offline
PGF

Rejestracja: wtorek, 27 czerwca 2006, 14:09
Posty: 2112
Lokalizacja: Poznań
zrób cały install_devel

_________________
Dedykowane systemy CRM, e-commerce i witryny korporacyjne.
Software House Poznań


Na górę
 Wyświetl profil  
 
 Tytuł:
Post: wtorek, 7 kwietnia 2009, 19:46 
Offline

Rejestracja: niedziela, 25 stycznia 2009, 04:30
Posty: 21
Lokalizacja: Mińsk- Mazowiecki
: [/] [] ()
install_devel
Pakiety *-devel są już zainstalowane. Kończę...



Już to robiłem.

_________________
dev/null


Na górę
 Wyświetl profil  
 
 Tytuł:
Post: wtorek, 7 kwietnia 2009, 20:34 
Offline
PGF

Rejestracja: wtorek, 27 czerwca 2006, 14:09
Posty: 2112
Lokalizacja: Poznań
pacman -S curl curl-devel

_________________
Dedykowane systemy CRM, e-commerce i witryny korporacyjne.
Software House Poznań


Na górę
 Wyświetl profil  
 
 Tytuł:
Post: wtorek, 7 kwietnia 2009, 22:21 
Offline

Rejestracja: niedziela, 25 stycznia 2009, 04:30
Posty: 21
Lokalizacja: Mińsk- Mazowiecki
: [/] [] ()
pacman -S curl curl-devel

Cele: curl-7.15.0-1nnd zlib-devel-1.2.3-1nnd curl-devel-7.15.0-1nnd

Całkowita wielkość pakietu:   0,4 MB

Rozpocząć aktualizację? [T/n] t

sprawdzam integralności pakietów... zrobione.
ładuję dane o pakiecie... zrobione.
sprawdzam możliwość konfliktów...
błąd: znaleziono następujące konflikty:
  curl: /usr/bin/curl: istnieje w systemie plików
  curl: /usr/bin/curl-config: istnieje w systemie plików
  curl: /usr/lib/libcurl.so: istnieje w systemie plików


Wystąpiły błędy. Aktualizacja przerwana



--i żeby nie było nie dotykałem się do tych configów--
-- na świeżym NND tak samo walczyłem----

_________________
dev/null


Na górę
 Wyświetl profil  
 
 Tytuł:
Post: wtorek, 7 kwietnia 2009, 22:28 
Offline
PGF

Rejestracja: wtorek, 27 czerwca 2006, 14:09
Posty: 2112
Lokalizacja: Poznań
pacman -Sf curl curl-devel

_________________
Dedykowane systemy CRM, e-commerce i witryny korporacyjne.
Software House Poznań


Na górę
 Wyświetl profil  
 
 Tytuł:
Post: wtorek, 7 kwietnia 2009, 22:46 
Offline

Rejestracja: niedziela, 25 stycznia 2009, 04:30
Posty: 21
Lokalizacja: Mińsk- Mazowiecki
Wyglada na to że poszło :) ./configure make i make install nie będe wklejał bo miejsca zabraknie :) Jutro powalcze z rtgui w rtorrent zobaczymy co z tego wyjdzie - ale jest to krok milowy :)

--ide spać bo codzienna walka z win serwer mnie czeka w pracy :(---

Dzięki, temat napewno sie przyda innym temat bede rozwijał dalej w strone rtgui

_________________
dev/null


Na górę
 Wyświetl profil  
 
Wyświetl posty nie starsze niż:  Sortuj wg  
Nowy temat Odpowiedz w temacie  [ Posty: 9 ] 

Strefa czasowa UTC+2godz.


Kto jest online

Użytkownicy przeglądający to forum: Obecnie na forum nie ma żadnego zarejestrowanego użytkownika i 7 gości


Nie możesz tworzyć nowych tematów
Nie możesz odpowiadać w tematach
Nie możesz zmieniać swoich postów
Nie możesz usuwać swoich postów
Nie możesz dodawać załączników

Szukaj:
Przejdź do:  
cron
Technologię dostarcza phpBB® Forum Software © phpBB Group
Hosting: Compus-Net
RobertKonik.pl