소스 검색

fix cross-compile on FreeBSD host

Waldemar Brodkorb 13 년 전
부모
커밋
281528655c
3개의 변경된 파일49개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      package/squid/Makefile
  2. 15 0
      package/squid/patches/patch-include_squid_endian_h
  3. 31 0
      package/squid/patches/patch-include_squid_types_h

+ 3 - 1
package/squid/Makefile

@@ -100,6 +100,7 @@ CONFIGURE_ENV+=		ac_cv_sizeof_void_p=4 \
 			ac_cv_lib_nsl_main=no \
 			ac_cv_func_strnstr=no \
 			squid_cv_pf_inet6=yes
+XAKE_FLAGS+=		MKDIR_P="mkdir -p"
 CONFIGURE_ARGS+=	--datadir=/usr/share/squid \
 			--libexecdir=/usr/lib/squid \
 			--sysconfdir=/etc/squid \
@@ -147,7 +148,8 @@ post-install: ${INSTALL_MODS_y} ${INSTALL_MODS_m}
 		${IDIR_SQUID}/etc/squid/
 	${INSTALL_DATA} ./files/squid.conf ${IDIR_SQUID}/etc/squid/
 	${INSTALL_DIR} ${IDIR_SQUID}/usr/share/squid/errors
-	${CP} ${WRKINST}/usr/share/squid/errors/en ${IDIR_SQUID}/usr/share/squid/errors
+	${CP} ${WRKINST}/usr/share/squid/errors/en \
+		${IDIR_SQUID}/usr/share/squid/errors
 	${CP} ${WRKINST}/usr/share/squid/icons ${IDIR_SQUID}/usr/share/squid/
 	${INSTALL_DIR} ${IDIR_SQUID}/usr/sbin ${IDIR_SQUID}/usr/lib/squid
 	${INSTALL_BIN} ${WRKINST}/usr/sbin/squid ${IDIR_SQUID}/usr/sbin/

+ 15 - 0
package/squid/patches/patch-include_squid_endian_h

@@ -0,0 +1,15 @@
+--- squid-3.1.4.orig/include/squid_endian.h	2010-05-30 15:21:11.000000000 +0200
++++ squid-3.1.4/include/squid_endian.h	2010-07-31 14:29:02.000000000 +0200
+@@ -65,9 +65,12 @@
+  *
+  * Some systems define htobe16()/be16toh() and friends in <sys/endian.h>.
+  */
++#include <sys/param.h>
++#if !defined(BSD)
+ #if HAVE_BYTESWAP_H
+ #  include <byteswap.h>
+ #endif /* HAVE_BYTESWAP_H */
++#endif
+ #ifdef HAVE_MACHINE_BYTE_SWAP_H
+ #  include <machine/byte_swap.h>
+ #endif	/* HAVE_MACHINE_BYTE_SWAP_H */

+ 31 - 0
package/squid/patches/patch-include_squid_types_h

@@ -0,0 +1,31 @@
+--- squid-3.1.4.orig/include/squid_types.h	2010-05-30 15:21:12.000000000 +0200
++++ squid-3.1.4/include/squid_types.h	2010-07-31 14:28:05.000000000 +0200
+@@ -56,13 +56,16 @@
+ #ifndef SQUID_TYPES_H
+ #define SQUID_TYPES_H
+ 
++#include <sys/param.h>
+ /* This should be in synch with what we have in acinclude.m4 */
+ #if HAVE_SYS_TYPES_H
+ #include <sys/types.h>
+ #endif
++#if !defined(BSD)
+ #if HAVE_LINUX_TYPES_H
+ #include <linux/types.h>
+ #endif
++#endif
+ #if STDC_HEADERS
+ #include <stdlib.h>
+ #include <stddef.h>
+@@ -70,9 +73,11 @@
+ #if HAVE_INTTYPES_H
+ #include <inttypes.h>
+ #endif
++#if !defined(BSD)
+ #if HAVE_SYS_BITYPES_H
+ #include <sys/bitypes.h>
+ #endif
++#endif
+ #if HAVE_SYS_SELECT_H
+ #include <sys/select.h>
+ #endif