| От | Taral |
|---|---|
| Тема | RE: [HACKERS] compilation problem on AIX |
| Дата | |
| Msg-id | 000001bdf6f6$12bb62a0$3b291f0a@taral обсуждение |
| Ответ на | RE: [HACKERS] compilation problem on AIX (Peter Gucwa <pg@softcomputer.com>) |
| Список | pgsql-hackers |
> > > getsockname(int s, struct sockaddr *name, socklen_t *namelen);
> >
> > Ok, so this gets tricky. In 4.2.1 it is size_t and in 4.3.1 it is as
> > above with socklen_t :-(
>
> If someone can make me a *short* code stub that fails to compile depending
> on which is used, I can add this to configure...
--- cut here ---
#include <sys/socket.h>
int getsockname(int, struct sockaddr *, socklen_t *);
int x() {return 0;}
--- cut here ---
If your compiler insists on size_t instead of socklen_t, this will fail with
an error.
My test (since linux doesn't care):
test.c:
extern int x(int);
extern int x(long);
% gcc -c test.c
~
test.c:3: conflicting types for `x'
test.c:1: previous declaration of `x'
% echo $?
~
1
Enjoy.
Taral
В списке pgsql-hackers по дате отправления:
Сайт использует файлы cookie для корректной работы и повышения удобства. Нажимая кнопку «Принять» или продолжая пользоваться сайтом, вы соглашаетесь на их использование в соответствии с Политикой в отношении обработки cookie ООО «ППГ», в том числе на передачу данных из файлов cookie сторонним статистическим и рекламным службам. Вы можете управлять настройками cookie через параметры вашего браузера