https://bz.apache.org/bugzilla/show_bug.cgi?id=65158

--- Comment #11 from [email protected] ---

I tried it with your sequence of commands and the configure-step exited with

-----------------------------------------------------
checking size of void*... 8
checking size of char... 1
checking size of short... 2
checking size of int... 4
checking size of long... 8
checking size of long long... 8
checking whether int64_t and int use fmt %d... no
checking whether int64_t and long use fmt %ld... no
checking whether int64_t and long long use fmt %lld... no
configure: error: could not determine the string function for int64_t
configure failed for srclib/apr
-----------------------------------------------------

My machine may not have installed all development-packages required for
building from source.

Or do I need an additional configure-parameter (path to include file?) ?

When I try to build a standalone apr I also get this error. The difference to
yesterday is your 'buildconf'-command. If I omit this command the
configure-step works fine: at least no error message, but will  the
configuration be bad or inadequate for ARM?

The buildconf-induced problem seems to be related ti inttype-sizes, because
configure can't compile a test-program. Here the log-file-error:

-----------------------------------------------------
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 8
| #define SIZEOF_LONG_LONG 8
| /* end confdefs.h.  */
| #include "confdefs.h"
| 
|    #include <sys/types.h>
| #include <stdio.h>
| #ifdef HAVE_STDINT_H
| #include <stdint.h>
| #endif
| 
|    int main(int argc, const char *const *argv) {
| 
|     int64_t chk1, *ptr1;
|     long long chk2, *ptr2 = &chk1;
|     ptr1 = &chk2;
|     *ptr1 = *ptr2 = 0;
|     printf("%lld %lld", chk1, chk2);
| 
|       return 0; }
| 
configure:25890: result: no
configure:25900: error: could not determine the string function for int64_t
-----------------------------------------------------


Sorry for not being very familiar with this build-process.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to