From 1c48b5a62f73234ed26bb20f0ab345ab61cda0ab Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 18 Feb 2010 07:49:04 -0500 Subject: Rename server/ directory to src/ Also update BUILD.txt --- server/external/platform.m4 | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 server/external/platform.m4 (limited to 'server/external/platform.m4') diff --git a/server/external/platform.m4 b/server/external/platform.m4 deleted file mode 100644 index 71b4f2c8..00000000 --- a/server/external/platform.m4 +++ /dev/null @@ -1,29 +0,0 @@ -AC_ARG_WITH([os], - [AC_HELP_STRING([--with-os=OS_TYPE], [Type of your operation system (fedora|redhat|suse)])] - ) -osname="" -if test x"$with_os" != x ; then - if test x"$with_os" == xfedora -o \ - x"$with_os" == xredhat -o \ - x"$with_os" == xsuse ; then - osname=$with_os - else - AC_MSG_ERROR([Illegal value -$with_os- for option --with-os]) - fi -fi - -if test x"$osname" = x ; then - if test -f /etc/fedora-release ; then - osname="fedora" - elif test -f /etc/redhat-release ; then - osname="redhat" - elif test -f /etc/SuSE-release ; then - osname="suse" - fi - - AC_MSG_NOTICE([Detected operation system type: $osname]) -fi - -AM_CONDITIONAL([HAVE_FEDORA], [test x"$osname" == xfedora]) -AM_CONDITIONAL([HAVE_REDHAT], [test x"$osname" == xredhat]) -AM_CONDITIONAL([HAVE_SUSE], [test x"$osname" == xsuse]) -- cgit