[MPlayer-cvslog] r32376 - trunk/configure
diego
subversion at mplayerhq.hu
Sun Sep 26 23:51:39 CEST 2010
Author: diego
Date: Sun Sep 26 23:51:39 2010
New Revision: 32376
Log:
Simplify inet_pton/inet_aton checks with function_check().
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Sun Sep 26 23:48:28 2010 (r32375)
+++ trunk/configure Sun Sep 26 23:51:39 2010 (r32376)
@@ -3254,14 +3254,8 @@ echores "$arpa_inet_h"
echocheck "inet_pton()"
def_inet_pton='#define HAVE_INET_PTON 0'
inet_pton=no
-cat > $TMPC << EOF
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <arpa/inet.h>
-int main(void) { inet_pton(0, 0, 0); return 0; }
-EOF
for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
- cc_check $_ld_tmp && inet_pton=yes && break
+ function_check arpa/inet.h 'inet_pton(0, 0, 0)' $_ld_tmp && inet_pton=yes && break
done
if test $inet_pton = yes ; then
test "$_ld_tmp" && res_comment="using $_ld_tmp"
@@ -3273,14 +3267,8 @@ echores "$inet_pton"
echocheck "inet_aton()"
def_inet_aton='#define HAVE_INET_ATON 0'
inet_aton=no
-cat > $TMPC << EOF
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <arpa/inet.h>
-int main(void) { inet_aton(0, 0); return 0; }
-EOF
for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
- cc_check $_ld_tmp && inet_aton=yes && break
+ function_check arpa/inet.h 'inet_aton(0, 0)' $_ld_tmp && inet_aton=yes && break
done
if test $inet_aton = yes ; then
test "$_ld_tmp" && res_comment="using $_ld_tmp"
More information about the MPlayer-cvslog
mailing list