diff options
author | foobar <sniper@php.net> | 2005-01-07 06:12:42 (GMT) |
---|---|---|
committer | foobar <sniper@php.net> | 2005-01-07 06:12:42 (GMT) |
commit | 7a3d9addb8cd01eab5d0f158eefe2a61062f8159 (patch) | |
tree | 5322013d6e1f2dfad4ce4a5487029ab57fc11d3f /configure.in | |
parent | f5c452989d40d48bb0bf2fef95564399f5c5649e (diff) | |
download | php-7a3d9addb8cd01eab5d0f158eefe2a61062f8159.tar.gz |
- Make sure $host_alias is never empty
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/configure.in b/configure.in index 5ee53e6..cbcfd12 100644 --- a/configure.in +++ b/configure.in @@ -35,8 +35,7 @@ for arg in $0 "$@"; do CONFIGURE_COMMAND="$CONFIGURE_COMMAND '$arg'" done -AC_CANONICAL_HOST -AC_CANONICAL_TARGET +PHP_CANONICAL_HOST_TARGET AC_CONFIG_HEADER(main/php_config.h) @@ -208,11 +207,6 @@ PHP_C_BIGENDIAN dnl Platform-specific compile settings. dnl ------------------------------------------------------------------------- -dnl if host_alias is empty, ac_cv_host_alias may still have the info -if test -z "$host_alias"; then - host_alias=$ac_cv_host_alias -fi - case $host_alias in *solaris*) CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS" |