| 60 | | AC_CHECK_FUNCS([gethostbyname isascii],[],AC_MSG_ERROR("Some functions needed are missing")) |
|---|
| 61 | | AC_CHECK_FUNCS([select socket],[],AC_MSG_ERROR("Some functions needed are missing")) |
|---|
| | 60 | AC_SEARCH_LIBS([gethostbyname],[resolve resolv],[],AC_MSG_ERROR("Some functions needed are missing")) |
|---|
| | 61 | AC_SEARCH_LIBS([socket],[socket],[],AC_MSG_ERROR("Some functions needed are missing")) |
|---|
| | 62 | AC_CHECK_FUNCS([isascii],[],AC_MSG_ERROR("Some functions needed are missing")) |
|---|
| | 63 | AC_CHECK_FUNCS([select],[],AC_MSG_ERROR("Some functions needed are missing")) |
|---|