From a105687232d3470a90797da991e8a9b66421cbdf Mon Sep 17 00:00:00 2001 From: Anantha Kesari H Y Date: Mon, 14 Mar 2005 09:33:15 +0000 Subject: [PATCH] For cross compiler uname's output while running on build machine can not be stored in PHP_OS and PHP_UNAME --- configure.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.in b/configure.in index 04c4a97376..3b5d597fea 100644 --- a/configure.in +++ b/configure.in @@ -200,6 +200,10 @@ case $host_alias in fi ;; *netware*) + PHP_OS="NetWare" + PHP_UNAME="NetWare" + AC_DEFINE_UNQUOTED(PHP_OS,"$PHP_OS",[hardcode for each of the cross compiler host]) + AC_DEFINE_UNQUOTED(PHP_UNAME,"$PHP_UNAME",[hardcode for each of the cross compiler host]) PHP_BUILD_PROGRAM PHP_ADD_SOURCES(win32, sendmail.c, -I$CFLAGS,php) ;; -- 2.50.1