You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2010/06/02 19:20:45 UTC

svn commit: r950669 - /apr/apr/trunk/configure.in

Author: wrowe
Date: Wed Jun  2 17:20:45 2010
New Revision: 950669

URL: http://svn.apache.org/viewvc?rev=950669&view=rev
Log:
Revert r949211 miscommit

Modified:
    apr/apr/trunk/configure.in

Modified: apr/apr/trunk/configure.in
URL: http://svn.apache.org/viewvc/apr/apr/trunk/configure.in?rev=950669&r1=950668&r2=950669&view=diff
==============================================================================
--- apr/apr/trunk/configure.in (original)
+++ apr/apr/trunk/configure.in Wed Jun  2 17:20:45 2010
@@ -1260,7 +1260,6 @@ APR_FLAG_HEADERS(
     kernel/OS.h		\
     net/errno.h		\
     netinet/in.h	\
-    netinet/ip.h	\
     netinet/sctp.h      \
     netinet/sctp_uio.h  \
     sys/file.h		\
@@ -1301,12 +1300,6 @@ else
    netinet_tcph=0
 fi
 
-AC_CHECK_DECL(SOL_IP, , , [
-    #include <sys/types.h>
-    #include <sys/socket.h>
-    #include <netinet/ip.h>
-])
-
 AC_SUBST(arpa_ineth)
 AC_SUBST(conioh)
 AC_SUBST(ctypeh)
@@ -1320,7 +1313,6 @@ AC_SUBST(limitsh)
 AC_SUBST(mswsockh)
 AC_SUBST(netdbh)
 AC_SUBST(netinet_inh)
-AC_SUBST(netinet_inp)
 AC_SUBST(netinet_sctph)
 AC_SUBST(netinet_sctp_uioh)
 AC_SUBST(netinet_tcph)
@@ -1766,8 +1758,9 @@ if test "$dsotype" = "any"; then
         *darwin[[0-8]]\.*) 
           # Original Darwin, not for 9.0!:
           AC_CHECK_FUNC(NSLinkModule, [dsotype=dyld]);;
-        hppa*-hpux[[1-9]]\.*|hppa*-hpux1[[01]]*)
-          # shl is specific to parisc hpux SOM binaries, not used for 64 bit
+        *-hpux[[1-9]]\.*|*-hpux1[[01]]*)
+          # shl is specific to hpux(?), and is suboptimal for 64 bit builds,
+          # and most unlikely to be the choice of 12.x developers.
           AC_CHECK_LIB(dld, shl_load, [have_shl=1])
           if test "$ac_cv_sizeof_voidp$have_shl" = "41"; then
             dsotype=shl; APR_ADDTO(LIBS,-ldld)