From 5329f7ce4c0c4859790c2605d9810fae49f746f1 Mon Sep 17 00:00:00 2001 From: foobar Date: Thu, 7 Apr 2005 22:23:28 +0000 Subject: [PATCH] MFH: - Fixed bug #32591 (ext/mysql: Unsatisfied symbol: ntohs with HP-UX) --- ext/mysql/php_mysql.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index f4d1e722de..d7c159e7db 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -52,6 +52,9 @@ # endif # include # include +# if HAVE_ARPA_INET_H +# include +# endif #endif #include -- 2.50.1