diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-11-21T12·23+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-11-21T12·23+0000 |
commit | 23e933b3b3e881515993538ab774c8c7b54f8370 (patch) | |
tree | 1f1376722c8ce3ef7857f12b5575181f5475f23f /configure.ac | |
parent | a6abade8e832217c27fade5ab8b7c28003c2ac46 (diff) |
* Put back the "sys_name" variable which got removed somewhere. This
broke building on Cygwin and Solaris.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 07d67983f707..22139b776b32 100644 --- a/configure.ac +++ b/configure.ac @@ -33,6 +33,14 @@ AC_ARG_WITH(system, AC_HELP_STRING([--with-system=SYSTEM], system="$machine_name-`echo $host_os | "$SED" -e's/@<:@0-9.@:>@*$//g'`";; esac]) +sys_name=$(uname -s | tr 'A-Z ' 'a-z_') + +case $sys_name in + cygwin*) + sys_name=cygwin + ;; +esac + AC_MSG_RESULT($system) AC_SUBST(system) AC_DEFINE_UNQUOTED(SYSTEM, ["$system"], [platform identifier (`cpu-os')]) @@ -54,7 +62,7 @@ fi # Solaris-specific stuff. -if test "$sys_name" = "sunos"; then +if [ "$sys_name" = sunos ]; then # Solaris requires -lsocket -lnsl for network functions LIBS="-lsocket -lnsl $LIBS" fi |