diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-12-17 20:19:13 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-12-17 20:19:13 +0000 |
commit | ca4db9f23572fa4ee6de03d8f4f7237c56ebccc9 (patch) | |
tree | c10c2e5290f55c62211022c83d11daadf9a3a7f3 | |
parent | 81b7aa657110db03ceb861d8206fc6e805ede9c8 (diff) |
Removed the old autotools files that are no longer needed because of the use of CMake.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1842 5417fbe8-f217-4b02-8779-1006273d7864
41 files changed, 0 insertions, 23032 deletions
diff --git a/Makefile.in b/Makefile.in deleted file mode 100644 index 86bab262a..000000000 --- a/Makefile.in +++ /dev/null @@ -1,104 +0,0 @@ -CC=g++ # probably wrong but oh well. -INCLUDEDIR=../include -ANOPELIBS=@ANOPELIBS@ -CFLAGS=@CFLAGS@ -Wall -ansi -pedantic -Wshadow -PROFILE=-pg -LDPROFILE= -SHELL=/bin/sh -BINDEST=@BINDEST@ -MAKEBIN=@MAKEBIN@ -DATDEST=@DATDEST@ -INSTALL=@INSTALL@ -RM=@RM@ -CP=@CP@ -TOUCH=@TOUCH@ -MODULE_PATH=@MODULE_PATH@ -LDFLAGS=@LDFLAGS@ -RUNGROUP=@RUNGROUP@ -SHARED=@SHARED@ -MODULEFLAGS=@MODULEFLAGS@ - -all: language headers build core protocols tools modules -profile: language headers profile_build profile_core profile_protocols profile_tools profile_modules - -MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'ANOPELIBS=${ANOPELIBS}' \ - 'LDFLAGS=${LDFLAGS}' 'BINDEST=${BINDEST}' 'INSTALL=${INSTALL}' \ - 'INCLUDEDIR=${INCLUDEDIR}' 'RM=${RM}' 'CP=${CP}' \ - 'TOUCH=${TOUCH}' 'SHELL=${SHELL}' 'DATDEST=${DATDEST}' \ - 'RUNGROUP=${RUNGROUP}' 'MODULE_PATH=${MODULE_PATH}' \ - 'SHARED=${SHARED}' 'MODULEFLAGS=${MODULEFLAGS}' \ - 'MAKEBIN=${MAKEBIN}' - -build: language headers - @${MAKE} -C src ${MAKEARGS} all - -profile_build: - @${MAKE} -C src ${MAKEARGS} 'CFLAGS=${CFLAGS} $(PROFILE)' 'LDFLAGS=${LDFLAGS} ${PROFILE}' all - -modules: build - @src/modules/configure src/modules - @${MAKE} -C src/modules ${MAKEARGS} all - @echo "*** All done, now (g)make install to install Anope/Modules"; - -clean_modules: - @${MAKE} -C src ${MAKEARGS} clean_modules - -distclean_modules: - @${MAKE} -C src ${MAKEARGS} distclean_modules - -protocols: build - @echo "*** Building protocol support"; - @src/protocol/configure src/protocol - @${MAKE} -C src/protocol ${MAKEARGS} all - -profile_protocols: build - @echo "*** Building protocol support"; - @src/protocol/configure src/protocol - @${MAKE} -C src/protocol ${MAKEARGS} 'CFLAGS=${CFLAGS} ${PROFILE}' 'PROFILE=${PROFILE}' all - -core: build - @echo "*** Building Core modules"; - @${MAKE} -C src ${MAKEARGS} core - -profile_core: build - @echo "*** Building Core modules"; - @${MAKE} -C src ${MAKEARGS} 'CFLAGS=${CFLAGS} ${PROFILE}' 'PROFILE=${PROFILE}' core - -tools: build - @${MAKE} -C src/tools ${MAKEARGS} all - @echo "*** All done, now (g)make install to install Anope/Modules/Tools"; - -profile_tools: profile_build - @${MAKE} -C src/tools ${MAKEARGS} 'CFLAGS=${CFLAGS} $(PROFILE)' all - @echo "*** All done, now (g)make install to install Anope/Modules/Tools"; - -profile_modules: profile_build - @src/modules/configure src/modules - @${MAKE} -C src/modules ${MAKEARGS} 'CFLAGS=${CFLAGS} ${PROFILE}' 'PROFILE=${PROFILE}' all - @echo "*** All done, now (g)make install to install Anope/Modules"; - -language: - @$(MAKE) -C lang ${MAKEARGS} all language.h - -headers: - @${MAKE} -C include ${MAKEARGS} - -clean: - ${MAKE} -C lang ${MAKEARGS} clean - ${MAKE} -C include ${MAKEARGS} clean - ${MAKE} -C src ${MAKEARGS} clean - ${MAKE} -C src/tools ${MAKEARGS} clean - -distclean: clean - ${MAKE} -C lang ${MAKEARGS} distclean - ${MAKE} -C include ${MAKEARGS} distclean - ${MAKE} -C src ${MAKEARGS} distclean - ${MAKE} -C src/tools ${MAKEARGS} distclean - rm -f config.log config.status config.cache Makefile src/bin/anoperc - -install: DUMMY - ${MAKE} -C src ${MAKEARGS} install - ${MAKE} -C src/tools ${MAKEARGS} install - @echo "*** All done, Anope is now installed. Please read docs/INSTALL for details on what to do now."; - -DUMMY: diff --git a/Makefile.win32 b/Makefile.win32 deleted file mode 100644 index a6dfe119b..000000000 --- a/Makefile.win32 +++ /dev/null @@ -1,96 +0,0 @@ -# Makefile for Anope. -# -# (C) 2003-2008 Anope Team -# Contact us at info@anope.org -# -# This program is free but copyrighted software; see the file COPYING for -# details. -# -# Based on the original code of Epona by Lara. -# Based on the original code of Services by Andy Church. - -include Makefile.inc.win32 - -########################################################################### - -all: src core protocols languages tools modules install - -src: include\version.h include\sysconf.h include\language.h include\sysconf.h - cd src && $(MAKE) && cd .. - -install: - -@mkdir $(DATDEST)\backups - -@mkdir $(DATDEST)\logs - -@mkdir $(DATDEST)\languages - cd lang && $(MAKE) install && cd .. - cd src && $(MAKE) install && cd .. - cd src\modules && $(MAKE) install && cd .. - cd src\modules && $(MAKE) subs-install && cd .. - cd src\protocol && $(MAKE) install && cd .. - cd src\core && $(MAKE) install && cd .. - cd src\tools && $(MAKE) install && cd .. - -@echo --- - -@echo Anope has been installed successfully! - -@echo See docs\INSTALL for details on how to configure Anope for use. - -@echo --- - -spotless: - cd lang && $(MAKE) spotless && cd .. - cd src && $(MAKE) spotless && cd .. - cd src\modules && $(MAKE) spotless && cd ..\.. - cd src\protocol && $(MAKE) spotless && cd ..\.. - cd src\core && $(MAKE) spotless && cd ..\.. - cd src\tools && $(MAKE) spotless && cd ..\.. - -@erase include\language.h include\version.h *.manifest *~ anope.exe version.sh.exe *.obj anopesmtp.exe - -@echo -- - -@echo NOTICE: - -@echo You will need to run cscript /nologo install.js again - -@echo -- - -mypasql: - $(MYPASQL_BUILD) - -distclean: spotless - -clean: spotless - -########################################################################### - - -languages: FRC - cd lang && $(MAKE) && cd .. - -tools: FRC - cd src\tools && $(MAKE) && cd ..\.. - -core: FRC - cd src\core && $(MAKE) && cd ..\.. - -protocols: FRC - cd src\protocol && $(MAKE) && cd ..\.. - -modules: FRC - cd src\modules && $(MAKE) && cd ..\.. - -########################################################################### - -include\sysconf.h: - copy include\sysconf.h.win32 include\sysconf.h - -lang\language.h: lang\Makefile lang\index - cd lang && $(MAKE) language.h && cd .. - -lang\index: - cd lang && $(MAKE) index && cd .. - -include\language.h: lang\language.h - cd lang && copy language.h ..\include\language.h && cd .. - -include\version.h: version.sh.exe version.log include\services.h include\pseudo.h include\messages.h - version.sh.exe - move version.h include\version.h - -version.sh.exe: - $(CC) $(BASE_CFLAGS) include\version.sh.c /link $(LFLAGS) - -FRC: diff --git a/aclocal.m4 b/aclocal.m4 deleted file mode 100644 index 0d17d95bd..000000000 --- a/aclocal.m4 +++ /dev/null @@ -1,863 +0,0 @@ -dnl aclocal.m4 generated automatically by aclocal 1.4-p6 - -dnl Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl This program is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without -dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A -dnl PARTICULAR PURPOSE. - -# lib-prefix.m4 serial 4 (gettext-0.14.2) -dnl Copyright (C) 2001-2005 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl From Bruno Haible. - -dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and -dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't -dnl require excessive bracketing. -ifdef([AC_HELP_STRING], -[AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])], -[AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) - -dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed -dnl to access previously installed libraries. The basic assumption is that -dnl a user will want packages to use other packages he previously installed -dnl with the same --prefix option. -dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate -dnl libraries, but is otherwise very convenient. -AC_DEFUN([AC_LIB_PREFIX], -[ - AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) - AC_REQUIRE([AC_PROG_CC]) - AC_REQUIRE([AC_CANONICAL_HOST]) - AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) - dnl By default, look in $includedir and $libdir. - use_additional=yes - AC_LIB_WITH_FINAL_PREFIX([ - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - ]) - AC_LIB_ARG_WITH([lib-prefix], -[ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib - --without-lib-prefix don't search for libraries in includedir and libdir], -[ - if test "X$withval" = "Xno"; then - use_additional=no - else - if test "X$withval" = "X"; then - AC_LIB_WITH_FINAL_PREFIX([ - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - ]) - else - additional_includedir="$withval/include" - additional_libdir="$withval/lib" - fi - fi -]) - if test $use_additional = yes; then - dnl Potentially add $additional_includedir to $CPPFLAGS. - dnl But don't add it - dnl 1. if it's the standard /usr/include, - dnl 2. if it's already present in $CPPFLAGS, - dnl 3. if it's /usr/local/include and we are using GCC on Linux, - dnl 4. if it doesn't exist as a directory. - if test "X$additional_includedir" != "X/usr/include"; then - haveit= - for x in $CPPFLAGS; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-I$additional_includedir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test "X$additional_includedir" = "X/usr/local/include"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - if test -d "$additional_includedir"; then - dnl Really add $additional_includedir to $CPPFLAGS. - CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" - fi - fi - fi - fi - dnl Potentially add $additional_libdir to $LDFLAGS. - dnl But don't add it - dnl 1. if it's the standard /usr/lib, - dnl 2. if it's already present in $LDFLAGS, - dnl 3. if it's /usr/local/lib and we are using GCC on Linux, - dnl 4. if it doesn't exist as a directory. - if test "X$additional_libdir" != "X/usr/lib"; then - haveit= - for x in $LDFLAGS; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-L$additional_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test "X$additional_libdir" = "X/usr/local/lib"; then - if test -n "$GCC"; then - case $host_os in - linux*) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - if test -d "$additional_libdir"; then - dnl Really add $additional_libdir to $LDFLAGS. - LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" - fi - fi - fi - fi - fi -]) - -dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, -dnl acl_final_exec_prefix, containing the values to which $prefix and -dnl $exec_prefix will expand at the end of the configure script. -AC_DEFUN([AC_LIB_PREPARE_PREFIX], -[ - dnl Unfortunately, prefix and exec_prefix get only finally determined - dnl at the end of configure. - if test "X$prefix" = "XNONE"; then - acl_final_prefix="$ac_default_prefix" - else - acl_final_prefix="$prefix" - fi - if test "X$exec_prefix" = "XNONE"; then - acl_final_exec_prefix='${prefix}' - else - acl_final_exec_prefix="$exec_prefix" - fi - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" - prefix="$acl_save_prefix" -]) - -dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the -dnl variables prefix and exec_prefix bound to the values they will have -dnl at the end of the configure script. -AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], -[ - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - $1 - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" -]) - -# lib-link.m4 serial 6 (gettext-0.14.3) -dnl Copyright (C) 2001-2005 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl From Bruno Haible. - -AC_PREREQ(2.50) - -dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and -dnl the libraries corresponding to explicit and implicit dependencies. -dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and -dnl augments the CPPFLAGS variable. -AC_DEFUN([AC_LIB_LINKFLAGS], -[ - AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) - AC_REQUIRE([AC_LIB_RPATH]) - define([Name],[translit([$1],[./-], [___])]) - define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], - [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) - AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [ - AC_LIB_LINKFLAGS_BODY([$1], [$2]) - ac_cv_lib[]Name[]_libs="$LIB[]NAME" - ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME" - ac_cv_lib[]Name[]_cppflags="$INC[]NAME" - ]) - LIB[]NAME="$ac_cv_lib[]Name[]_libs" - LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs" - INC[]NAME="$ac_cv_lib[]Name[]_cppflags" - AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) - AC_SUBST([LIB]NAME) - AC_SUBST([LTLIB]NAME) - dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the - dnl results of this search when this library appears as a dependency. - HAVE_LIB[]NAME=yes - undefine([Name]) - undefine([NAME]) -]) - -dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode) -dnl searches for libname and the libraries corresponding to explicit and -dnl implicit dependencies, together with the specified include files and -dnl the ability to compile and link the specified testcode. If found, it -dnl sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} and -dnl LTLIB${NAME} variables and augments the CPPFLAGS variable, and -dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs -dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty. -AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], -[ - AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) - AC_REQUIRE([AC_LIB_RPATH]) - define([Name],[translit([$1],[./-], [___])]) - define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], - [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) - - dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME - dnl accordingly. - AC_LIB_LINKFLAGS_BODY([$1], [$2]) - - dnl Add $INC[]NAME to CPPFLAGS before performing the following checks, - dnl because if the user has installed lib[]Name and not disabled its use - dnl via --without-lib[]Name-prefix, he wants to use it. - ac_save_CPPFLAGS="$CPPFLAGS" - AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) - - AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [ - ac_save_LIBS="$LIBS" - LIBS="$LIBS $LIB[]NAME" - AC_TRY_LINK([$3], [$4], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name=no]) - LIBS="$ac_save_LIBS" - ]) - if test "$ac_cv_lib[]Name" = yes; then - HAVE_LIB[]NAME=yes - AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the $1 library.]) - AC_MSG_CHECKING([how to link with lib[]$1]) - AC_MSG_RESULT([$LIB[]NAME]) - else - HAVE_LIB[]NAME=no - dnl If $LIB[]NAME didn't lead to a usable library, we don't need - dnl $INC[]NAME either. - CPPFLAGS="$ac_save_CPPFLAGS" - LIB[]NAME= - LTLIB[]NAME= - fi - AC_SUBST([HAVE_LIB]NAME) - AC_SUBST([LIB]NAME) - AC_SUBST([LTLIB]NAME) - undefine([Name]) - undefine([NAME]) -]) - -dnl Determine the platform dependent parameters needed to use rpath: -dnl libext, shlibext, hardcode_libdir_flag_spec, hardcode_libdir_separator, -dnl hardcode_direct, hardcode_minus_L. -AC_DEFUN([AC_LIB_RPATH], -[ - dnl Tell automake >= 1.10 to complain if config.rpath is missing. - m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([config.rpath])]) - AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS - AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld - AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host - AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir - AC_CACHE_CHECK([for shared library run path origin], acl_cv_rpath, [ - CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ - ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh - . ./conftest.sh - rm -f ./conftest.sh - acl_cv_rpath=done - ]) - wl="$acl_cv_wl" - libext="$acl_cv_libext" - shlibext="$acl_cv_shlibext" - hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" - hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" - hardcode_direct="$acl_cv_hardcode_direct" - hardcode_minus_L="$acl_cv_hardcode_minus_L" - dnl Determine whether the user wants rpath handling at all. - AC_ARG_ENABLE(rpath, - [ --disable-rpath do not hardcode runtime library paths], - :, enable_rpath=yes) -]) - -dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and -dnl the libraries corresponding to explicit and implicit dependencies. -dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. -AC_DEFUN([AC_LIB_LINKFLAGS_BODY], -[ - define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], - [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) - dnl By default, look in $includedir and $libdir. - use_additional=yes - AC_LIB_WITH_FINAL_PREFIX([ - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - ]) - AC_LIB_ARG_WITH([lib$1-prefix], -[ --with-lib$1-prefix[=DIR] search for lib$1 in DIR/include and DIR/lib - --without-lib$1-prefix don't search for lib$1 in includedir and libdir], -[ - if test "X$withval" = "Xno"; then - use_additional=no - else - if test "X$withval" = "X"; then - AC_LIB_WITH_FINAL_PREFIX([ - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - ]) - else - additional_includedir="$withval/include" - additional_libdir="$withval/lib" - fi - fi -]) - dnl Search the library and its dependencies in $additional_libdir and - dnl $LDFLAGS. Using breadth-first-seach. - LIB[]NAME= - LTLIB[]NAME= - INC[]NAME= - rpathdirs= - ltrpathdirs= - names_already_handled= - names_next_round='$1 $2' - while test -n "$names_next_round"; do - names_this_round="$names_next_round" - names_next_round= - for name in $names_this_round; do - already_handled= - for n in $names_already_handled; do - if test "$n" = "$name"; then - already_handled=yes - break - fi - done - if test -z "$already_handled"; then - names_already_handled="$names_already_handled $name" - dnl See if it was already located by an earlier AC_LIB_LINKFLAGS - dnl or AC_LIB_HAVE_LINKFLAGS call. - uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` - eval value=\"\$HAVE_LIB$uppername\" - if test -n "$value"; then - if test "$value" = yes; then - eval value=\"\$LIB$uppername\" - test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" - eval value=\"\$LTLIB$uppername\" - test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" - else - dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined - dnl that this library doesn't exist. So just drop it. - : - fi - else - dnl Search the library lib$name in $additional_libdir and $LDFLAGS - dnl and the already constructed $LIBNAME/$LTLIBNAME. - found_dir= - found_la= - found_so= - found_a= - if test $use_additional = yes; then - if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then - found_dir="$additional_libdir" - found_so="$additional_libdir/lib$name.$shlibext" - if test -f "$additional_libdir/lib$name.la"; then - found_la="$additional_libdir/lib$name.la" - fi - else - if test -f "$additional_libdir/lib$name.$libext"; then - found_dir="$additional_libdir" - found_a="$additional_libdir/lib$name.$libext" - if test -f "$additional_libdir/lib$name.la"; then - found_la="$additional_libdir/lib$name.la" - fi - fi - fi - fi - if test "X$found_dir" = "X"; then - for x in $LDFLAGS $LTLIB[]NAME; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - case "$x" in - -L*) - dir=`echo "X$x" | sed -e 's/^X-L//'` - if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then - found_dir="$dir" - found_so="$dir/lib$name.$shlibext" - if test -f "$dir/lib$name.la"; then - found_la="$dir/lib$name.la" - fi - else - if test -f "$dir/lib$name.$libext"; then - found_dir="$dir" - found_a="$dir/lib$name.$libext" - if test -f "$dir/lib$name.la"; then - found_la="$dir/lib$name.la" - fi - fi - fi - ;; - esac - if test "X$found_dir" != "X"; then - break - fi - done - fi - if test "X$found_dir" != "X"; then - dnl Found the library. - LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" - if test "X$found_so" != "X"; then - dnl Linking with a shared library. We attempt to hardcode its - dnl directory into the executable's runpath, unless it's the - dnl standard /usr/lib. - if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then - dnl No hardcoding is needed. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" - else - dnl Use an explicit option to hardcode DIR into the resulting - dnl binary. - dnl Potentially add DIR to ltrpathdirs. - dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. - haveit= - for x in $ltrpathdirs; do - if test "X$x" = "X$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - ltrpathdirs="$ltrpathdirs $found_dir" - fi - dnl The hardcoding into $LIBNAME is system dependent. - if test "$hardcode_direct" = yes; then - dnl Using DIR/libNAME.so during linking hardcodes DIR into the - dnl resulting binary. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" - else - if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then - dnl Use an explicit option to hardcode DIR into the resulting - dnl binary. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" - dnl Potentially add DIR to rpathdirs. - dnl The rpathdirs will be appended to $LIBNAME at the end. - haveit= - for x in $rpathdirs; do - if test "X$x" = "X$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - rpathdirs="$rpathdirs $found_dir" - fi - else - dnl Rely on "-L$found_dir". - dnl But don't add it if it's already contained in the LDFLAGS - dnl or the already constructed $LIBNAME - haveit= - for x in $LDFLAGS $LIB[]NAME; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-L$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" - fi - if test "$hardcode_minus_L" != no; then - dnl FIXME: Not sure whether we should use - dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" - dnl here. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" - else - dnl We cannot use $hardcode_runpath_var and LD_RUN_PATH - dnl here, because this doesn't fit in flags passed to the - dnl compiler. So give up. No hardcoding. This affects only - dnl very old systems. - dnl FIXME: Not sure whether we should use - dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" - dnl here. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" - fi - fi - fi - fi - else - if test "X$found_a" != "X"; then - dnl Linking with a static library. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" - else - dnl We shouldn't come here, but anyway it's good to have a - dnl fallback. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" - fi - fi - dnl Assume the include files are nearby. - additional_includedir= - case "$found_dir" in - */lib | */lib/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'` - additional_includedir="$basedir/include" - ;; - esac - if test "X$additional_includedir" != "X"; then - dnl Potentially add $additional_includedir to $INCNAME. - dnl But don't add it - dnl 1. if it's the standard /usr/include, - dnl 2. if it's /usr/local/include and we are using GCC on Linux, - dnl 3. if it's already present in $CPPFLAGS or the already - dnl constructed $INCNAME, - dnl 4. if it doesn't exist as a directory. - if test "X$additional_includedir" != "X/usr/include"; then - haveit= - if test "X$additional_includedir" = "X/usr/local/include"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - for x in $CPPFLAGS $INC[]NAME; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-I$additional_includedir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$additional_includedir"; then - dnl Really add $additional_includedir to $INCNAME. - INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" - fi - fi - fi - fi - fi - dnl Look for dependencies. - if test -n "$found_la"; then - dnl Read the .la file. It defines the variables - dnl dlname, library_names, old_library, dependency_libs, current, - dnl age, revision, installed, dlopen, dlpreopen, libdir. - save_libdir="$libdir" - case "$found_la" in - */* | *\\*) . "$found_la" ;; - *) . "./$found_la" ;; - esac - libdir="$save_libdir" - dnl We use only dependency_libs. - for dep in $dependency_libs; do - case "$dep" in - -L*) - additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` - dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME. - dnl But don't add it - dnl 1. if it's the standard /usr/lib, - dnl 2. if it's /usr/local/lib and we are using GCC on Linux, - dnl 3. if it's already present in $LDFLAGS or the already - dnl constructed $LIBNAME, - dnl 4. if it doesn't exist as a directory. - if test "X$additional_libdir" != "X/usr/lib"; then - haveit= - if test "X$additional_libdir" = "X/usr/local/lib"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - haveit= - for x in $LDFLAGS $LIB[]NAME; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-L$additional_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$additional_libdir"; then - dnl Really add $additional_libdir to $LIBNAME. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir" - fi - fi - haveit= - for x in $LDFLAGS $LTLIB[]NAME; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-L$additional_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$additional_libdir"; then - dnl Really add $additional_libdir to $LTLIBNAME. - LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir" - fi - fi - fi - fi - ;; - -R*) - dir=`echo "X$dep" | sed -e 's/^X-R//'` - if test "$enable_rpath" != no; then - dnl Potentially add DIR to rpathdirs. - dnl The rpathdirs will be appended to $LIBNAME at the end. - haveit= - for x in $rpathdirs; do - if test "X$x" = "X$dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - rpathdirs="$rpathdirs $dir" - fi - dnl Potentially add DIR to ltrpathdirs. - dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. - haveit= - for x in $ltrpathdirs; do - if test "X$x" = "X$dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - ltrpathdirs="$ltrpathdirs $dir" - fi - fi - ;; - -l*) - dnl Handle this in the next round. - names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` - ;; - *.la) - dnl Handle this in the next round. Throw away the .la's - dnl directory; it is already contained in a preceding -L - dnl option. - names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` - ;; - *) - dnl Most likely an immediate library name. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" - LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" - ;; - esac - done - fi - else - dnl Didn't find the library; assume it is in the system directories - dnl known to the linker and runtime loader. (All the system - dnl directories known to the linker should also be known to the - dnl runtime loader, otherwise the system is severely misconfigured.) - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" - LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" - fi - fi - fi - done - done - if test "X$rpathdirs" != "X"; then - if test -n "$hardcode_libdir_separator"; then - dnl Weird platform: only the last -rpath option counts, the user must - dnl pass all path elements in one option. We can arrange that for a - dnl single library, but not when more than one $LIBNAMEs are used. - alldirs= - for found_dir in $rpathdirs; do - alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" - done - dnl Note: hardcode_libdir_flag_spec uses $libdir and $wl. - acl_save_libdir="$libdir" - libdir="$alldirs" - eval flag=\"$hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" - else - dnl The -rpath options are cumulative. - for found_dir in $rpathdirs; do - acl_save_libdir="$libdir" - libdir="$found_dir" - eval flag=\"$hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" - done - fi - fi - if test "X$ltrpathdirs" != "X"; then - dnl When using libtool, the option that works for both libraries and - dnl executables is -R. The -R options are cumulative. - for found_dir in $ltrpathdirs; do - LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" - done - fi -]) - -dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, -dnl unless already present in VAR. -dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes -dnl contains two or three consecutive elements that belong together. -AC_DEFUN([AC_LIB_APPENDTOVAR], -[ - for element in [$2]; do - haveit= - for x in $[$1]; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X$element"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - [$1]="${[$1]}${[$1]:+ }$element" - fi - done -]) - -# lib-ld.m4 serial 3 (gettext-0.13) -dnl Copyright (C) 1996-2003 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl Subroutines of libtool.m4, -dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision -dnl with libtool.m4. - -dnl From libtool-1.4. Sets the variable with_gnu_ld to yes or no. -AC_DEFUN([AC_LIB_PROG_LD_GNU], -[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], acl_cv_prog_gnu_ld, -[# I'd rather use --version here, but apparently some GNU ld's only accept -v. -case `$LD -v 2>&1 </dev/null` in -*GNU* | *'with BFD'*) - acl_cv_prog_gnu_ld=yes ;; -*) - acl_cv_prog_gnu_ld=no ;; -esac]) -with_gnu_ld=$acl_cv_prog_gnu_ld -]) - -dnl From libtool-1.4. Sets the variable LD. -AC_DEFUN([AC_LIB_PROG_LD], -[AC_ARG_WITH(gnu-ld, -[ --with-gnu-ld assume the C compiler uses GNU ld [default=no]], -test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no) -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([AC_CANONICAL_HOST])dnl -# Prepare PATH_SEPARATOR. -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi -ac_prog=ld -if test "$GCC" = yes; then - # Check if gcc -print-prog-name=ld gives a path. - AC_MSG_CHECKING([for ld used by GCC]) - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $ac_prog in - # Accept absolute paths. - [[\\/]* | [A-Za-z]:[\\/]*)] - [re_direlt='/[^/][^/]*/\.\./'] - # Canonicalize the path of ld - ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` - while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do - ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` - done - test -z "$LD" && LD="$ac_prog" - ;; - "") - # If it fails, then pretend we aren't using GCC. - ac_prog=ld - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac -elif test "$with_gnu_ld" = yes; then - AC_MSG_CHECKING([for GNU ld]) -else - AC_MSG_CHECKING([for non-GNU ld]) -fi -AC_CACHE_VAL(acl_cv_path_LD, -[if test -z "$LD"; then - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" - for ac_dir in $PATH; do - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - acl_cv_path_LD="$ac_dir/$ac_prog" - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some GNU ld's only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in - *GNU* | *'with BFD'*) - test "$with_gnu_ld" != no && break ;; - *) - test "$with_gnu_ld" != yes && break ;; - esac - fi - done - IFS="$ac_save_ifs" -else - acl_cv_path_LD="$LD" # Let the user override the test with a path. -fi]) -LD="$acl_cv_path_LD" -if test -n "$LD"; then - AC_MSG_RESULT($LD) -else - AC_MSG_RESULT(no) -fi -test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH]) -AC_LIB_PROG_LD_GNU -]) - -dnl Macro: anope_CHECK_TYPE_SIZES -dnl -dnl Check the size of several types and define a valid int16_t and int32_t. -dnl -AC_DEFUN(anope_CHECK_TYPE_SIZES, -[dnl Check type sizes -AC_CHECK_SIZEOF(short) -AC_CHECK_SIZEOF(int) -AC_CHECK_SIZEOF(long) -if test "$ac_cv_sizeof_int" = 2 ; then - AC_CHECK_TYPE(int16_t, int) - AC_CHECK_TYPE(u_int16_t, unsigned int) -elif test "$ac_cv_sizeof_short" = 2 ; then - AC_CHECK_TYPE(int16_t, short) - AC_CHECK_TYPE(u_int16_t, unsigned short) -else - AC_MSG_ERROR([Cannot find a type with size of 16 bits]) -fi -if test "$ac_cv_sizeof_int" = 4 ; then - AC_CHECK_TYPE(int32_t, int) - AC_CHECK_TYPE(u_int32_t, unsigned int) -elif test "$ac_cv_sizeof_short" = 4 ; then - AC_CHECK_TYPE(int32_t, short) - AC_CHECK_TYPE(u_int32_t, unsigned short) -elif test "$ac_cv_sizeof_long" = 4 ; then - AC_CHECK_TYPE(int32_t, long) - AC_CHECK_TYPE(u_int32_t, unsigned long) -else - AC_MSG_ERROR([Cannot find a type with size of 32 bits]) -fi -]) - diff --git a/anope.m4 b/anope.m4 deleted file mode 100644 index 56e750dd3..000000000 --- a/anope.m4 +++ /dev/null @@ -1,31 +0,0 @@ -dnl Macro: anope_CHECK_TYPE_SIZES -dnl -dnl Check the size of several types and define a valid int16_t and int32_t. -dnl -AC_DEFUN(anope_CHECK_TYPE_SIZES, -[dnl Check type sizes -AC_CHECK_SIZEOF(short) -AC_CHECK_SIZEOF(int) -AC_CHECK_SIZEOF(long) -if test "$ac_cv_sizeof_int" = 2 ; then - AC_CHECK_TYPE(int16_t, int) - AC_CHECK_TYPE(u_int16_t, unsigned int) -elif test "$ac_cv_sizeof_short" = 2 ; then - AC_CHECK_TYPE(int16_t, short) - AC_CHECK_TYPE(u_int16_t, unsigned short) -else - AC_MSG_ERROR([Cannot find a type with size of 16 bits]) -fi -if test "$ac_cv_sizeof_int" = 4 ; then - AC_CHECK_TYPE(int32_t, int) - AC_CHECK_TYPE(u_int32_t, unsigned int) -elif test "$ac_cv_sizeof_short" = 4 ; then - AC_CHECK_TYPE(int32_t, short) - AC_CHECK_TYPE(u_int32_t, unsigned short) -elif test "$ac_cv_sizeof_long" = 4 ; then - AC_CHECK_TYPE(int32_t, long) - AC_CHECK_TYPE(u_int32_t, unsigned long) -else - AC_MSG_ERROR([Cannot find a type with size of 32 bits]) -fi -]) diff --git a/autogen.sh b/autogen.sh deleted file mode 100755 index 8f047c99a..000000000 --- a/autogen.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -echo "Generating build information using aclocal, autoheader, automake and autoconf." -echo - -# Regerate configuration files -aclocal -autoheader -automake --gnu --add-missing --copy -autoconf - -echo -echo "Now you are ready to run ./configure" diff --git a/config.guess b/config.guess deleted file mode 100644 index f32079abd..000000000 --- a/config.guess +++ /dev/null @@ -1,1526 +0,0 @@ -#! /bin/sh -# Attempt to guess a canonical system name. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 -# Free Software Foundation, Inc. - -timestamp='2008-01-23' - -# This file is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA -# 02110-1301, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - - -# Originally written by Per Bothner <per@bothner.com>. -# Please send patches to <config-patches@gnu.org>. Submit a context -# diff and a properly formatted ChangeLog entry. -# -# This script attempts to guess a canonical system name similar to -# config.sub. If it succeeds, it prints the system name on stdout, and -# exits with 0. Otherwise, it exits with 1. -# -# The plan is that this can be called by configure scripts if you -# don't specify an explicit build system type. - -me=`echo "$0" | sed -e 's,.*/,,'` - -usage="\ -Usage: $0 [OPTION] - -Output the configuration name of the system \`$me' is run on. - -Operation modes: - -h, --help print this help, then exit - -t, --time-stamp print date of last modification, then exit - -v, --version print version number, then exit - -Report bugs and patches to <config-patches@gnu.org>." - -version="\ -GNU config.guess ($timestamp) - -Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, -2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. - -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - -help=" -Try \`$me --help' for more information." - -# Parse command line -while test $# -gt 0 ; do - case $1 in - --time-stamp | --time* | -t ) - echo "$timestamp" ; exit ;; - --version | -v ) - echo "$version" ; exit ;; - --help | --h* | -h ) - echo "$usage"; exit ;; - -- ) # Stop option processing - shift; break ;; - - ) # Use stdin as input. - break ;; - -* ) - echo "$me: invalid option $1$help" >&2 - exit 1 ;; - * ) - break ;; - esac -done - -if test $# != 0; then - echo "$me: too many arguments$help" >&2 - exit 1 -fi - -trap 'exit 1' 1 2 15 - -# CC_FOR_BUILD -- compiler used by this script. Note that the use of a -# compiler to aid in system detection is discouraged as it requires -# temporary files to be created and, as you can see below, it is a -# headache to deal with in a portable fashion. - -# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still -# use `HOST_CC' if defined, but it is deprecated. - -# Portable tmp directory creation inspired by the Autoconf team. - -set_cc_for_build=' -trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; -trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; -: ${TMPDIR=/tmp} ; - { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || - { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || - { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || - { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; -dummy=$tmp/dummy ; -tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; -case $CC_FOR_BUILD,$HOST_CC,$CC in - ,,) echo "int x;" > $dummy.c ; - for c in cc gcc c89 c99 ; do - if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then - CC_FOR_BUILD="$c"; break ; - fi ; - done ; - if test x"$CC_FOR_BUILD" = x ; then - CC_FOR_BUILD=no_compiler_found ; - fi - ;; - ,,*) CC_FOR_BUILD=$CC ;; - ,*,*) CC_FOR_BUILD=$HOST_CC ;; -esac ; set_cc_for_build= ;' - -# This is needed to find uname on a Pyramid OSx when run in the BSD universe. -# (ghazi@noc.rutgers.edu 1994-08-24) -if (test -f /.attbin/uname) >/dev/null 2>&1 ; then - PATH=$PATH:/.attbin ; export PATH -fi - -UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown -UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown -UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown -UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown - -# Note: order is significant - the case branches are not exclusive. - -case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in - *:NetBSD:*:*) - # NetBSD (nbsd) targets should (where applicable) match one or - # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, - # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently - # switched to ELF, *-*-netbsd* would select the old - # object file format. This provides both forward - # compatibility and a consistent mechanism for selecting the - # object file format. - # - # Note: NetBSD doesn't particularly care about the vendor - # portion of the name. We always set it to "unknown". - sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ - /usr/sbin/$sysctl 2>/dev/null || echo unknown)` - case "${UNAME_MACHINE_ARCH}" in - armeb) machine=armeb-unknown ;; - arm*) machine=arm-unknown ;; - sh3el) machine=shl-unknown ;; - sh3eb) machine=sh-unknown ;; - sh5el) machine=sh5le-unknown ;; - *) machine=${UNAME_MACHINE_ARCH}-unknown ;; - esac - # The Operating System including object format, if it has switched - # to ELF recently, or will in the future. - case "${UNAME_MACHINE_ARCH}" in - arm*|i386|m68k|ns32k|sh3*|sparc|vax) - eval $set_cc_for_build - if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep __ELF__ >/dev/null - then - # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). - # Return netbsd for either. FIX? - os=netbsd - else - os=netbsdelf - fi - ;; - *) - os=netbsd - ;; - esac - # The OS release - # Debian GNU/NetBSD machines have a different userland, and - # thus, need a distinct triplet. However, they do not need - # kernel version information, so it can be replaced with a - # suitable tag, in the style of linux-gnu. - case "${UNAME_VERSION}" in - Debian*) - release='-gnu' - ;; - *) - release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` - ;; - esac - # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: - # contains redundant information, the shorter form: - # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "${machine}-${os}${release}" - exit ;; - *:OpenBSD:*:*) - UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} - exit ;; - *:ekkoBSD:*:*) - echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} - exit ;; - *:SolidBSD:*:*) - echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} - exit ;; - macppc:MirBSD:*:*) - echo powerpc-unknown-mirbsd${UNAME_RELEASE} - exit ;; - *:MirBSD:*:*) - echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} - exit ;; - alpha:OSF1:*:*) - case $UNAME_RELEASE in - *4.0) - UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` - ;; - *5.*) - UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` - ;; - esac - # According to Compaq, /usr/sbin/psrinfo has been available on - # OSF/1 and Tru64 systems produced since 1995. I hope that - # covers most systems running today. This code pipes the CPU - # types through head -n 1, so we only detect the type of CPU 0. - ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` - case "$ALPHA_CPU_TYPE" in - "EV4 (21064)") - UNAME_MACHINE="alpha" ;; - "EV4.5 (21064)") - UNAME_MACHINE="alpha" ;; - "LCA4 (21066/21068)") - UNAME_MACHINE="alpha" ;; - "EV5 (21164)") - UNAME_MACHINE="alphaev5" ;; - "EV5.6 (21164A)") - UNAME_MACHINE="alphaev56" ;; - "EV5.6 (21164PC)") - UNAME_MACHINE="alphapca56" ;; - "EV5.7 (21164PC)") - UNAME_MACHINE="alphapca57" ;; - "EV6 (21264)") - UNAME_MACHINE="alphaev6" ;; - "EV6.7 (21264A)") - UNAME_MACHINE="alphaev67" ;; - "EV6.8CB (21264C)") - UNAME_MACHINE="alphaev68" ;; - "EV6.8AL (21264B)") - UNAME_MACHINE="alphaev68" ;; - "EV6.8CX (21264D)") - UNAME_MACHINE="alphaev68" ;; - "EV6.9A (21264/EV69A)") - UNAME_MACHINE="alphaev69" ;; - "EV7 (21364)") - UNAME_MACHINE="alphaev7" ;; - "EV7.9 (21364A)") - UNAME_MACHINE="alphaev79" ;; - esac - # A Pn.n version is a patched version. - # A Vn.n version is a released version. - # A Tn.n version is a released field test version. - # A Xn.n version is an unreleased experimental baselevel. - # 1.2 uses "1.2" for uname -r. - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - exit ;; - Alpha\ *:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # Should we change UNAME_MACHINE based on the output of uname instead - # of the specific Alpha model? - echo alpha-pc-interix - exit ;; - 21064:Windows_NT:50:3) - echo alpha-dec-winnt3.5 - exit ;; - Amiga*:UNIX_System_V:4.0:*) - echo m68k-unknown-sysv4 - exit ;; - *:[Aa]miga[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-amigaos - exit ;; - *:[Mm]orph[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-morphos - exit ;; - *:OS/390:*:*) - echo i370-ibm-openedition - exit ;; - *:z/VM:*:*) - echo s390-ibm-zvmoe - exit ;; - *:OS400:*:*) - echo powerpc-ibm-os400 - exit ;; - arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix${UNAME_RELEASE} - exit ;; - arm:riscos:*:*|arm:RISCOS:*:*) - echo arm-unknown-riscos - exit ;; - SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) - echo hppa1.1-hitachi-hiuxmpp - exit ;; - Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) - # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. - if test "`(/bin/universe) 2>/dev/null`" = att ; then - echo pyramid-pyramid-sysv3 - else - echo pyramid-pyramid-bsd - fi - exit ;; - NILE*:*:*:dcosx) - echo pyramid-pyramid-svr4 - exit ;; - DRS?6000:unix:4.0:6*) - echo sparc-icl-nx6 - exit ;; - DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) - case `/usr/bin/uname -p` in - sparc) echo sparc-icl-nx7; exit ;; - esac ;; - sun4H:SunOS:5.*:*) - echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) - echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) - echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - sun4*:SunOS:6*:*) - # According to config.sub, this is the proper way to canonicalize - # SunOS6. Hard to guess exactly what SunOS6 will be like, but - # it's likely to be more like Solaris than SunOS4. - echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - sun4*:SunOS:*:*) - case "`/usr/bin/arch -k`" in - Series*|S4*) - UNAME_RELEASE=`uname -v` - ;; - esac - # Japanese Language versions have a version number like `4.1.3-JL'. - echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` - exit ;; - sun3*:SunOS:*:*) - echo m68k-sun-sunos${UNAME_RELEASE} - exit ;; - sun*:*:4.2BSD:*) - UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` - test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 - case "`/bin/arch`" in - sun3) - echo m68k-sun-sunos${UNAME_RELEASE} - ;; - sun4) - echo sparc-sun-sunos${UNAME_RELEASE} - ;; - esac - exit ;; - aushp:SunOS:*:*) - echo sparc-auspex-sunos${UNAME_RELEASE} - exit ;; - # The situation for MiNT is a little confusing. The machine name - # can be virtually everything (everything which is not - # "atarist" or "atariste" at least should have a processor - # > m68000). The system name ranges from "MiNT" over "FreeMiNT" - # to the lowercase version "mint" (or "freemint"). Finally - # the system name "TOS" denotes a system which is actually not - # MiNT. But MiNT is downward compatible to TOS, so this should - # be no problem. - atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} - exit ;; - atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} - exit ;; - *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} - exit ;; - milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint${UNAME_RELEASE} - exit ;; - hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint${UNAME_RELEASE} - exit ;; - *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint${UNAME_RELEASE} - exit ;; - m68k:machten:*:*) - echo m68k-apple-machten${UNAME_RELEASE} - exit ;; - powerpc:machten:*:*) - echo powerpc-apple-machten${UNAME_RELEASE} - exit ;; - RISC*:Mach:*:*) - echo mips-dec-mach_bsd4.3 - exit ;; - RISC*:ULTRIX:*:*) - echo mips-dec-ultrix${UNAME_RELEASE} - exit ;; - VAX*:ULTRIX*:*:*) - echo vax-dec-ultrix${UNAME_RELEASE} - exit ;; - 2020:CLIX:*:* | 2430:CLIX:*:*) - echo clipper-intergraph-clix${UNAME_RELEASE} - exit ;; - mips:*:*:UMIPS | mips:*:*:RISCos) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c -#ifdef __cplusplus -#include <stdio.h> /* for printf() prototype */ - int main (int argc, char *argv[]) { -#else - int main (argc, argv) int argc; char *argv[]; { -#endif - #if defined (host_mips) && defined (MIPSEB) - #if defined (SYSTYPE_SYSV) - printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); - #endif - #if defined (SYSTYPE_SVR4) - printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); - #endif - #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) - printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); - #endif - #endif - exit (-1); - } -EOF - $CC_FOR_BUILD -o $dummy $dummy.c && - dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && - SYSTEM_NAME=`$dummy $dummyarg` && - { echo "$SYSTEM_NAME"; exit; } - echo mips-mips-riscos${UNAME_RELEASE} - exit ;; - Motorola:PowerMAX_OS:*:*) - echo powerpc-motorola-powermax - exit ;; - Motorola:*:4.3:PL8-*) - echo powerpc-harris-powermax - exit ;; - Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) - echo powerpc-harris-powermax - exit ;; - Night_Hawk:Power_UNIX:*:*) - echo powerpc-harris-powerunix - exit ;; - m88k:CX/UX:7*:*) - echo m88k-harris-cxux7 - exit ;; - m88k:*:4*:R4*) - echo m88k-motorola-sysv4 - exit ;; - m88k:*:3*:R3*) - echo m88k-motorola-sysv3 - exit ;; - AViiON:dgux:*:*) - # DG/UX returns AViiON for all architectures - UNAME_PROCESSOR=`/usr/bin/uname -p` - if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] - then - if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ - [ ${TARGET_BINARY_INTERFACE}x = x ] - then - echo m88k-dg-dgux${UNAME_RELEASE} - else - echo m88k-dg-dguxbcs${UNAME_RELEASE} - fi - else - echo i586-dg-dgux${UNAME_RELEASE} - fi - exit ;; - M88*:DolphinOS:*:*) # DolphinOS (SVR3) - echo m88k-dolphin-sysv3 - exit ;; - M88*:*:R3*:*) - # Delta 88k system running SVR3 - echo m88k-motorola-sysv3 - exit ;; - XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) - echo m88k-tektronix-sysv3 - exit ;; - Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) - echo m68k-tektronix-bsd - exit ;; - *:IRIX*:*:*) - echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` - exit ;; - ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. - echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id - exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' - i*86:AIX:*:*) - echo i386-ibm-aix - exit ;; - ia64:AIX:*:*) - if [ -x /usr/bin/oslevel ] ; then - IBM_REV=`/usr/bin/oslevel` - else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} - fi - echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} - exit ;; - *:AIX:2:3) - if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include <sys/systemcfg.h> - - main() - { - if (!__power_pc()) - exit(1); - puts("powerpc-ibm-aix3.2.5"); - exit(0); - } -EOF - if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` - then - echo "$SYSTEM_NAME" - else - echo rs6000-ibm-aix3.2.5 - fi - elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then - echo rs6000-ibm-aix3.2.4 - else - echo rs6000-ibm-aix3.2 - fi - exit ;; - *:AIX:*:[456]) - IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` - if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then - IBM_ARCH=rs6000 - else - IBM_ARCH=powerpc - fi - if [ -x /usr/bin/oslevel ] ; then - IBM_REV=`/usr/bin/oslevel` - else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} - fi - echo ${IBM_ARCH}-ibm-aix${IBM_REV} - exit ;; - *:AIX:*:*) - echo rs6000-ibm-aix - exit ;; - ibmrt:4.4BSD:*|romp-ibm:BSD:*) - echo romp-ibm-bsd4.4 - exit ;; - ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and - echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to - exit ;; # report: romp-ibm BSD 4.3 - *:BOSX:*:*) - echo rs6000-bull-bosx - exit ;; - DPX/2?00:B.O.S.:*:*) - echo m68k-bull-sysv3 - exit ;; - 9000/[34]??:4.3bsd:1.*:*) - echo m68k-hp-bsd - exit ;; - hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) - echo m68k-hp-bsd4.4 - exit ;; - 9000/[34678]??:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - case "${UNAME_MACHINE}" in - 9000/31? ) HP_ARCH=m68000 ;; - 9000/[34]?? ) HP_ARCH=m68k ;; - 9000/[678][0-9][0-9]) - if [ -x /usr/bin/getconf ]; then - sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` - sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` - case "${sc_cpu_version}" in - 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 - 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 - 532) # CPU_PA_RISC2_0 - case "${sc_kernel_bits}" in - 32) HP_ARCH="hppa2.0n" ;; - 64) HP_ARCH="hppa2.0w" ;; - '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 - esac ;; - esac - fi - if [ "${HP_ARCH}" = "" ]; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - - #define _HPUX_SOURCE - #include <stdlib.h> - #include <unistd.h> - - int main () - { - #if defined(_SC_KERNEL_BITS) - long bits = sysconf(_SC_KERNEL_BITS); - #endif - long cpu = sysconf (_SC_CPU_VERSION); - - switch (cpu) - { - case CPU_PA_RISC1_0: puts ("hppa1.0"); break; - case CPU_PA_RISC1_1: puts ("hppa1.1"); break; - case CPU_PA_RISC2_0: - #if defined(_SC_KERNEL_BITS) - switch (bits) - { - case 64: puts ("hppa2.0w"); break; - case 32: puts ("hppa2.0n"); break; - default: puts ("hppa2.0"); break; - } break; - #else /* !defined(_SC_KERNEL_BITS) */ - puts ("hppa2.0"); break; - #endif - default: puts ("hppa1.0"); break; - } - exit (0); - } -EOF - (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` - test -z "$HP_ARCH" && HP_ARCH=hppa - fi ;; - esac - if [ ${HP_ARCH} = "hppa2.0w" ] - then - eval $set_cc_for_build - - # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating - # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler - # generating 64-bit code. GNU and HP use different nomenclature: - # - # $ CC_FOR_BUILD=cc ./config.guess - # => hppa2.0w-hp-hpux11.23 - # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess - # => hppa64-hp-hpux11.23 - - if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | - grep __LP64__ >/dev/null - then - HP_ARCH="hppa2.0w" - else - HP_ARCH="hppa64" - fi - fi - echo ${HP_ARCH}-hp-hpux${HPUX_REV} - exit ;; - ia64:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - echo ia64-hp-hpux${HPUX_REV} - exit ;; - 3050*:HI-UX:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include <unistd.h> - int - main () - { - long cpu = sysconf (_SC_CPU_VERSION); - /* The order matters, because CPU_IS_HP_MC68K erroneously returns - true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct - results, however. */ - if (CPU_IS_PA_RISC (cpu)) - { - switch (cpu) - { - case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; - case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; - case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; - default: puts ("hppa-hitachi-hiuxwe2"); break; - } - } - else if (CPU_IS_HP_MC68K (cpu)) - puts ("m68k-hitachi-hiuxwe2"); - else puts ("unknown-hitachi-hiuxwe2"); - exit (0); - } -EOF - $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && - { echo "$SYSTEM_NAME"; exit; } - echo unknown-hitachi-hiuxwe2 - exit ;; - 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) - echo hppa1.1-hp-bsd - exit ;; - 9000/8??:4.3bsd:*:*) - echo hppa1.0-hp-bsd - exit ;; - *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) - echo hppa1.0-hp-mpeix - exit ;; - hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) - echo hppa1.1-hp-osf - exit ;; - hp8??:OSF1:*:*) - echo hppa1.0-hp-osf - exit ;; - i*86:OSF1:*:*) - if [ -x /usr/sbin/sysversion ] ; then - echo ${UNAME_MACHINE}-unknown-osf1mk - else - echo ${UNAME_MACHINE}-unknown-osf1 - fi - exit ;; - parisc*:Lites*:*:*) - echo hppa1.1-hp-lites - exit ;; - C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) - echo c1-convex-bsd - exit ;; - C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) - if getsysinfo -f scalar_acc - then echo c32-convex-bsd - else echo c2-convex-bsd - fi - exit ;; - C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) - echo c34-convex-bsd - exit ;; - C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) - echo c38-convex-bsd - exit ;; - C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) - echo c4-convex-bsd - exit ;; - CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*[A-Z]90:*:*:*) - echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ - | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ - -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ - -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*TS:*:*:*) - echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*T3E:*:*:*) - echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*SV1:*:*:*) - echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - *:UNICOS/mp:*:*) - echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) - FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` - echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit ;; - 5000:UNIX_System_V:4.*:*) - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` - echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit ;; - i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) - echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} - exit ;; - sparc*:BSD/OS:*:*) - echo sparc-unknown-bsdi${UNAME_RELEASE} - exit ;; - *:BSD/OS:*:*) - echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} - exit ;; - *:FreeBSD:*:*) - case ${UNAME_MACHINE} in - pc98) - echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; - amd64) - echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; - *) - echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; - esac - exit ;; - i*:CYGWIN*:*) - echo ${UNAME_MACHINE}-pc-cygwin - exit ;; - *:MINGW*:*) - echo ${UNAME_MACHINE}-pc-mingw32 - exit ;; - i*:windows32*:*) - # uname -m includes "-pc" on this system. - echo ${UNAME_MACHINE}-mingw32 - exit ;; - i*:PW*:*) - echo ${UNAME_MACHINE}-pc-pw32 - exit ;; - *:Interix*:[3456]*) - case ${UNAME_MACHINE} in - x86) - echo i586-pc-interix${UNAME_RELEASE} - exit ;; - EM64T | authenticamd) - echo x86_64-unknown-interix${UNAME_RELEASE} - exit ;; - IA64) - echo ia64-unknown-interix${UNAME_RELEASE} - exit ;; - esac ;; - [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) - echo i${UNAME_MACHINE}-pc-mks - exit ;; - i*:Windows_NT*:* | Pentium*:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we - # UNAME_MACHINE based on the output of uname instead of i386? - echo i586-pc-interix - exit ;; - i*:UWIN*:*) - echo ${UNAME_MACHINE}-pc-uwin - exit ;; - amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) - echo x86_64-unknown-cygwin - exit ;; - p*:CYGWIN*:*) - echo powerpcle-unknown-cygwin - exit ;; - prep*:SunOS:5.*:*) - echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - *:GNU:*:*) - # the GNU system - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` - exit ;; - *:GNU/*:*:*) - # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu - exit ;; - i*86:Minix:*:*) - echo ${UNAME_MACHINE}-pc-minix - exit ;; - arm*:Linux:*:*) - eval $set_cc_for_build - if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep -q __ARM_EABI__ - then - echo ${UNAME_MACHINE}-unknown-linux-gnu - else - echo ${UNAME_MACHINE}-unknown-linux-gnueabi - fi - exit ;; - avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - cris:Linux:*:*) - echo cris-axis-linux-gnu - exit ;; - crisv32:Linux:*:*) - echo crisv32-axis-linux-gnu - exit ;; - frv:Linux:*:*) - echo frv-unknown-linux-gnu - exit ;; - ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - mips:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #undef CPU - #undef mips - #undef mipsel - #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=mipsel - #else - #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=mips - #else - CPU= - #endif - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^CPU/{ - s: ::g - p - }'`" - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } - ;; - mips64:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #undef CPU - #undef mips64 - #undef mips64el - #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=mips64el - #else - #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=mips64 - #else - CPU= - #endif - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^CPU/{ - s: ::g - p - }'`" - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } - ;; - or32:Linux:*:*) - echo or32-unknown-linux-gnu - exit ;; - ppc:Linux:*:*) - echo powerpc-unknown-linux-gnu - exit ;; - ppc64:Linux:*:*) - echo powerpc64-unknown-linux-gnu - exit ;; - alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in - EV5) UNAME_MACHINE=alphaev5 ;; - EV56) UNAME_MACHINE=alphaev56 ;; - PCA56) UNAME_MACHINE=alphapca56 ;; - PCA57) UNAME_MACHINE=alphapca56 ;; - EV6) UNAME_MACHINE=alphaev6 ;; - EV67) UNAME_MACHINE=alphaev67 ;; - EV68*) UNAME_MACHINE=alphaev68 ;; - esac - objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null - if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi - echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} - exit ;; - parisc:Linux:*:* | hppa:Linux:*:*) - # Look for CPU level - case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-gnu ;; - PA8*) echo hppa2.0-unknown-linux-gnu ;; - *) echo hppa-unknown-linux-gnu ;; - esac - exit ;; - parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-gnu - exit ;; - s390:Linux:*:* | s390x:Linux:*:*) - echo ${UNAME_MACHINE}-ibm-linux - exit ;; - sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-gnu - exit ;; - x86_64:Linux:*:*) - echo x86_64-unknown-linux-gnu - exit ;; - xtensa*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - i*86:Linux:*:*) - # The BFD linker knows what the default object file format is, so - # first see if it will tell us. cd to the root directory to prevent - # problems with other programs or directories called `ld' in the path. - # Set LC_ALL=C to ensure ld outputs messages in English. - ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ - | sed -ne '/supported targets:/!d - s/[ ][ ]*/ /g - s/.*supported targets: *// - s/ .*// - p'` - case "$ld_supported_targets" in - elf32-i386) - TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" - ;; - a.out-i386-linux) - echo "${UNAME_MACHINE}-pc-linux-gnuaout" - exit ;; - coff-i386) - echo "${UNAME_MACHINE}-pc-linux-gnucoff" - exit ;; - "") - # Either a pre-BFD a.out linker (linux-gnuoldld) or - # one that does not give us useful --help. - echo "${UNAME_MACHINE}-pc-linux-gnuoldld" - exit ;; - esac - # Determine whether the default compiler is a.out or elf - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include <features.h> - #ifdef __ELF__ - # ifdef __GLIBC__ - # if __GLIBC__ >= 2 - LIBC=gnu - # else - LIBC=gnulibc1 - # endif - # else - LIBC=gnulibc1 - # endif - #else - #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) - LIBC=gnu - #else - LIBC=gnuaout - #endif - #endif - #ifdef __dietlibc__ - LIBC=dietlibc - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^LIBC/{ - s: ::g - p - }'`" - test x"${LIBC}" != x && { - echo "${UNAME_MACHINE}-pc-linux-${LIBC}" - exit - } - test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } - ;; - i*86:DYNIX/ptx:4*:*) - # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. - # earlier versions are messed up and put the nodename in both - # sysname and nodename. - echo i386-sequent-sysv4 - exit ;; - i*86:UNIX_SV:4.2MP:2.*) - # Unixware is an offshoot of SVR4, but it has its own version - # number series starting with 2... - # I am not positive that other SVR4 systems won't match this, - # I just have to hope. -- rms. - # Use sysv4.2uw... so that sysv4* matches it. - echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} - exit ;; - i*86:OS/2:*:*) - # If we were able to find `uname', then EMX Unix compatibility - # is probably installed. - echo ${UNAME_MACHINE}-pc-os2-emx - exit ;; - i*86:XTS-300:*:STOP) - echo ${UNAME_MACHINE}-unknown-stop - exit ;; - i*86:atheos:*:*) - echo ${UNAME_MACHINE}-unknown-atheos - exit ;; - i*86:syllable:*:*) - echo ${UNAME_MACHINE}-pc-syllable - exit ;; - i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) - echo i386-unknown-lynxos${UNAME_RELEASE} - exit ;; - i*86:*DOS:*:*) - echo ${UNAME_MACHINE}-pc-msdosdjgpp - exit ;; - i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) - UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` - if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then - echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} - else - echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} - fi - exit ;; - i*86:*:5:[678]*) - # UnixWare 7.x, OpenUNIX and OpenServer 6. - case `/bin/uname -X | grep "^Machine"` in - *486*) UNAME_MACHINE=i486 ;; - *Pentium) UNAME_MACHINE=i586 ;; - *Pent*|*Celeron) UNAME_MACHINE=i686 ;; - esac - echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} - exit ;; - i*86:*:3.2:*) - if test -f /usr/options/cb.name; then - UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name` - echo ${UNAME_MACHINE}-pc-isc$UNAME_REL - elif /bin/uname -X 2>/dev/null >/dev/null ; then - UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` - (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 - (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ - && UNAME_MACHINE=i586 - (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ - && UNAME_MACHINE=i686 - (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ - && UNAME_MACHINE=i686 - echo ${UNAME_MACHINE}-pc-sco$UNAME_REL - else - echo ${UNAME_MACHINE}-pc-sysv32 - fi - exit ;; - pc:*:*:*) - # Left here for compatibility: - # uname -m prints for DJGPP always 'pc', but it prints nothing about - # the processor, so we play safe by assuming i386. - echo i386-pc-msdosdjgpp - exit ;; - Intel:Mach:3*:*) - echo i386-pc-mach3 - exit ;; - paragon:*:*:*) - echo i860-intel-osf1 - exit ;; - i860:*:4.*:*) # i860-SVR4 - if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then - echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 - else # Add other i860-SVR4 vendors below as they are discovered. - echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 - fi - exit ;; - mini*:CTIX:SYS*5:*) - # "miniframe" - echo m68010-convergent-sysv - exit ;; - mc68k:UNIX:SYSTEM5:3.51m) - echo m68k-convergent-sysv - exit ;; - M680?0:D-NIX:5.3:*) - echo m68k-diab-dnix - exit ;; - M68*:*:R3V[5678]*:*) - test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; - 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) - OS_REL='' - test -r /etc/.relid \ - && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` - /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } - /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; - 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) - /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4; exit; } ;; - m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) - echo m68k-unknown-lynxos${UNAME_RELEASE} - exit ;; - mc68030:UNIX_System_V:4.*:*) - echo m68k-atari-sysv4 - exit ;; - TSUNAMI:LynxOS:2.*:*) - echo sparc-unknown-lynxos${UNAME_RELEASE} - exit ;; - rs6000:LynxOS:2.*:*) - echo rs6000-unknown-lynxos${UNAME_RELEASE} - exit ;; - PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) - echo powerpc-unknown-lynxos${UNAME_RELEASE} - exit ;; - SM[BE]S:UNIX_SV:*:*) - echo mips-dde-sysv${UNAME_RELEASE} - exit ;; - RM*:ReliantUNIX-*:*:*) - echo mips-sni-sysv4 - exit ;; - RM*:SINIX-*:*:*) - echo mips-sni-sysv4 - exit ;; - *:SINIX-*:*:*) - if uname -p 2>/dev/null >/dev/null ; then - UNAME_MACHINE=`(uname -p) 2>/dev/null` - echo ${UNAME_MACHINE}-sni-sysv4 - else - echo ns32k-sni-sysv - fi - exit ;; - PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort - # says <Richard.M.Bartel@ccMail.Census.GOV> - echo i586-unisys-sysv4 - exit ;; - *:UNIX_System_V:4*:FTX*) - # From Gerald Hewes <hewes@openmarket.com>. - # How about differentiating between stratus architectures? -djm - echo hppa1.1-stratus-sysv4 - exit ;; - *:*:*:FTX*) - # From seanf@swdc.stratus.com. - echo i860-stratus-sysv4 - exit ;; - i*86:VOS:*:*) - # From Paul.Green@stratus.com. - echo ${UNAME_MACHINE}-stratus-vos - exit ;; - *:VOS:*:*) - # From Paul.Green@stratus.com. - echo hppa1.1-stratus-vos - exit ;; - mc68*:A/UX:*:*) - echo m68k-apple-aux${UNAME_RELEASE} - exit ;; - news*:NEWS-OS:6*:*) - echo mips-sony-newsos6 - exit ;; - R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) - if [ -d /usr/nec ]; then - echo mips-nec-sysv${UNAME_RELEASE} - else - echo mips-unknown-sysv${UNAME_RELEASE} - fi - exit ;; - BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. - echo powerpc-be-beos - exit ;; - BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. - echo powerpc-apple-beos - exit ;; - BePC:BeOS:*:*) # BeOS running on Intel PC compatible. - echo i586-pc-beos - exit ;; - SX-4:SUPER-UX:*:*) - echo sx4-nec-superux${UNAME_RELEASE} - exit ;; - SX-5:SUPER-UX:*:*) - echo sx5-nec-superux${UNAME_RELEASE} - exit ;; - SX-6:SUPER-UX:*:*) - echo sx6-nec-superux${UNAME_RELEASE} - exit ;; - SX-7:SUPER-UX:*:*) - echo sx7-nec-superux${UNAME_RELEASE} - exit ;; - SX-8:SUPER-UX:*:*) - echo sx8-nec-superux${UNAME_RELEASE} - exit ;; - SX-8R:SUPER-UX:*:*) - echo sx8r-nec-superux${UNAME_RELEASE} - exit ;; - Power*:Rhapsody:*:*) - echo powerpc-apple-rhapsody${UNAME_RELEASE} - exit ;; - *:Rhapsody:*:*) - echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} - exit ;; - *:Darwin:*:*) - UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown - case $UNAME_PROCESSOR in - unknown) UNAME_PROCESSOR=powerpc ;; - esac - echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} - exit ;; - *:procnto*:*:* | *:QNX:[0123456789]*:*) - UNAME_PROCESSOR=`uname -p` - if test "$UNAME_PROCESSOR" = "x86"; then - UNAME_PROCESSOR=i386 - UNAME_MACHINE=pc - fi - echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} - exit ;; - *:QNX:*:4*) - echo i386-pc-qnx - exit ;; - NSE-?:NONSTOP_KERNEL:*:*) - echo nse-tandem-nsk${UNAME_RELEASE} - exit ;; - NSR-?:NONSTOP_KERNEL:*:*) - echo nsr-tandem-nsk${UNAME_RELEASE} - exit ;; - *:NonStop-UX:*:*) - echo mips-compaq-nonstopux - exit ;; - BS2000:POSIX*:*:*) - echo bs2000-siemens-sysv - exit ;; - DS/*:UNIX_System_V:*:*) - echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} - exit ;; - *:Plan9:*:*) - # "uname -m" is not consistent, so use $cputype instead. 386 - # is converted to i386 for consistency with other x86 - # operating systems. - if test "$cputype" = "386"; then - UNAME_MACHINE=i386 - else - UNAME_MACHINE="$cputype" - fi - echo ${UNAME_MACHINE}-unknown-plan9 - exit ;; - *:TOPS-10:*:*) - echo pdp10-unknown-tops10 - exit ;; - *:TENEX:*:*) - echo pdp10-unknown-tenex - exit ;; - KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) - echo pdp10-dec-tops20 - exit ;; - XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) - echo pdp10-xkl-tops20 - exit ;; - *:TOPS-20:*:*) - echo pdp10-unknown-tops20 - exit ;; - *:ITS:*:*) - echo pdp10-unknown-its - exit ;; - SEI:*:*:SEIUX) - echo mips-sei-seiux${UNAME_RELEASE} - exit ;; - *:DragonFly:*:*) - echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` - exit ;; - *:*VMS:*:*) - UNAME_MACHINE=`(uname -p) 2>/dev/null` - case "${UNAME_MACHINE}" in - A*) echo alpha-dec-vms ; exit ;; - I*) echo ia64-dec-vms ; exit ;; - V*) echo vax-dec-vms ; exit ;; - esac ;; - *:XENIX:*:SysV) - echo i386-pc-xenix - exit ;; - i*86:skyos:*:*) - echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' - exit ;; - i*86:rdos:*:*) - echo ${UNAME_MACHINE}-pc-rdos - exit ;; -esac - -#echo '(No uname command or uname output not recognized.)' 1>&2 -#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 - -eval $set_cc_for_build -cat >$dummy.c <<EOF -#ifdef _SEQUENT_ -# include <sys/types.h> -# include <sys/utsname.h> -#endif -main () -{ -#if defined (sony) -#if defined (MIPSEB) - /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, - I don't know.... */ - printf ("mips-sony-bsd\n"); exit (0); -#else -#include <sys/param.h> - printf ("m68k-sony-newsos%s\n", -#ifdef NEWSOS4 - "4" -#else - "" -#endif - ); exit (0); -#endif -#endif - -#if defined (__arm) && defined (__acorn) && defined (__unix) - printf ("arm-acorn-riscix\n"); exit (0); -#endif - -#if defined (hp300) && !defined (hpux) - printf ("m68k-hp-bsd\n"); exit (0); -#endif - -#if defined (NeXT) -#if !defined (__ARCHITECTURE__) -#define __ARCHITECTURE__ "m68k" -#endif - int version; - version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; - if (version < 4) - printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); - else - printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); - exit (0); -#endif - -#if defined (MULTIMAX) || defined (n16) -#if defined (UMAXV) - printf ("ns32k-encore-sysv\n"); exit (0); -#else -#if defined (CMU) - printf ("ns32k-encore-mach\n"); exit (0); -#else - printf ("ns32k-encore-bsd\n"); exit (0); -#endif -#endif -#endif - -#if defined (__386BSD__) - printf ("i386-pc-bsd\n"); exit (0); -#endif - -#if defined (sequent) -#if defined (i386) - printf ("i386-sequent-dynix\n"); exit (0); -#endif -#if defined (ns32000) - printf ("ns32k-sequent-dynix\n"); exit (0); -#endif -#endif - -#if defined (_SEQUENT_) - struct utsname un; - - uname(&un); - - if (strncmp(un.version, "V2", 2) == 0) { - printf ("i386-sequent-ptx2\n"); exit (0); - } - if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ - printf ("i386-sequent-ptx1\n"); exit (0); - } - printf ("i386-sequent-ptx\n"); exit (0); - -#endif - -#if defined (vax) -# if !defined (ultrix) -# include <sys/param.h> -# if defined (BSD) -# if BSD == 43 - printf ("vax-dec-bsd4.3\n"); exit (0); -# else -# if BSD == 199006 - printf ("vax-dec-bsd4.3reno\n"); exit (0); -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# endif -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# else - printf ("vax-dec-ultrix\n"); exit (0); -# endif -#endif - -#if defined (alliant) && defined (i860) - printf ("i860-alliant-bsd\n"); exit (0); -#endif - - exit (1); -} -EOF - -$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && - { echo "$SYSTEM_NAME"; exit; } - -# Apollos put the system type in the environment. - -test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } - -# Convex versions that predate uname can use getsysinfo(1) - -if [ -x /usr/convex/getsysinfo ] -then - case `getsysinfo -f cpu_type` in - c1*) - echo c1-convex-bsd - exit ;; - c2*) - if getsysinfo -f scalar_acc - then echo c32-convex-bsd - else echo c2-convex-bsd - fi - exit ;; - c34*) - echo c34-convex-bsd - exit ;; - c38*) - echo c38-convex-bsd - exit ;; - c4*) - echo c4-convex-bsd - exit ;; - esac -fi - -cat >&2 <<EOF -$0: unable to guess system type - -This script, last modified $timestamp, has failed to recognize -the operating system you are using. It is advised that you -download the most up to date version of the config scripts from - - http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD -and - http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD - -If the version you run ($0) is already up to date, please -send the following data and any information you think might be -pertinent to <config-patches@gnu.org> in order to provide the needed -information to handle your system. - -config.guess timestamp = $timestamp - -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null` - -hostinfo = `(hostinfo) 2>/dev/null` -/bin/universe = `(/bin/universe) 2>/dev/null` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` -/bin/arch = `(/bin/arch) 2>/dev/null` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` - -UNAME_MACHINE = ${UNAME_MACHINE} -UNAME_RELEASE = ${UNAME_RELEASE} -UNAME_SYSTEM = ${UNAME_SYSTEM} -UNAME_VERSION = ${UNAME_VERSION} -EOF - -exit 1 - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "timestamp='" -# time-stamp-format: "%:y-%02m-%02d" -# time-stamp-end: "'" -# End: diff --git a/config.sub b/config.sub deleted file mode 100644 index de5d6a731..000000000 --- a/config.sub +++ /dev/null @@ -1,1662 +0,0 @@ -#! /bin/sh -# Configuration validation subroutine script. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 -# Free Software Foundation, Inc. - -timestamp='2008-02-05' - -# This file is (in principle) common to ALL GNU software. -# The presence of a machine in this file suggests that SOME GNU software -# can handle that machine. It does not imply ALL GNU software can. -# -# This file is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA -# 02110-1301, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - - -# Please send patches to <config-patches@gnu.org>. Submit a context -# diff and a properly formatted ChangeLog entry. -# -# Configuration subroutine to validate and canonicalize a configuration type. -# Supply the specified configuration type as an argument. -# If it is invalid, we print an error message on stderr and exit with code 1. -# Otherwise, we print the canonical config type on stdout and succeed. - -# This file is supposed to be the same for all GNU packages -# and recognize all the CPU types, system types and aliases -# that are meaningful with *any* GNU software. -# Each package is responsible for reporting which valid configurations -# it does not support. The user should be able to distinguish -# a failure to support a valid configuration from a meaningless -# configuration. - -# The goal of this file is to map all the various variations of a given -# machine specification into a single specification in the form: -# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM -# or in some cases, the newer four-part form: -# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM -# It is wrong to echo any other type of specification. - -me=`echo "$0" | sed -e 's,.*/,,'` - -usage="\ -Usage: $0 [OPTION] CPU-MFR-OPSYS - $0 [OPTION] ALIAS - -Canonicalize a configuration name. - -Operation modes: - -h, --help print this help, then exit - -t, --time-stamp print date of last modification, then exit - -v, --version print version number, then exit - -Report bugs and patches to <config-patches@gnu.org>." - -version="\ -GNU config.sub ($timestamp) - -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, -2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. - -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - -help=" -Try \`$me --help' for more information." - -# Parse command line -while test $# -gt 0 ; do - case $1 in - --time-stamp | --time* | -t ) - echo "$timestamp" ; exit ;; - --version | -v ) - echo "$version" ; exit ;; - --help | --h* | -h ) - echo "$usage"; exit ;; - -- ) # Stop option processing - shift; break ;; - - ) # Use stdin as input. - break ;; - -* ) - echo "$me: invalid option $1$help" - exit 1 ;; - - *local*) - # First pass through any local machine types. - echo $1 - exit ;; - - * ) - break ;; - esac -done - -case $# in - 0) echo "$me: missing argument$help" >&2 - exit 1;; - 1) ;; - *) echo "$me: too many arguments$help" >&2 - exit 1;; -esac - -# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). -# Here we must recognize all the valid KERNEL-OS combinations. -maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` -case $maybe_os in - nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ - uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ - storm-chaos* | os2-emx* | rtmk-nova*) - os=-$maybe_os - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` - ;; - *) - basic_machine=`echo $1 | sed 's/-[^-]*$//'` - if [ $basic_machine != $1 ] - then os=`echo $1 | sed 's/.*-/-/'` - else os=; fi - ;; -esac - -### Let's recognize common machines as not being operating systems so -### that things like config.sub decstation-3100 work. We also -### recognize some manufacturers as not being operating systems, so we -### can provide default operating systems below. -case $os in - -sun*os*) - # Prevent following clause from handling this invalid input. - ;; - -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ - -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ - -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ - -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ - -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ - -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis | -knuth | -cray) - os= - basic_machine=$1 - ;; - -sim | -cisco | -oki | -wec | -winbond) - os= - basic_machine=$1 - ;; - -scout) - ;; - -wrs) - os=-vxworks - basic_machine=$1 - ;; - -chorusos*) - os=-chorusos - basic_machine=$1 - ;; - -chorusrdb) - os=-chorusrdb - basic_machine=$1 - ;; - -hiux*) - os=-hiuxwe2 - ;; - -sco6) - os=-sco5v6 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco5) - os=-sco3.2v5 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco4) - os=-sco3.2v4 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2.[4-9]*) - os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2v[4-9]*) - # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco5v6*) - # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco*) - os=-sco3.2v2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -udk*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -isc) - os=-isc2.2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -clix*) - basic_machine=clipper-intergraph - ;; - -isc*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -lynx*) - os=-lynxos - ;; - -ptx*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` - ;; - -windowsnt*) - os=`echo $os | sed -e 's/windowsnt/winnt/'` - ;; - -psos*) - os=-psos - ;; - -mint | -mint[0-9]*) - basic_machine=m68k-atari - os=-mint - ;; -esac - -# Decode aliases for certain CPU-COMPANY combinations. -case $basic_machine in - # Recognize the basic CPU types without company name. - # Some are omitted here because they have special meanings below. - 1750a | 580 \ - | a29k \ - | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ - | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ - | am33_2.0 \ - | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ - | bfin \ - | c4x | clipper \ - | d10v | d30v | dlx | dsp16xx \ - | fido | fr30 | frv \ - | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ - | i370 | i860 | i960 | ia64 \ - | ip2k | iq2000 \ - | m32c | m32r | m32rle | m68000 | m68k | m88k \ - | maxq | mb | microblaze | mcore | mep \ - | mips | mipsbe | mipseb | mipsel | mipsle \ - | mips16 \ - | mips64 | mips64el \ - | mips64octeon | mips64octeonel \ - | mips64orion | mips64orionel \ - | mips64r5900 | mips64r5900el \ - | mips64vr | mips64vrel \ - | mips64vr4100 | mips64vr4100el \ - | mips64vr4300 | mips64vr4300el \ - | mips64vr5000 | mips64vr5000el \ - | mips64vr5900 | mips64vr5900el \ - | mipsisa32 | mipsisa32el \ - | mipsisa32r2 | mipsisa32r2el \ - | mipsisa64 | mipsisa64el \ - | mipsisa64r2 | mipsisa64r2el \ - | mipsisa64sb1 | mipsisa64sb1el \ - | mipsisa64sr71k | mipsisa64sr71kel \ - | mipstx39 | mipstx39el \ - | mn10200 | mn10300 \ - | mt \ - | msp430 \ - | nios | nios2 \ - | ns16k | ns32k \ - | or32 \ - | pdp10 | pdp11 | pj | pjl \ - | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ - | pyramid \ - | score \ - | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ - | sh64 | sh64le \ - | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ - | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ - | spu | strongarm \ - | tahoe | thumb | tic4x | tic80 | tron \ - | v850 | v850e \ - | we32k \ - | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ - | z8k) - basic_machine=$basic_machine-unknown - ;; - m6811 | m68hc11 | m6812 | m68hc12) - # Motorola 68HC11/12. - basic_machine=$basic_machine-unknown - os=-none - ;; - m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) - ;; - ms1) - basic_machine=mt-unknown - ;; - - # We use `pc' rather than `unknown' - # because (1) that's what they normally are, and - # (2) the word "unknown" tends to confuse beginning users. - i*86 | x86_64) - basic_machine=$basic_machine-pc - ;; - # Object if more than one company name word. - *-*-*) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 - exit 1 - ;; - # Recognize the basic CPU types with company name. - 580-* \ - | a29k-* \ - | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ - | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ - | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ - | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ - | avr-* | avr32-* \ - | bfin-* | bs2000-* \ - | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ - | clipper-* | craynv-* | cydra-* \ - | d10v-* | d30v-* | dlx-* \ - | elxsi-* \ - | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ - | h8300-* | h8500-* \ - | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ - | i*86-* | i860-* | i960-* | ia64-* \ - | ip2k-* | iq2000-* \ - | m32c-* | m32r-* | m32rle-* \ - | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | maxq-* | mcore-* \ - | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ - | mips16-* \ - | mips64-* | mips64el-* \ - | mips64octeon-* | mips64octeonel-* \ - | mips64orion-* | mips64orionel-* \ - | mips64r5900-* | mips64r5900el-* \ - | mips64vr-* | mips64vrel-* \ - | mips64vr4100-* | mips64vr4100el-* \ - | mips64vr4300-* | mips64vr4300el-* \ - | mips64vr5000-* | mips64vr5000el-* \ - | mips64vr5900-* | mips64vr5900el-* \ - | mipsisa32-* | mipsisa32el-* \ - | mipsisa32r2-* | mipsisa32r2el-* \ - | mipsisa64-* | mipsisa64el-* \ - | mipsisa64r2-* | mipsisa64r2el-* \ - | mipsisa64sb1-* | mipsisa64sb1el-* \ - | mipsisa64sr71k-* | mipsisa64sr71kel-* \ - | mipstx39-* | mipstx39el-* \ - | mmix-* \ - | mt-* \ - | msp430-* \ - | nios-* | nios2-* \ - | none-* | np1-* | ns16k-* | ns32k-* \ - | orion-* \ - | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ - | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ - | pyramid-* \ - | romp-* | rs6000-* \ - | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ - | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ - | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ - | sparclite-* \ - | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ - | tahoe-* | thumb-* \ - | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ - | tron-* \ - | v850-* | v850e-* | vax-* \ - | we32k-* \ - | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ - | xstormy16-* | xtensa*-* \ - | ymp-* \ - | z8k-*) - ;; - # Recognize the basic CPU types without company name, with glob match. - xtensa*) - basic_machine=$basic_machine-unknown - ;; - # Recognize the various machine names and aliases which stand - # for a CPU type and a company and sometimes even an OS. - 386bsd) - basic_machine=i386-unknown - os=-bsd - ;; - 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) - basic_machine=m68000-att - ;; - 3b*) - basic_machine=we32k-att - ;; - a29khif) - basic_machine=a29k-amd - os=-udi - ;; - abacus) - basic_machine=abacus-unknown - ;; - adobe68k) - basic_machine=m68010-adobe - os=-scout - ;; - alliant | fx80) - basic_machine=fx80-alliant - ;; - altos | altos3068) - basic_machine=m68k-altos - ;; - am29k) - basic_machine=a29k-none - os=-bsd - ;; - amd64) - basic_machine=x86_64-pc - ;; - amd64-*) - basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - amdahl) - basic_machine=580-amdahl - os=-sysv - ;; - amiga | amiga-*) - basic_machine=m68k-unknown - ;; - amigaos | amigados) - basic_machine=m68k-unknown - os=-amigaos - ;; - amigaunix | amix) - basic_machine=m68k-unknown - os=-sysv4 - ;; - apollo68) - basic_machine=m68k-apollo - os=-sysv - ;; - apollo68bsd) - basic_machine=m68k-apollo - os=-bsd - ;; - aux) - basic_machine=m68k-apple - os=-aux - ;; - balance) - basic_machine=ns32k-sequent - os=-dynix - ;; - blackfin) - basic_machine=bfin-unknown - os=-linux - ;; - blackfin-*) - basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` - os=-linux - ;; - c90) - basic_machine=c90-cray - os=-unicos - ;; - convex-c1) - basic_machine=c1-convex - os=-bsd - ;; - convex-c2) - basic_machine=c2-convex - os=-bsd - ;; - convex-c32) - basic_machine=c32-convex - os=-bsd - ;; - convex-c34) - basic_machine=c34-convex - os=-bsd - ;; - convex-c38) - basic_machine=c38-convex - os=-bsd - ;; - cray | j90) - basic_machine=j90-cray - os=-unicos - ;; - craynv) - basic_machine=craynv-cray - os=-unicosmp - ;; - cr16) - basic_machine=cr16-unknown - os=-elf - ;; - crds | unos) - basic_machine=m68k-crds - ;; - crisv32 | crisv32-* | etraxfs*) - basic_machine=crisv32-axis - ;; - cris | cris-* | etrax*) - basic_machine=cris-axis - ;; - crx) - basic_machine=crx-unknown - os=-elf - ;; - da30 | da30-*) - basic_machine=m68k-da30 - ;; - decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) - basic_machine=mips-dec - ;; - decsystem10* | dec10*) - basic_machine=pdp10-dec - os=-tops10 - ;; - decsystem20* | dec20*) - basic_machine=pdp10-dec - os=-tops20 - ;; - delta | 3300 | motorola-3300 | motorola-delta \ - | 3300-motorola | delta-motorola) - basic_machine=m68k-motorola - ;; - delta88) - basic_machine=m88k-motorola - os=-sysv3 - ;; - djgpp) - basic_machine=i586-pc - os=-msdosdjgpp - ;; - dpx20 | dpx20-*) - basic_machine=rs6000-bull - os=-bosx - ;; - dpx2* | dpx2*-bull) - basic_machine=m68k-bull - os=-sysv3 - ;; - ebmon29k) - basic_machine=a29k-amd - os=-ebmon - ;; - elxsi) - basic_machine=elxsi-elxsi - os=-bsd - ;; - encore | umax | mmax) - basic_machine=ns32k-encore - ;; - es1800 | OSE68k | ose68k | ose | OSE) - basic_machine=m68k-ericsson - os=-ose - ;; - fx2800) - basic_machine=i860-alliant - ;; - genix) - basic_machine=ns32k-ns - ;; - gmicro) - basic_machine=tron-gmicro - os=-sysv - ;; - go32) - basic_machine=i386-pc - os=-go32 - ;; - h3050r* | hiux*) - basic_machine=hppa1.1-hitachi - os=-hiuxwe2 - ;; - h8300hms) - basic_machine=h8300-hitachi - os=-hms - ;; - h8300xray) - basic_machine=h8300-hitachi - os=-xray - ;; - h8500hms) - basic_machine=h8500-hitachi - os=-hms - ;; - harris) - basic_machine=m88k-harris - os=-sysv3 - ;; - hp300-*) - basic_machine=m68k-hp - ;; - hp300bsd) - basic_machine=m68k-hp - os=-bsd - ;; - hp300hpux) - basic_machine=m68k-hp - os=-hpux - ;; - hp3k9[0-9][0-9] | hp9[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hp9k2[0-9][0-9] | hp9k31[0-9]) - basic_machine=m68000-hp - ;; - hp9k3[2-9][0-9]) - basic_machine=m68k-hp - ;; - hp9k6[0-9][0-9] | hp6[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hp9k7[0-79][0-9] | hp7[0-79][0-9]) - basic_machine=hppa1.1-hp - ;; - hp9k78[0-9] | hp78[0-9]) - # FIXME: really hppa2.0-hp - basic_machine=hppa1.1-hp - ;; - hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) - # FIXME: really hppa2.0-hp - basic_machine=hppa1.1-hp - ;; - hp9k8[0-9][13679] | hp8[0-9][13679]) - basic_machine=hppa1.1-hp - ;; - hp9k8[0-9][0-9] | hp8[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hppa-next) - os=-nextstep3 - ;; - hppaosf) - basic_machine=hppa1.1-hp - os=-osf - ;; - hppro) - basic_machine=hppa1.1-hp - os=-proelf - ;; - i370-ibm* | ibm*) - basic_machine=i370-ibm - ;; -# I'm not sure what "Sysv32" means. Should this be sysv3.2? - i*86v32) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv32 - ;; - i*86v4*) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv4 - ;; - i*86v) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv - ;; - i*86sol2) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-solaris2 - ;; - i386mach) - basic_machine=i386-mach - os=-mach - ;; - i386-vsta | vsta) - basic_machine=i386-unknown - os=-vsta - ;; - iris | iris4d) - basic_machine=mips-sgi - case $os in - -irix*) - ;; - *) - os=-irix4 - ;; - esac - ;; - isi68 | isi) - basic_machine=m68k-isi - os=-sysv - ;; - m68knommu) - basic_machine=m68k-unknown - os=-linux - ;; - m68knommu-*) - basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` - os=-linux - ;; - m88k-omron*) - basic_machine=m88k-omron - ;; - magnum | m3230) - basic_machine=mips-mips - os=-sysv - ;; - merlin) - basic_machine=ns32k-utek - os=-sysv - ;; - mingw32) - basic_machine=i386-pc - os=-mingw32 - ;; - mingw32ce) - basic_machine=arm-unknown - os=-mingw32ce - ;; - miniframe) - basic_machine=m68000-convergent - ;; - *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) - basic_machine=m68k-atari - os=-mint - ;; - mips3*-*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` - ;; - mips3*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown - ;; - monitor) - basic_machine=m68k-rom68k - os=-coff - ;; - morphos) - basic_machine=powerpc-unknown - os=-morphos - ;; - msdos) - basic_machine=i386-pc - os=-msdos - ;; - ms1-*) - basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` - ;; - mvs) - basic_machine=i370-ibm - os=-mvs - ;; - ncr3000) - basic_machine=i486-ncr - os=-sysv4 - ;; - netbsd386) - basic_machine=i386-unknown - os=-netbsd - ;; - netwinder) - basic_machine=armv4l-rebel - os=-linux - ;; - news | news700 | news800 | news900) - basic_machine=m68k-sony - os=-newsos - ;; - news1000) - basic_machine=m68030-sony - os=-newsos - ;; - news-3600 | risc-news) - basic_machine=mips-sony - os=-newsos - ;; - necv70) - basic_machine=v70-nec - os=-sysv - ;; - next | m*-next ) - basic_machine=m68k-next - case $os in - -nextstep* ) - ;; - -ns2*) - os=-nextstep2 - ;; - *) - os=-nextstep3 - ;; - esac - ;; - nh3000) - basic_machine=m68k-harris - os=-cxux - ;; - nh[45]000) - basic_machine=m88k-harris - os=-cxux - ;; - nindy960) - basic_machine=i960-intel - os=-nindy - ;; - mon960) - basic_machine=i960-intel - os=-mon960 - ;; - nonstopux) - basic_machine=mips-compaq - os=-nonstopux - ;; - np1) - basic_machine=np1-gould - ;; - nsr-tandem) - basic_machine=nsr-tandem - ;; - op50n-* | op60c-*) - basic_machine=hppa1.1-oki - os=-proelf - ;; - openrisc | openrisc-*) - basic_machine=or32-unknown - ;; - os400) - basic_machine=powerpc-ibm - os=-os400 - ;; - OSE68000 | ose68000) - basic_machine=m68000-ericsson - os=-ose - ;; - os68k) - basic_machine=m68k-none - os=-os68k - ;; - pa-hitachi) - basic_machine=hppa1.1-hitachi - os=-hiuxwe2 - ;; - paragon) - basic_machine=i860-intel - os=-osf - ;; - parisc) - basic_machine=hppa-unknown - os=-linux - ;; - parisc-*) - basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` - os=-linux - ;; - pbd) - basic_machine=sparc-tti - ;; - pbb) - basic_machine=m68k-tti - ;; - pc532 | pc532-*) - basic_machine=ns32k-pc532 - ;; - pc98) - basic_machine=i386-pc - ;; - pc98-*) - basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentium | p5 | k5 | k6 | nexgen | viac3) - basic_machine=i586-pc - ;; - pentiumpro | p6 | 6x86 | athlon | athlon_*) - basic_machine=i686-pc - ;; - pentiumii | pentium2 | pentiumiii | pentium3) - basic_machine=i686-pc - ;; - pentium4) - basic_machine=i786-pc - ;; - pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) - basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentiumpro-* | p6-* | 6x86-* | athlon-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentium4-*) - basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pn) - basic_machine=pn-gould - ;; - power) basic_machine=power-ibm - ;; - ppc) basic_machine=powerpc-unknown - ;; - ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppcle | powerpclittle | ppc-le | powerpc-little) - basic_machine=powerpcle-unknown - ;; - ppcle-* | powerpclittle-*) - basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppc64) basic_machine=powerpc64-unknown - ;; - ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppc64le | powerpc64little | ppc64-le | powerpc64-little) - basic_machine=powerpc64le-unknown - ;; - ppc64le-* | powerpc64little-*) - basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ps2) - basic_machine=i386-ibm - ;; - pw32) - basic_machine=i586-unknown - os=-pw32 - ;; - rdos) - basic_machine=i386-pc - os=-rdos - ;; - rom68k) - basic_machine=m68k-rom68k - os=-coff - ;; - rm[46]00) - basic_machine=mips-siemens - ;; - rtpc | rtpc-*) - basic_machine=romp-ibm - ;; - s390 | s390-*) - basic_machine=s390-ibm - ;; - s390x | s390x-*) - basic_machine=s390x-ibm - ;; - sa29200) - basic_machine=a29k-amd - os=-udi - ;; - sb1) - basic_machine=mipsisa64sb1-unknown - ;; - sb1el) - basic_machine=mipsisa64sb1el-unknown - ;; - sde) - basic_machine=mipsisa32-sde - os=-elf - ;; - sei) - basic_machine=mips-sei - os=-seiux - ;; - sequent) - basic_machine=i386-sequent - ;; - sh) - basic_machine=sh-hitachi - os=-hms - ;; - sh5el) - basic_machine=sh5le-unknown - ;; - sh64) - basic_machine=sh64-unknown - ;; - sparclite-wrs | simso-wrs) - basic_machine=sparclite-wrs - os=-vxworks - ;; - sps7) - basic_machine=m68k-bull - os=-sysv2 - ;; - spur) - basic_machine=spur-unknown - ;; - st2000) - basic_machine=m68k-tandem - ;; - stratus) - basic_machine=i860-stratus - os=-sysv4 - ;; - sun2) - basic_machine=m68000-sun - ;; - sun2os3) - basic_machine=m68000-sun - os=-sunos3 - ;; - sun2os4) - basic_machine=m68000-sun - os=-sunos4 - ;; - sun3os3) - basic_machine=m68k-sun - os=-sunos3 - ;; - sun3os4) - basic_machine=m68k-sun - os=-sunos4 - ;; - sun4os3) - basic_machine=sparc-sun - os=-sunos3 - ;; - sun4os4) - basic_machine=sparc-sun - os=-sunos4 - ;; - sun4sol2) - basic_machine=sparc-sun - os=-solaris2 - ;; - sun3 | sun3-*) - basic_machine=m68k-sun - ;; - sun4) - basic_machine=sparc-sun - ;; - sun386 | sun386i | roadrunner) - basic_machine=i386-sun - ;; - sv1) - basic_machine=sv1-cray - os=-unicos - ;; - symmetry) - basic_machine=i386-sequent - os=-dynix - ;; - t3e) - basic_machine=alphaev5-cray - os=-unicos - ;; - t90) - basic_machine=t90-cray - os=-unicos - ;; - tic54x | c54x*) - basic_machine=tic54x-unknown - os=-coff - ;; - tic55x | c55x*) - basic_machine=tic55x-unknown - os=-coff - ;; - tic6x | c6x*) - basic_machine=tic6x-unknown - os=-coff - ;; - tile*) - basic_machine=tile-unknown - os=-linux-gnu - ;; - tx39) - basic_machine=mipstx39-unknown - ;; - tx39el) - basic_machine=mipstx39el-unknown - ;; - toad1) - basic_machine=pdp10-xkl - os=-tops20 - ;; - tower | tower-32) - basic_machine=m68k-ncr - ;; - tpf) - basic_machine=s390x-ibm - os=-tpf - ;; - udi29k) - basic_machine=a29k-amd - os=-udi - ;; - ultra3) - basic_machine=a29k-nyu - os=-sym1 - ;; - v810 | necv810) - basic_machine=v810-nec - os=-none - ;; - vaxv) - basic_machine=vax-dec - os=-sysv - ;; - vms) - basic_machine=vax-dec - os=-vms - ;; - vpp*|vx|vx-*) - basic_machine=f301-fujitsu - ;; - vxworks960) - basic_machine=i960-wrs - os=-vxworks - ;; - vxworks68) - basic_machine=m68k-wrs - os=-vxworks - ;; - vxworks29k) - basic_machine=a29k-wrs - os=-vxworks - ;; - w65*) - basic_machine=w65-wdc - os=-none - ;; - w89k-*) - basic_machine=hppa1.1-winbond - os=-proelf - ;; - xbox) - basic_machine=i686-pc - os=-mingw32 - ;; - xps | xps100) - basic_machine=xps100-honeywell - ;; - ymp) - basic_machine=ymp-cray - os=-unicos - ;; - z8k-*-coff) - basic_machine=z8k-unknown - os=-sim - ;; - none) - basic_machine=none-none - os=-none - ;; - -# Here we handle the default manufacturer of certain CPU types. It is in -# some cases the only manufacturer, in others, it is the most popular. - w89k) - basic_machine=hppa1.1-winbond - ;; - op50n) - basic_machine=hppa1.1-oki - ;; - op60c) - basic_machine=hppa1.1-oki - ;; - romp) - basic_machine=romp-ibm - ;; - mmix) - basic_machine=mmix-knuth - ;; - rs6000) - basic_machine=rs6000-ibm - ;; - vax) - basic_machine=vax-dec - ;; - pdp10) - # there are many clones, so DEC is not a safe bet - basic_machine=pdp10-unknown - ;; - pdp11) - basic_machine=pdp11-dec - ;; - we32k) - basic_machine=we32k-att - ;; - sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) - basic_machine=sh-unknown - ;; - sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) - basic_machine=sparc-sun - ;; - cydra) - basic_machine=cydra-cydrome - ;; - orion) - basic_machine=orion-highlevel - ;; - orion105) - basic_machine=clipper-highlevel - ;; - mac | mpw | mac-mpw) - basic_machine=m68k-apple - ;; - pmac | pmac-mpw) - basic_machine=powerpc-apple - ;; - *-unknown) - # Make sure to match an already-canonicalized machine name. - ;; - *) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 - exit 1 - ;; -esac - -# Here we canonicalize certain aliases for manufacturers. -case $basic_machine in - *-digital*) - basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` - ;; - *-commodore*) - basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` - ;; - *) - ;; -esac - -# Decode manufacturer-specific aliases for certain operating systems. - -if [ x"$os" != x"" ] -then -case $os in - # First match some system type aliases - # that might get confused with valid system types. - # -solaris* is a basic system type, with this one exception. - -solaris1 | -solaris1.*) - os=`echo $os | sed -e 's|solaris1|sunos4|'` - ;; - -solaris) - os=-solaris2 - ;; - -svr4*) - os=-sysv4 - ;; - -unixware*) - os=-sysv4.2uw - ;; - -gnu/linux*) - os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` - ;; - # First accept the basic system types. - # The portable systems comes first. - # Each alternative MUST END IN A *, to match a version number. - # -sysv* is not here because it comes later, after sysvr4. - -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ - | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ - | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ - | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ - | -aos* \ - | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ - | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ - | -openbsd* | -solidbsd* \ - | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ - | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ - | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ - | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ - | -chorusos* | -chorusrdb* \ - | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ - | -uxpv* | -beos* | -mpeix* | -udk* \ - | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ - | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ - | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ - | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ - | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ - | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) - # Remember, each alternative MUST END IN *, to match a version number. - ;; - -qnx*) - case $basic_machine in - x86-* | i*86-*) - ;; - *) - os=-nto$os - ;; - esac - ;; - -nto-qnx*) - ;; - -nto*) - os=`echo $os | sed -e 's|nto|nto-qnx|'` - ;; - -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ - | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) - ;; - -mac*) - os=`echo $os | sed -e 's|mac|macos|'` - ;; - -linux-dietlibc) - os=-linux-dietlibc - ;; - -linux*) - os=`echo $os | sed -e 's|linux|linux-gnu|'` - ;; - -sunos5*) - os=`echo $os | sed -e 's|sunos5|solaris2|'` - ;; - -sunos6*) - os=`echo $os | sed -e 's|sunos6|solaris3|'` - ;; - -opened*) - os=-openedition - ;; - -os400*) - os=-os400 - ;; - -wince*) - os=-wince - ;; - -osfrose*) - os=-osfrose - ;; - -osf*) - os=-osf - ;; - -utek*) - os=-bsd - ;; - -dynix*) - os=-bsd - ;; - -acis*) - os=-aos - ;; - -atheos*) - os=-atheos - ;; - -syllable*) - os=-syllable - ;; - -386bsd) - os=-bsd - ;; - -ctix* | -uts*) - os=-sysv - ;; - -nova*) - os=-rtmk-nova - ;; - -ns2 ) - os=-nextstep2 - ;; - -nsk*) - os=-nsk - ;; - # Preserve the version number of sinix5. - -sinix5.*) - os=`echo $os | sed -e 's|sinix|sysv|'` - ;; - -sinix*) - os=-sysv4 - ;; - -tpf*) - os=-tpf - ;; - -triton*) - os=-sysv3 - ;; - -oss*) - os=-sysv3 - ;; - -svr4) - os=-sysv4 - ;; - -svr3) - os=-sysv3 - ;; - -sysvr4) - os=-sysv4 - ;; - # This must come after -sysvr4. - -sysv*) - ;; - -ose*) - os=-ose - ;; - -es1800*) - os=-ose - ;; - -xenix) - os=-xenix - ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) - os=-mint - ;; - -aros*) - os=-aros - ;; - -kaos*) - os=-kaos - ;; - -zvmoe) - os=-zvmoe - ;; - -none) - ;; - *) - # Get rid of the `-' at the beginning of $os. - os=`echo $os | sed 's/[^-]*-//'` - echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 - exit 1 - ;; -esac -else - -# Here we handle the default operating systems that come with various machines. -# The value should be what the vendor currently ships out the door with their -# machine or put another way, the most popular os provided with the machine. - -# Note that if you're going to try to match "-MANUFACTURER" here (say, -# "-sun"), then you have to tell the case statement up towards the top -# that MANUFACTURER isn't an operating system. Otherwise, code above -# will signal an error saying that MANUFACTURER isn't an operating -# system, and we'll never get to this point. - -case $basic_machine in - score-*) - os=-elf - ;; - spu-*) - os=-elf - ;; - *-acorn) - os=-riscix1.2 - ;; - arm*-rebel) - os=-linux - ;; - arm*-semi) - os=-aout - ;; - c4x-* | tic4x-*) - os=-coff - ;; - # This must come before the *-dec entry. - pdp10-*) - os=-tops20 - ;; - pdp11-*) - os=-none - ;; - *-dec | vax-*) - os=-ultrix4.2 - ;; - m68*-apollo) - os=-domain - ;; - i386-sun) - os=-sunos4.0.2 - ;; - m68000-sun) - os=-sunos3 - # This also exists in the configure program, but was not the - # default. - # os=-sunos4 - ;; - m68*-cisco) - os=-aout - ;; - mep-*) - os=-elf - ;; - mips*-cisco) - os=-elf - ;; - mips*-*) - os=-elf - ;; - or32-*) - os=-coff - ;; - *-tti) # must be before sparc entry or we get the wrong os. - os=-sysv3 - ;; - sparc-* | *-sun) - os=-sunos4.1.1 - ;; - *-be) - os=-beos - ;; - *-haiku) - os=-haiku - ;; - *-ibm) - os=-aix - ;; - *-knuth) - os=-mmixware - ;; - *-wec) - os=-proelf - ;; - *-winbond) - os=-proelf - ;; - *-oki) - os=-proelf - ;; - *-hp) - os=-hpux - ;; - *-hitachi) - os=-hiux - ;; - i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) - os=-sysv - ;; - *-cbm) - os=-amigaos - ;; - *-dg) - os=-dgux - ;; - *-dolphin) - os=-sysv3 - ;; - m68k-ccur) - os=-rtu - ;; - m88k-omron*) - os=-luna - ;; - *-next ) - os=-nextstep - ;; - *-sequent) - os=-ptx - ;; - *-crds) - os=-unos - ;; - *-ns) - os=-genix - ;; - i370-*) - os=-mvs - ;; - *-next) - os=-nextstep3 - ;; - *-gould) - os=-sysv - ;; - *-highlevel) - os=-bsd - ;; - *-encore) - os=-bsd - ;; - *-sgi) - os=-irix - ;; - *-siemens) - os=-sysv4 - ;; - *-masscomp) - os=-rtu - ;; - f30[01]-fujitsu | f700-fujitsu) - os=-uxpv - ;; - *-rom68k) - os=-coff - ;; - *-*bug) - os=-coff - ;; - *-apple) - os=-macos - ;; - *-atari*) - os=-mint - ;; - *) - os=-none - ;; -esac -fi - -# Here we handle the case where we know the os, and the CPU type, but not the -# manufacturer. We pick the logical manufacturer. -vendor=unknown -case $basic_machine in - *-unknown) - case $os in - -riscix*) - vendor=acorn - ;; - -sunos*) - vendor=sun - ;; - -aix*) - vendor=ibm - ;; - -beos*) - vendor=be - ;; - -hpux*) - vendor=hp - ;; - -mpeix*) - vendor=hp - ;; - -hiux*) - vendor=hitachi - ;; - -unos*) - vendor=crds - ;; - -dgux*) - vendor=dg - ;; - -luna*) - vendor=omron - ;; - -genix*) - vendor=ns - ;; - -mvs* | -opened*) - vendor=ibm - ;; - -os400*) - vendor=ibm - ;; - -ptx*) - vendor=sequent - ;; - -tpf*) - vendor=ibm - ;; - -vxsim* | -vxworks* | -windiss*) - vendor=wrs - ;; - -aux*) - vendor=apple - ;; - -hms*) - vendor=hitachi - ;; - -mpw* | -macos*) - vendor=apple - ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) - vendor=atari - ;; - -vos*) - vendor=stratus - ;; - esac - basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` - ;; -esac - -echo $basic_machine$os -exit - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "timestamp='" -# time-stamp-format: "%:y-%02m-%02d" -# time-stamp-end: "'" -# End: diff --git a/configure b/configure deleted file mode 100755 index b0dd773e3..000000000 --- a/configure +++ /dev/null @@ -1,8946 +0,0 @@ -#! /bin/sh -# Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.61. -# -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. -# This configure script is free software; the Free Software Foundation -# gives unlimited permission to copy, distribute and modify it. -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; -esac - -fi - - - - -# PATH needs CR -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - as_unset=unset -else - as_unset=false -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -as_nl=' -' -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - { (exit 1); exit 1; } -fi - -# Work around bugs in pre-3.0 UWIN ksh. -for as_var in ENV MAIL MAILPATH -do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var - fi -done - -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - - -# Name of the executable. -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# CDPATH. -$as_unset CDPATH - - -if test "x$CONFIG_SHELL" = x; then - if (eval ":") 2>/dev/null; then - as_have_required=yes -else - as_have_required=no -fi - - if test $as_have_required = yes && (eval ": -(as_func_return () { - (exit \$1) -} -as_func_success () { - as_func_return 0 -} -as_func_failure () { - as_func_return 1 -} -as_func_ret_success () { - return 0 -} -as_func_ret_failure () { - return 1 -} - -exitcode=0 -if as_func_success; then - : -else - exitcode=1 - echo as_func_success failed. -fi - -if as_func_failure; then - exitcode=1 - echo as_func_failure succeeded. -fi - -if as_func_ret_success; then - : -else - exitcode=1 - echo as_func_ret_success failed. -fi - -if as_func_ret_failure; then - exitcode=1 - echo as_func_ret_failure succeeded. -fi - -if ( set x; as_func_ret_success y && test x = \"\$1\" ); then - : -else - exitcode=1 - echo positional parameters were not saved. -fi - -test \$exitcode = 0) || { (exit 1); exit 1; } - -( - as_lineno_1=\$LINENO - as_lineno_2=\$LINENO - test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && - test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } -") 2> /dev/null; then - : -else - as_candidate_shells= - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - case $as_dir in - /*) - for as_base in sh bash ksh sh5; do - as_candidate_shells="$as_candidate_shells $as_dir/$as_base" - done;; - esac -done -IFS=$as_save_IFS - - - for as_shell in $as_candidate_shells $SHELL; do - # Try only shells that exist, to save several forks. - if { test -f "$as_shell" || test -f "$as_shell.exe"; } && - { ("$as_shell") 2> /dev/null <<\_ASEOF -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; -esac - -fi - - -: -_ASEOF -}; then - CONFIG_SHELL=$as_shell - as_have_required=yes - if { "$as_shell" 2> /dev/null <<\_ASEOF -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; -esac - -fi - - -: -(as_func_return () { - (exit $1) -} -as_func_success () { - as_func_return 0 -} -as_func_failure () { - as_func_return 1 -} -as_func_ret_success () { - return 0 -} -as_func_ret_failure () { - return 1 -} - -exitcode=0 -if as_func_success; then - : -else - exitcode=1 - echo as_func_success failed. -fi - -if as_func_failure; then - exitcode=1 - echo as_func_failure succeeded. -fi - -if as_func_ret_success; then - : -else - exitcode=1 - echo as_func_ret_success failed. -fi - -if as_func_ret_failure; then - exitcode=1 - echo as_func_ret_failure succeeded. -fi - -if ( set x; as_func_ret_success y && test x = "$1" ); then - : -else - exitcode=1 - echo positional parameters were not saved. -fi - -test $exitcode = 0) || { (exit 1); exit 1; } - -( - as_lineno_1=$LINENO - as_lineno_2=$LINENO - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } - -_ASEOF -}; then - break -fi - -fi - - done - - if test "x$CONFIG_SHELL" != x; then - for as_var in BASH_ENV ENV - do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var - done - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} -fi - - - if test $as_have_required = no; then - echo This script requires a shell more modern than all the - echo shells that I found on your system. Please install a - echo modern shell, or manually run the script under such a - echo shell if you do have one. - { (exit 1); exit 1; } -fi - - -fi - -fi - - - -(eval "as_func_return () { - (exit \$1) -} -as_func_success () { - as_func_return 0 -} -as_func_failure () { - as_func_return 1 -} -as_func_ret_success () { - return 0 -} -as_func_ret_failure () { - return 1 -} - -exitcode=0 -if as_func_success; then - : -else - exitcode=1 - echo as_func_success failed. -fi - -if as_func_failure; then - exitcode=1 - echo as_func_failure succeeded. -fi - -if as_func_ret_success; then - : -else - exitcode=1 - echo as_func_ret_success failed. -fi - -if as_func_ret_failure; then - exitcode=1 - echo as_func_ret_failure succeeded. -fi - -if ( set x; as_func_ret_success y && test x = \"\$1\" ); then - : -else - exitcode=1 - echo positional parameters were not saved. -fi - -test \$exitcode = 0") || { - echo No shell found that supports shell functions. - echo Please tell autoconf@gnu.org about your system, - echo including any error possibly output before this - echo message -} - - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line after each line using $LINENO; the second 'sed' - # does the real work. The second script uses 'N' to pair each - # line-number line with the line containing $LINENO, and appends - # trailing '-' during substitution so that $LINENO is not a special - # case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # scripts with optimization help from Paolo Bonzini. Blame Lee - # E. McMahon (1931-1989) for sed's syntax. :-) - sed -n ' - p - /[$]LINENO/= - ' <$as_myself | - sed ' - s/[$]LINENO.*/&-/ - t lineno - b - :lineno - N - :loop - s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ - t loop - s/-\n.*// - ' >$as_me.lineno && - chmod +x "$as_me.lineno" || - { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 - { (exit 1); exit 1; }; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). - . "./$as_me.lineno" - # Exit status is that of the last command. - exit -} - - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in --n*) - case `echo 'x\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - *) ECHO_C='\c';; - esac;; -*) - ECHO_N='-n';; -esac - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir -fi -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -p' -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - -if mkdir -p . 2>/dev/null; then - as_mkdir_p=: -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - - -exec 7<&0 </dev/null 6>&1 - -# Name of the host. -# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, -# so uname gets run too. -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - -# -# Initializations. -# -ac_default_prefix=/usr/local -ac_clean_files= -ac_config_libobj_dir=. -LIBOBJS= -cross_compiling=no -subdirs= -MFLAGS= -MAKEFLAGS= -SHELL=${CONFIG_SHELL-/bin/sh} - -# Identity of this package. -PACKAGE_NAME= -PACKAGE_TARNAME= -PACKAGE_VERSION= -PACKAGE_STRING= -PACKAGE_BUGREPORT= - -ac_unique_file="src/actions.c" -# Factoring default headers for most tests. -ac_includes_default="\ -#include <stdio.h> -#ifdef HAVE_SYS_TYPES_H -# include <sys/types.h> -#endif -#ifdef HAVE_SYS_STAT_H -# include <sys/stat.h> -#endif -#ifdef STDC_HEADERS -# include <stdlib.h> -# include <stddef.h> -#else -# ifdef HAVE_STDLIB_H -# include <stdlib.h> -# endif -#endif -#ifdef HAVE_STRING_H -# if !defined STDC_HEADERS && defined HAVE_MEMORY_H -# include <memory.h> -# endif -# include <string.h> -#endif -#ifdef HAVE_STRINGS_H -# include <strings.h> -#endif -#ifdef HAVE_INTTYPES_H -# include <inttypes.h> -#endif -#ifdef HAVE_STDINT_H -# include <stdint.h> -#endif -#ifdef HAVE_UNISTD_H -# include <unistd.h> -#endif" - -ac_subst_vars='SHELL -PATH_SEPARATOR -PACKAGE_NAME -PACKAGE_TARNAME -PACKAGE_VERSION -PACKAGE_STRING -PACKAGE_BUGREPORT -exec_prefix -prefix -program_transform_name -bindir -sbindir -libexecdir -datarootdir -datadir -sysconfdir -sharedstatedir -localstatedir -includedir -oldincludedir -docdir -infodir -htmldir -dvidir -pdfdir -psdir -libdir -localedir -mandir -DEFS -ECHO_C -ECHO_N -ECHO_T -LIBS -build_alias -host_alias -target_alias -CC -CFLAGS -LDFLAGS -CPPFLAGS -ac_ct_CC -EXEEXT -OBJEXT -RM -CP -TOUCH -INSTALL -MYSQLCONF -ANOPELIBS -CPP -GREP -EGREP -SHARED -MODULEFLAGS -RUNGROUP -BINDEST -MAKEBIN -DATDEST -MODULE_PATH -LIBOBJS -LTLIBOBJS' -ac_subst_files='' - ac_precious_vars='build_alias -host_alias -target_alias -CC -CFLAGS -LDFLAGS -LIBS -CPPFLAGS -CPP' - - -# Initialize some variables set by options. -ac_init_help= -ac_init_version=false -# The variables have the same names as the options, with -# dashes changed to underlines. -cache_file=/dev/null -exec_prefix=NONE -no_create= -no_recursion= -prefix=NONE -program_prefix=NONE -program_suffix=NONE -program_transform_name=s,x,x, -silent= -site= -srcdir= -verbose= -x_includes=NONE -x_libraries=NONE - -# Installation directory options. -# These are left unexpanded so users can "make install exec_prefix=/foo" -# and all the variables that are supposed to be based on exec_prefix -# by default will actually change. -# Use braces instead of parens because sh, perl, etc. also accept them. -# (The list follows the same order as the GNU Coding Standards.) -bindir='${exec_prefix}/bin' -sbindir='${exec_prefix}/sbin' -libexecdir='${exec_prefix}/libexec' -datarootdir='${prefix}/share' -datadir='${datarootdir}' -sysconfdir='${prefix}/etc' -sharedstatedir='${prefix}/com' -localstatedir='${prefix}/var' -includedir='${prefix}/include' -oldincludedir='/usr/include' -docdir='${datarootdir}/doc/${PACKAGE}' -infodir='${datarootdir}/info' -htmldir='${docdir}' -dvidir='${docdir}' -pdfdir='${docdir}' -psdir='${docdir}' -libdir='${exec_prefix}/lib' -localedir='${datarootdir}/locale' -mandir='${datarootdir}/man' - -ac_prev= -ac_dashdash= -for ac_option -do - # If the previous option needs an argument, assign it. - if test -n "$ac_prev"; then - eval $ac_prev=\$ac_option - ac_prev= - continue - fi - - case $ac_option in - *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; - *) ac_optarg=yes ;; - esac - - # Accept the important Cygnus configure options, so we can diagnose typos. - - case $ac_dashdash$ac_option in - --) - ac_dashdash=yes ;; - - -bindir | --bindir | --bindi | --bind | --bin | --bi) - ac_prev=bindir ;; - -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) - bindir=$ac_optarg ;; - - -build | --build | --buil | --bui | --bu) - ac_prev=build_alias ;; - -build=* | --build=* | --buil=* | --bui=* | --bu=*) - build_alias=$ac_optarg ;; - - -cache-file | --cache-file | --cache-fil | --cache-fi \ - | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) - ac_prev=cache_file ;; - -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ - | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) - cache_file=$ac_optarg ;; - - --config-cache | -C) - cache_file=config.cache ;; - - -datadir | --datadir | --datadi | --datad) - ac_prev=datadir ;; - -datadir=* | --datadir=* | --datadi=* | --datad=*) - datadir=$ac_optarg ;; - - -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ - | --dataroo | --dataro | --datar) - ac_prev=datarootdir ;; - -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ - | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) - datarootdir=$ac_optarg ;; - - -disable-* | --disable-*) - ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` - eval enable_$ac_feature=no ;; - - -docdir | --docdir | --docdi | --doc | --do) - ac_prev=docdir ;; - -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) - docdir=$ac_optarg ;; - - -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) - ac_prev=dvidir ;; - -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) - dvidir=$ac_optarg ;; - - -enable-* | --enable-*) - ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` - eval enable_$ac_feature=\$ac_optarg ;; - - -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ - | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ - | --exec | --exe | --ex) - ac_prev=exec_prefix ;; - -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ - | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ - | --exec=* | --exe=* | --ex=*) - exec_prefix=$ac_optarg ;; - - -gas | --gas | --ga | --g) - # Obsolete; use --with-gas. - with_gas=yes ;; - - -help | --help | --hel | --he | -h) - ac_init_help=long ;; - -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) - ac_init_help=recursive ;; - -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) - ac_init_help=short ;; - - -host | --host | --hos | --ho) - ac_prev=host_alias ;; - -host=* | --host=* | --hos=* | --ho=*) - host_alias=$ac_optarg ;; - - -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) - ac_prev=htmldir ;; - -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ - | --ht=*) - htmldir=$ac_optarg ;; - - -includedir | --includedir | --includedi | --included | --include \ - | --includ | --inclu | --incl | --inc) - ac_prev=includedir ;; - -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ - | --includ=* | --inclu=* | --incl=* | --inc=*) - includedir=$ac_optarg ;; - - -infodir | --infodir | --infodi | --infod | --info | --inf) - ac_prev=infodir ;; - -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) - infodir=$ac_optarg ;; - - -libdir | --libdir | --libdi | --libd) - ac_prev=libdir ;; - -libdir=* | --libdir=* | --libdi=* | --libd=*) - libdir=$ac_optarg ;; - - -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ - | --libexe | --libex | --libe) - ac_prev=libexecdir ;; - -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ - | --libexe=* | --libex=* | --libe=*) - libexecdir=$ac_optarg ;; - - -localedir | --localedir | --localedi | --localed | --locale) - ac_prev=localedir ;; - -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) - localedir=$ac_optarg ;; - - -localstatedir | --localstatedir | --localstatedi | --localstated \ - | --localstate | --localstat | --localsta | --localst | --locals) - ac_prev=localstatedir ;; - -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ - | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) - localstatedir=$ac_optarg ;; - - -mandir | --mandir | --mandi | --mand | --man | --ma | --m) - ac_prev=mandir ;; - -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) - mandir=$ac_optarg ;; - - -nfp | --nfp | --nf) - # Obsolete; use --without-fp. - with_fp=no ;; - - -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c | -n) - no_create=yes ;; - - -no-recursion | --no-recursion | --no-recursio | --no-recursi \ - | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) - no_recursion=yes ;; - - -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ - | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ - | --oldin | --oldi | --old | --ol | --o) - ac_prev=oldincludedir ;; - -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ - | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ - | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) - oldincludedir=$ac_optarg ;; - - -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) - ac_prev=prefix ;; - -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) - prefix=$ac_optarg ;; - - -program-prefix | --program-prefix | --program-prefi | --program-pref \ - | --program-pre | --program-pr | --program-p) - ac_prev=program_prefix ;; - -program-prefix=* | --program-prefix=* | --program-prefi=* \ - | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) - program_prefix=$ac_optarg ;; - - -program-suffix | --program-suffix | --program-suffi | --program-suff \ - | --program-suf | --program-su | --program-s) - ac_prev=program_suffix ;; - -program-suffix=* | --program-suffix=* | --program-suffi=* \ - | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) - program_suffix=$ac_optarg ;; - - -program-transform-name | --program-transform-name \ - | --program-transform-nam | --program-transform-na \ - | --program-transform-n | --program-transform- \ - | --program-transform | --program-transfor \ - | --program-transfo | --program-transf \ - | --program-trans | --program-tran \ - | --progr-tra | --program-tr | --program-t) - ac_prev=program_transform_name ;; - -program-transform-name=* | --program-transform-name=* \ - | --program-transform-nam=* | --program-transform-na=* \ - | --program-transform-n=* | --program-transform-=* \ - | --program-transform=* | --program-transfor=* \ - | --program-transfo=* | --program-transf=* \ - | --program-trans=* | --program-tran=* \ - | --progr-tra=* | --program-tr=* | --program-t=*) - program_transform_name=$ac_optarg ;; - - -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) - ac_prev=pdfdir ;; - -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) - pdfdir=$ac_optarg ;; - - -psdir | --psdir | --psdi | --psd | --ps) - ac_prev=psdir ;; - -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) - psdir=$ac_optarg ;; - - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - silent=yes ;; - - -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) - ac_prev=sbindir ;; - -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ - | --sbi=* | --sb=*) - sbindir=$ac_optarg ;; - - -sharedstatedir | --sharedstatedir | --sharedstatedi \ - | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ - | --sharedst | --shareds | --shared | --share | --shar \ - | --sha | --sh) - ac_prev=sharedstatedir ;; - -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ - | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ - | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ - | --sha=* | --sh=*) - sharedstatedir=$ac_optarg ;; - - -site | --site | --sit) - ac_prev=site ;; - -site=* | --site=* | --sit=*) - site=$ac_optarg ;; - - -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) - ac_prev=srcdir ;; - -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) - srcdir=$ac_optarg ;; - - -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ - | --syscon | --sysco | --sysc | --sys | --sy) - ac_prev=sysconfdir ;; - -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ - | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) - sysconfdir=$ac_optarg ;; - - -target | --target | --targe | --targ | --tar | --ta | --t) - ac_prev=target_alias ;; - -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) - target_alias=$ac_optarg ;; - - -v | -verbose | --verbose | --verbos | --verbo | --verb) - verbose=yes ;; - - -version | --version | --versio | --versi | --vers | -V) - ac_init_version=: ;; - - -with-* | --with-*) - ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid package name: $ac_package" >&2 - { (exit 1); exit 1; }; } - ac_package=`echo $ac_package | sed 's/[-.]/_/g'` - eval with_$ac_package=\$ac_optarg ;; - - -without-* | --without-*) - ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid package name: $ac_package" >&2 - { (exit 1); exit 1; }; } - ac_package=`echo $ac_package | sed 's/[-.]/_/g'` - eval with_$ac_package=no ;; - - --x) - # Obsolete; use --with-x. - with_x=yes ;; - - -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ - | --x-incl | --x-inc | --x-in | --x-i) - ac_prev=x_includes ;; - -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ - | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) - x_includes=$ac_optarg ;; - - -x-libraries | --x-libraries | --x-librarie | --x-librari \ - | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) - ac_prev=x_libraries ;; - -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ - | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) - x_libraries=$ac_optarg ;; - - -*) { echo "$as_me: error: unrecognized option: $ac_option -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; } - ;; - - *=*) - ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` - # Reject names that are not valid shell variable names. - expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 - { (exit 1); exit 1; }; } - eval $ac_envvar=\$ac_optarg - export $ac_envvar ;; - - *) - # FIXME: should be removed in autoconf 3.0. - echo "$as_me: WARNING: you should use --build, --host, --target" >&2 - expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} - ;; - - esac -done - -if test -n "$ac_prev"; then - ac_option=--`echo $ac_prev | sed 's/_/-/g'` - { echo "$as_me: error: missing argument to $ac_option" >&2 - { (exit 1); exit 1; }; } -fi - -# Be sure to have absolute directory names. -for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ - datadir sysconfdir sharedstatedir localstatedir includedir \ - oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir -do - eval ac_val=\$$ac_var - case $ac_val in - [\\/$]* | ?:[\\/]* ) continue;; - NONE | '' ) case $ac_var in *prefix ) continue;; esac;; - esac - { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 - { (exit 1); exit 1; }; } -done - -# There might be people who depend on the old broken behavior: `$host' -# used to hold the argument of --host etc. -# FIXME: To remove some day. -build=$build_alias -host=$host_alias -target=$target_alias - -# FIXME: To remove some day. -if test "x$host_alias" != x; then - if test "x$build_alias" = x; then - cross_compiling=maybe - echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. - If a cross compiler is detected then cross compile mode will be used." >&2 - elif test "x$build_alias" != "x$host_alias"; then - cross_compiling=yes - fi -fi - -ac_tool_prefix= -test -n "$host_alias" && ac_tool_prefix=$host_alias- - -test "$silent" = yes && exec 6>/dev/null - - -ac_pwd=`pwd` && test -n "$ac_pwd" && -ac_ls_di=`ls -di .` && -ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - { echo "$as_me: error: Working directory cannot be determined" >&2 - { (exit 1); exit 1; }; } -test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - { echo "$as_me: error: pwd does not report name of working directory" >&2 - { (exit 1); exit 1; }; } - - -# Find the source files, if location was not specified. -if test -z "$srcdir"; then - ac_srcdir_defaulted=yes - # Try the directory containing this script, then the parent directory. - ac_confdir=`$as_dirname -- "$0" || -$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$0" : 'X\(//\)[^/]' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -echo X"$0" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - srcdir=$ac_confdir - if test ! -r "$srcdir/$ac_unique_file"; then - srcdir=.. - fi -else - ac_srcdir_defaulted=no -fi -if test ! -r "$srcdir/$ac_unique_file"; then - test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 - { (exit 1); exit 1; }; } -fi -ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" -ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 - { (exit 1); exit 1; }; } - pwd)` -# When building in place, set srcdir=. -if test "$ac_abs_confdir" = "$ac_pwd"; then - srcdir=. -fi -# Remove unnecessary trailing slashes from srcdir. -# Double slashes in file names in object file debugging info -# mess up M-x gdb in Emacs. -case $srcdir in -*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; -esac -for ac_var in $ac_precious_vars; do - eval ac_env_${ac_var}_set=\${${ac_var}+set} - eval ac_env_${ac_var}_value=\$${ac_var} - eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} - eval ac_cv_env_${ac_var}_value=\$${ac_var} -done - -# -# Report the --help message. -# -if test "$ac_init_help" = "long"; then - # Omit some internal or obsolete options to make the list less imposing. - # This message is too long to be a string in the A/UX 3.1 sh. - cat <<_ACEOF -\`configure' configures this package to adapt to many kinds of systems. - -Usage: $0 [OPTION]... [VAR=VALUE]... - -To assign environment variables (e.g., CC, CFLAGS...), specify them as -VAR=VALUE. See below for descriptions of some of the useful variables. - -Defaults for the options are specified in brackets. - -Configuration: - -h, --help display this help and exit - --help=short display options specific to this package - --help=recursive display the short help of all the included packages - -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking...' messages - --cache-file=FILE cache test results in FILE [disabled] - -C, --config-cache alias for \`--cache-file=config.cache' - -n, --no-create do not create output files - --srcdir=DIR find the sources in DIR [configure dir or \`..'] - -Installation directories: - --prefix=PREFIX install architecture-independent files in PREFIX - [$ac_default_prefix] - --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX - [PREFIX] - -By default, \`make install' will install all the files in -\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify -an installation prefix other than \`$ac_default_prefix' using \`--prefix', -for instance \`--prefix=\$HOME'. - -For better control, use the options below. - -Fine tuning of the installation directories: - --bindir=DIR user executables [EPREFIX/bin] - --sbindir=DIR system admin executables [EPREFIX/sbin] - --libexecdir=DIR program executables [EPREFIX/libexec] - --sysconfdir=DIR read-only single-machine data [PREFIX/etc] - --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] - --localstatedir=DIR modifiable single-machine data [PREFIX/var] - --libdir=DIR object code libraries [EPREFIX/lib] - --includedir=DIR C header files [PREFIX/include] - --oldincludedir=DIR C header files for non-gcc [/usr/include] - --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] - --datadir=DIR read-only architecture-independent data [DATAROOTDIR] - --infodir=DIR info documentation [DATAROOTDIR/info] - --localedir=DIR locale-dependent data [DATAROOTDIR/locale] - --mandir=DIR man documentation [DATAROOTDIR/man] - --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] - --htmldir=DIR html documentation [DOCDIR] - --dvidir=DIR dvi documentation [DOCDIR] - --pdfdir=DIR pdf documentation [DOCDIR] - --psdir=DIR ps documentation [DOCDIR] -_ACEOF - - cat <<\_ACEOF -_ACEOF -fi - -if test -n "$ac_init_help"; then - - cat <<\_ACEOF - -Optional Packages: - --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] - --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) - --without-mysql Do not use MySQL or attempt to find it - --with-mysqlconfig-path=PATH Complete path to the mysql_config executable - --with-rungroup=group Specify the rungroup for anope - --with-permissions=permissions Specify the default permissions for anope - --with-bindir=bindir Specify the default binary dir for anope ---with-makebin=run-cc.pl Specify the default make binary to use - --with-datadir=datadir Specify the location of the services data folder - --with-optimisation=1|2|3|4|5 Specify the optimisation level - --with-debugsym Include debugging symbols - -Some influential environment variables: - CC C compiler command - CFLAGS C compiler flags - LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a - nonstandard directory <lib dir> - LIBS libraries to pass to the linker, e.g. -l<library> - CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I<include dir> if - you have headers in a nonstandard directory <include dir> - CPP C preprocessor - -Use these variables to override the choices made by `configure' or to help -it to find libraries and programs with nonstandard names/locations. - -_ACEOF -ac_status=$? -fi - -if test "$ac_init_help" = "recursive"; then - # If there are subdirs, report their specific --help. - for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d "$ac_dir" || continue - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - cd "$ac_dir" || { ac_status=$?; continue; } - # Check for guested configure. - if test -f "$ac_srcdir/configure.gnu"; then - echo && - $SHELL "$ac_srcdir/configure.gnu" --help=recursive - elif test -f "$ac_srcdir/configure"; then - echo && - $SHELL "$ac_srcdir/configure" --help=recursive - else - echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 - fi || ac_status=$? - cd "$ac_pwd" || { ac_status=$?; break; } - done -fi - -test -n "$ac_init_help" && exit $ac_status -if $ac_init_version; then - cat <<\_ACEOF -configure -generated by GNU Autoconf 2.61 - -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. -This configure script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it. -_ACEOF - exit -fi -cat >config.log <<_ACEOF -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by $as_me, which was -generated by GNU Autoconf 2.61. Invocation command line was - - $ $0 $@ - -_ACEOF -exec 5>>config.log -{ -cat <<_ASUNAME -## --------- ## -## Platform. ## -## --------- ## - -hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` - -/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` -/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` -/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` - -_ASUNAME - -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - echo "PATH: $as_dir" -done -IFS=$as_save_IFS - -} >&5 - -cat >&5 <<_ACEOF - - -## ----------- ## -## Core tests. ## -## ----------- ## - -_ACEOF - - -# Keep a trace of the command line. -# Strip out --no-create and --no-recursion so they do not pile up. -# Strip out --silent because we don't want to record it for future runs. -# Also quote any args containing shell meta-characters. -# Make two passes to allow for proper duplicate-argument suppression. -ac_configure_args= -ac_configure_args0= -ac_configure_args1= -ac_must_keep_next=false -for ac_pass in 1 2 -do - for ac_arg - do - case $ac_arg in - -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - continue ;; - *\'*) - ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - case $ac_pass in - 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; - 2) - ac_configure_args1="$ac_configure_args1 '$ac_arg'" - if test $ac_must_keep_next = true; then - ac_must_keep_next=false # Got value, back to normal. - else - case $ac_arg in - *=* | --config-cache | -C | -disable-* | --disable-* \ - | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ - | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ - | -with-* | --with-* | -without-* | --without-* | --x) - case "$ac_configure_args0 " in - "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; - esac - ;; - -* ) ac_must_keep_next=true ;; - esac - fi - ac_configure_args="$ac_configure_args '$ac_arg'" - ;; - esac - done -done -$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } -$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } - -# When interrupted or exit'd, cleanup temporary files, and complete -# config.log. We remove comments because anyway the quotes in there -# would cause problems or look ugly. -# WARNING: Use '\'' to represent an apostrophe within the trap. -# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. -trap 'exit_status=$? - # Save into config.log some information that might help in debugging. - { - echo - - cat <<\_ASBOX -## ---------------- ## -## Cache variables. ## -## ---------------- ## -_ASBOX - echo - # The following way of writing the cache mishandles newlines in values, -( - for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 -echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - *) $as_unset $ac_var ;; - esac ;; - esac - done - (set) 2>&1 | - case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - sed -n \ - "s/'\''/'\''\\\\'\'''\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" - ;; #( - *) - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) - echo - - cat <<\_ASBOX -## ----------------- ## -## Output variables. ## -## ----------------- ## -_ASBOX - echo - for ac_var in $ac_subst_vars - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - echo "$ac_var='\''$ac_val'\''" - done | sort - echo - - if test -n "$ac_subst_files"; then - cat <<\_ASBOX -## ------------------- ## -## File substitutions. ## -## ------------------- ## -_ASBOX - echo - for ac_var in $ac_subst_files - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - echo "$ac_var='\''$ac_val'\''" - done | sort - echo - fi - - if test -s confdefs.h; then - cat <<\_ASBOX -## ----------- ## -## confdefs.h. ## -## ----------- ## -_ASBOX - echo - cat confdefs.h - echo - fi - test "$ac_signal" != 0 && - echo "$as_me: caught signal $ac_signal" - echo "$as_me: exit $exit_status" - } >&5 - rm -f core *.core core.conftest.* && - rm -f -r conftest* confdefs* conf$$* $ac_clean_files && - exit $exit_status -' 0 -for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal -done -ac_signal=0 - -# confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -f -r conftest* confdefs.h - -# Predefined preprocessor variables. - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF - - -# Let the site file select an alternate cache file if it wants to. -# Prefer explicitly selected file to automatically selected ones. -if test -n "$CONFIG_SITE"; then - set x "$CONFIG_SITE" -elif test "x$prefix" != xNONE; then - set x "$prefix/share/config.site" "$prefix/etc/config.site" -else - set x "$ac_default_prefix/share/config.site" \ - "$ac_default_prefix/etc/config.site" -fi -shift -for ac_site_file -do - if test -r "$ac_site_file"; then - { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 -echo "$as_me: loading site script $ac_site_file" >&6;} - sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" - fi -done - -if test -r "$cache_file"; then - # Some versions of bash will fail to source /dev/null (special - # files actually), so we avoid doing that. - if test -f "$cache_file"; then - { echo "$as_me:$LINENO: loading cache $cache_file" >&5 -echo "$as_me: loading cache $cache_file" >&6;} - case $cache_file in - [\\/]* | ?:[\\/]* ) . "$cache_file";; - *) . "./$cache_file";; - esac - fi -else - { echo "$as_me:$LINENO: creating cache $cache_file" >&5 -echo "$as_me: creating cache $cache_file" >&6;} - >$cache_file -fi - -# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in $ac_precious_vars; do - eval ac_old_set=\$ac_cv_env_${ac_var}_set - eval ac_new_set=\$ac_env_${ac_var}_set - eval ac_old_val=\$ac_cv_env_${ac_var}_value - eval ac_new_val=\$ac_env_${ac_var}_value - case $ac_old_set,$ac_new_set in - set,) - { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,set) - { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,);; - *) - if test "x$ac_old_val" != "x$ac_new_val"; then - { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 -echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 -echo "$as_me: former value: $ac_old_val" >&2;} - { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 -echo "$as_me: current value: $ac_new_val" >&2;} - ac_cache_corrupted=: - fi;; - esac - # Pass precious variables to config.status. - if test "$ac_new_set" = set; then - case $ac_new_val in - *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; - *) ac_arg=$ac_var=$ac_new_val ;; - esac - case " $ac_configure_args " in - *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; - esac - fi -done -if $ac_cache_corrupted; then - { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 -echo "$as_me: error: changes in the environment can compromise the build" >&2;} - { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 -echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} - { (exit 1); exit 1; }; } -fi - - - - - - - - - - - - - - - - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - -# Clear out any CFLAGS (cept -g) the os is using, usually -g -O2 -CFLAGS="-g" - -# If no bindir, we tell him to run ./Config. -if test "${with_bindir+set}" != set || test "${with_datadir+set}" != set; then - echo "You might want to run ./Config or provide some parameters to this script." - echo "./configure --help for information about this script" - exit 0 -fi - - -ac_config_headers="$ac_config_headers include/sysconf.h" - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CC="gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&5 -echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - - fi -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl.exe - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl.exe -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CC="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - - test -n "$ac_ct_CC" && break -done - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&5 -echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -fi - -fi - - -test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&5 -echo "$as_me: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - -# Provide some information about the compiler. -echo "$as_me:$LINENO: checking for C compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (ac_try="$ac_compiler --version >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compiler --version >&5") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (ac_try="$ac_compiler -v >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compiler -v >&5") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (ac_try="$ac_compiler -V >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compiler -V >&5") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.exe b.out" -# Try to create an executable without -o first, disregard a.out. -# It will help us diagnose broken compilers, and finding out an intuition -# of exeext. -{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 -echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } -ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` -# -# List of possible output files, starting from the most likely. -# The algorithm is not robust to junk in `.', hence go to wildcards (a.*) -# only as a last resort. b.out is created by i960 compilers. -ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' -# -# The IRIX 6 linker writes into existing files which may not be -# executable, retaining their permissions. Remove them first so a -# subsequent execution test works. -ac_rmfiles= -for ac_file in $ac_files -do - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; - * ) ac_rmfiles="$ac_rmfiles $ac_file";; - esac -done -rm -f $ac_rmfiles - -if { (ac_try="$ac_link_default" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link_default") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. -# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' -# in a Makefile. We should not override ac_cv_exeext if it was cached, -# so that the user can short-circuit this test for compilers unknown to -# Autoconf. -for ac_file in $ac_files '' -do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) - ;; - [ab].out ) - # We found the default executable, but exeext='' is most - # certainly right. - break;; - *.* ) - if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; - then :; else - ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - fi - # We set ac_cv_exeext here because the later test for it is not - # safe: cross compilers may not add the suffix if given an `-o' - # argument, so we may need to know it at that point already. - # Even if this section looks crufty: it has the advantage of - # actually working. - break;; - * ) - break;; - esac -done -test "$ac_cv_exeext" = no && ac_cv_exeext= - -else - ac_file='' -fi - -{ echo "$as_me:$LINENO: result: $ac_file" >&5 -echo "${ECHO_T}$ac_file" >&6; } -if test -z "$ac_file"; then - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { echo "$as_me:$LINENO: error: C compiler cannot create executables -See \`config.log' for more details." >&5 -echo "$as_me: error: C compiler cannot create executables -See \`config.log' for more details." >&2;} - { (exit 77); exit 77; }; } -fi - -ac_exeext=$ac_cv_exeext - -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5 -echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; } -# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 -# If not cross compiling, check that we can run a simple program. -if test "$cross_compiling" != yes; then - if { ac_try='./$ac_file' - { (case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { echo "$as_me:$LINENO: error: cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - fi - fi -fi -{ echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6; } - -rm -f a.out a.exe conftest$ac_cv_exeext b.out -ac_clean_files=$ac_clean_files_save -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 -echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } -{ echo "$as_me:$LINENO: result: $cross_compiling" >&5 -echo "${ECHO_T}$cross_compiling" >&6; } - -{ echo "$as_me:$LINENO: checking for suffix of executables" >&5 -echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - # If both `conftest.exe' and `conftest' are `present' (well, observable) -# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -# work properly (i.e., refer to `conftest.exe'), while it won't with -# `rm'. -for ac_file in conftest.exe conftest conftest.*; do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - break;; - * ) break;; - esac -done -else - { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -rm -f conftest$ac_cv_exeext -{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 -echo "${ECHO_T}$ac_cv_exeext" >&6; } - -rm -f conftest.$ac_ext -EXEEXT=$ac_cv_exeext -ac_exeext=$EXEEXT -{ echo "$as_me:$LINENO: checking for suffix of object files" >&5 -echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } -if test "${ac_cv_objext+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.o conftest.obj -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - for ac_file in conftest.o conftest.obj conftest.*; do - test -f "$ac_file" || continue; - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -rm -f conftest.$ac_cv_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 -echo "${ECHO_T}$ac_cv_objext" >&6; } -OBJEXT=$ac_cv_objext -ac_objext=$OBJEXT -{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } -if test "${ac_cv_c_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_compiler_gnu=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } -GCC=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 -echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } -if test "${ac_cv_prog_cc_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_save_c_werror_flag=$ac_c_werror_flag - ac_c_werror_flag=yes - ac_cv_prog_cc_g=no - CFLAGS="-g" - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_prog_cc_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - CFLAGS="" - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_c_werror_flag=$ac_save_c_werror_flag - CFLAGS="-g" - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_prog_cc_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_c_werror_flag=$ac_save_c_werror_flag -fi -{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 -echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } -if test "${ac_cv_prog_cc_c89+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_prog_cc_c89=no -ac_save_CC=$CC -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <stdarg.h> -#include <stdio.h> -#include <sys/types.h> -#include <sys/stat.h> -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters - inside strings and character constants. */ -#define FOO(x) 'x' -int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ - -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_prog_cc_c89=$ac_arg -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - -fi - -rm -f core conftest.err conftest.$ac_objext - test "x$ac_cv_prog_cc_c89" != "xno" && break -done -rm -f conftest.$ac_ext -CC=$ac_save_CC - -fi -# AC_CACHE_VAL -case "x$ac_cv_prog_cc_c89" in - x) - { echo "$as_me:$LINENO: result: none needed" >&5 -echo "${ECHO_T}none needed" >&6; } ;; - xno) - { echo "$as_me:$LINENO: result: unsupported" >&5 -echo "${ECHO_T}unsupported" >&6; } ;; - *) - CC="$CC $ac_cv_prog_cc_c89" - { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; -esac - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -if test "$ac_cv_c_compiler_gnu" = "yes"; then -# CFLAGS="$CFLAGS -funsigned-char" - -{ echo "$as_me:$LINENO: checking if gcc has a working -pipe" >&5 -echo $ECHO_N "checking if gcc has a working -pipe... $ECHO_C" >&6; } -if test "${ac_cv_pipe+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - - save_cflags="$CFLAGS" - CFLAGS="$CFLAGS -pipe" - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_pipe="yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_pipe="no" -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CFLAGS="$save_cflags" - -fi -{ echo "$as_me:$LINENO: result: $ac_cv_pipe" >&5 -echo "${ECHO_T}$ac_cv_pipe" >&6; } - if test "$ac_cv_pipe" = "yes"; then - CFLAGS="-pipe $CFLAGS" - fi -fi - - -# Extract the first word of "rm", so it can be a program name with args. -set dummy rm; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_path_RM+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $RM in - [\\/]* | ?:[\\/]*) - ac_cv_path_RM="$RM" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_RM="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - - ;; -esac -fi -RM=$ac_cv_path_RM -if test -n "$RM"; then - { echo "$as_me:$LINENO: result: $RM" >&5 -echo "${ECHO_T}$RM" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -# Extract the first word of "cp", so it can be a program name with args. -set dummy cp; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_path_CP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $CP in - [\\/]* | ?:[\\/]*) - ac_cv_path_CP="$CP" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_CP="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - - ;; -esac -fi -CP=$ac_cv_path_CP -if test -n "$CP"; then - { echo "$as_me:$LINENO: result: $CP" >&5 -echo "${ECHO_T}$CP" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -# Extract the first word of "touch", so it can be a program name with args. -set dummy touch; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_path_TOUCH+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $TOUCH in - [\\/]* | ?:[\\/]*) - ac_cv_path_TOUCH="$TOUCH" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_TOUCH="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - - ;; -esac -fi -TOUCH=$ac_cv_path_TOUCH -if test -n "$TOUCH"; then - { echo "$as_me:$LINENO: result: $TOUCH" >&5 -echo "${ECHO_T}$TOUCH" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -# Extract the first word of "install", so it can be a program name with args. -set dummy install; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_path_INSTALL+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $INSTALL in - [\\/]* | ?:[\\/]*) - ac_cv_path_INSTALL="$INSTALL" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_INSTALL="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - - ;; -esac -fi -INSTALL=$ac_cv_path_INSTALL -if test -n "$INSTALL"; then - { echo "$as_me:$LINENO: result: $INSTALL" >&5 -echo "${ECHO_T}$INSTALL" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -{ echo "$as_me:$LINENO: checking for inet_ntoa in -lnsl" >&5 -echo $ECHO_N "checking for inet_ntoa in -lnsl... $ECHO_C" >&6; } -if test "${ac_cv_lib_nsl_inet_ntoa+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lnsl $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char inet_ntoa (); -int -main () -{ -return inet_ntoa (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - ac_cv_lib_nsl_inet_ntoa=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_lib_nsl_inet_ntoa=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_inet_ntoa" >&5 -echo "${ECHO_T}$ac_cv_lib_nsl_inet_ntoa" >&6; } -if test $ac_cv_lib_nsl_inet_ntoa = yes; then - ANOPELIBS="$ANOPELIBS-lnsl " -fi - -{ echo "$as_me:$LINENO: checking for socket in -lsocket" >&5 -echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6; } -if test "${ac_cv_lib_socket_socket+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lsocket $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char socket (); -int -main () -{ -return socket (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - ac_cv_lib_socket_socket=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_lib_socket_socket=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ echo "$as_me:$LINENO: result: $ac_cv_lib_socket_socket" >&5 -echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6; } -if test $ac_cv_lib_socket_socket = yes; then - ANOPELIBS="$ANOPELIBS-lsocket " -fi - -{ echo "$as_me:$LINENO: checking for res_query in -lresolv" >&5 -echo $ECHO_N "checking for res_query in -lresolv... $ECHO_C" >&6; } -if test "${ac_cv_lib_resolv_res_query+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lresolv $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char res_query (); -int -main () -{ -return res_query (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - ac_cv_lib_resolv_res_query=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_lib_resolv_res_query=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_res_query" >&5 -echo "${ECHO_T}$ac_cv_lib_resolv_res_query" >&6; } -if test $ac_cv_lib_resolv_res_query = yes; then - ANOPELIBS="$ANOPELIBS-lresolv " -fi - -{ echo "$as_me:$LINENO: checking for revoke in -lbsd" >&5 -echo $ECHO_N "checking for revoke in -lbsd... $ECHO_C" >&6; } -if test "${ac_cv_lib_bsd_revoke+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lbsd $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char revoke (); -int -main () -{ -return revoke (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - ac_cv_lib_bsd_revoke=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_lib_bsd_revoke=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ echo "$as_me:$LINENO: result: $ac_cv_lib_bsd_revoke" >&5 -echo "${ECHO_T}$ac_cv_lib_bsd_revoke" >&6; } -if test $ac_cv_lib_bsd_revoke = yes; then - ANOPELIBS="$ANOPELIBS-lbsd " -fi - - - - -{ echo "$as_me:$LINENO: checking whether va_list assignments need array notation" >&5 -echo $ECHO_N "checking whether va_list assignments need array notation... $ECHO_C" >&6; } -if test "${ac_cv_valistisarray+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$cross_compiling" = yes; then - ac_cv_valistisarray=false -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <stdlib.h> - #include <stdarg.h> - void foo(int i, ...) { - va_list ap1, ap2; - va_start(ap1, i); - ap2 = ap1; - if (va_arg(ap2, int) != 123 || va_arg(ap1, int) != 123) { exit(1); } - va_end(ap1); va_end(ap2); - } - int main() - { foo(0, 123); return(0); } -_ACEOF -rm -f conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_valistisarray=false -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -ac_cv_valistisarray=true -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi - - -fi - - -if test "$ac_cv_valistisarray" = true ; then - -cat >>confdefs.h <<\_ACEOF -#define HAVE_VA_LIST_AS_ARRAY 1 -_ACEOF - - { echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -DIS_MYSQL=" MySQL: No" - -# Check whether --with-mysql was given. -if test "${with_mysql+set}" = set; then - withval=$with_mysql; -else - - -# Check whether --with-mysqlconfig-path was given. -if test "${with_mysqlconfig_path+set}" = set; then - withval=$with_mysqlconfig_path; mysql_config_path="$withval" -else - mysql_config_path="" -fi - - MYSQLCONF="" - if test "$mysql_config_path" != ""; then - if test -x "$mysql_config_path"; then - MYSQLCONF="$mysql_config_path" - echo "checking for mysql_config... $MYSQLCONF" >&6 - fi - fi - if test "$MYSQLCONF" = ""; then - # Extract the first word of "mysql_config", so it can be a program name with args. -set dummy mysql_config; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_path_MYSQLCONF+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $MYSQLCONF in - [\\/]* | ?:[\\/]*) - ac_cv_path_MYSQLCONF="$MYSQLCONF" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_MYSQLCONF="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - - test -z "$ac_cv_path_MYSQLCONF" && ac_cv_path_MYSQLCONF="""" - ;; -esac -fi -MYSQLCONF=$ac_cv_path_MYSQLCONF -if test -n "$MYSQLCONF"; then - { echo "$as_me:$LINENO: result: $MYSQLCONF" >&5 -echo "${ECHO_T}$MYSQLCONF" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - - fi - if test "$MYSQLCONF" != ""; then - hold_cflags="$CFLAGS" - hold_ldflags="$LDFLAGS" - if test "$MYSQL_CFLAGS" = ""; then - MYSQL_CFLAGS="`$MYSQLCONF --cflags`" - fi - if test "$MYSQL_LDFLAGS" = ""; then - MYSQL_LDFLAGS="`$MYSQLCONF --libs`" - fi - CFLAGS="$CFLAGS $MYSQL_CFLAGS" - LDFLAGS="$LDFLAGS $MYSQL_LDFLAGS" - echo $ECHO_N "checking if mysql_config produces valid values... $ECHO_C" >&6 - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -#include <mysql.h> - -int main() -{ - MYSQL *mysql = mysql_init(0); - - return 0; -} - -_ACEOF -rm -f conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_mysql_valid=yes -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -ac_cv_mysql_valid=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi - - - echo $ac_cv_mysql_valid >&6 - if test "$ac_cv_mysql_valid" = "yes"; then - DIS_MYSQL=" MySQL: Yes" - else - CFLAGS="$hold_cflags" - LDFLAGS="$hold_ldflags" - fi - fi - -fi - - -{ echo "$as_me:$LINENO: checking whether this is a bit or little endian system" >&5 -echo $ECHO_N "checking whether this is a bit or little endian system... $ECHO_C" >&6; } -if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int main() -{ - short s = 1; - short* ptr = &s; - unsigned char c = *((char*)ptr); - return c; -} - - -_ACEOF -rm -f conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - cat >>confdefs.h <<\_ACEOF -#define BIG_ENDIAN 1 -_ACEOF - - { echo "$as_me:$LINENO: result: big" >&5 -echo "${ECHO_T}big" >&6; } - -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -cat >>confdefs.h <<\_ACEOF -#define LITTLE_ENDIAN 1 -_ACEOF - - { echo "$as_me:$LINENO: result: little" >&5 -echo "${ECHO_T}little" >&6; } - -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi - - - - - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 -echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } -# On Suns, sometimes $CPP names a directory. -if test -n "$CPP" && test -d "$CPP"; then - CPP= -fi -if test -z "$CPP"; then - if test "${ac_cv_prog_CPP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - # Double quotes because CPP needs to be expanded - for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" - do - ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - # <limits.h> exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - Syntax error -_ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Broken: fails on valid input. -continue -fi - -rm -f conftest.err conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <ac_nonexistent.h> -_ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - # Broken: success on invalid input. -continue -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Passes both tests. -ac_preproc_ok=: -break -fi - -rm -f conftest.err conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then - break -fi - - done - ac_cv_prog_CPP=$CPP - -fi - CPP=$ac_cv_prog_CPP -else - ac_cv_prog_CPP=$CPP -fi -{ echo "$as_me:$LINENO: result: $CPP" >&5 -echo "${ECHO_T}$CPP" >&6; } -ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - # <limits.h> exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - Syntax error -_ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Broken: fails on valid input. -continue -fi - -rm -f conftest.err conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <ac_nonexistent.h> -_ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - # Broken: success on invalid input. -continue -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Passes both tests. -ac_preproc_ok=: -break -fi - -rm -f conftest.err conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then - : -else - { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details." >&5 -echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 -echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; } -if test "${ac_cv_path_GREP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - # Extract the first word of "grep ggrep" to use in msg output -if test -z "$GREP"; then -set dummy grep ggrep; ac_prog_name=$2 -if test "${ac_cv_path_GREP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_path_GREP_found=false -# Loop through the user's path and test for each of PROGNAME-LIST -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in grep ggrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue - # Check for GNU ac_path_GREP and select it if it is found. - # Check for GNU $ac_path_GREP -case `"$ac_path_GREP" --version 2>&1` in -*GNU*) - ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; -*) - ac_count=0 - echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - echo 'GREP' >> "conftest.nl" - "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - ac_count=`expr $ac_count + 1` - if test $ac_count -gt ${ac_path_GREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_GREP="$ac_path_GREP" - ac_path_GREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - - $ac_path_GREP_found && break 3 - done -done - -done -IFS=$as_save_IFS - - -fi - -GREP="$ac_cv_path_GREP" -if test -z "$GREP"; then - { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 -echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} - { (exit 1); exit 1; }; } -fi - -else - ac_cv_path_GREP=$GREP -fi - - -fi -{ echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 -echo "${ECHO_T}$ac_cv_path_GREP" >&6; } - GREP="$ac_cv_path_GREP" - - -{ echo "$as_me:$LINENO: checking for egrep" >&5 -echo $ECHO_N "checking for egrep... $ECHO_C" >&6; } -if test "${ac_cv_path_EGREP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 - then ac_cv_path_EGREP="$GREP -E" - else - # Extract the first word of "egrep" to use in msg output -if test -z "$EGREP"; then -set dummy egrep; ac_prog_name=$2 -if test "${ac_cv_path_EGREP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_path_EGREP_found=false -# Loop through the user's path and test for each of PROGNAME-LIST -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in egrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue - # Check for GNU ac_path_EGREP and select it if it is found. - # Check for GNU $ac_path_EGREP -case `"$ac_path_EGREP" --version 2>&1` in -*GNU*) - ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; -*) - ac_count=0 - echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - echo 'EGREP' >> "conftest.nl" - "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - ac_count=`expr $ac_count + 1` - if test $ac_count -gt ${ac_path_EGREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_EGREP="$ac_path_EGREP" - ac_path_EGREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - - $ac_path_EGREP_found && break 3 - done -done - -done -IFS=$as_save_IFS - - -fi - -EGREP="$ac_cv_path_EGREP" -if test -z "$EGREP"; then - { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 -echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} - { (exit 1); exit 1; }; } -fi - -else - ac_cv_path_EGREP=$EGREP -fi - - - fi -fi -{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 -echo "${ECHO_T}$ac_cv_path_EGREP" >&6; } - EGREP="$ac_cv_path_EGREP" - - -{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5 -echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } -if test "${ac_cv_header_stdc+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <stdlib.h> -#include <stdarg.h> -#include <string.h> -#include <float.h> - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_header_stdc=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_header_stdc=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <string.h> - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then - : -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <stdlib.h> - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then - : -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then - : -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <ctype.h> -#include <stdlib.h> -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \ - (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif - -#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{ - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - return 2; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -ac_cv_header_stdc=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi - - -fi -fi -{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 -echo "${ECHO_T}$ac_cv_header_stdc" >&6; } -if test $ac_cv_header_stdc = yes; then - -cat >>confdefs.h <<\_ACEOF -#define STDC_HEADERS 1 -_ACEOF - -fi - -# On IRIX 5.3, sys/types and inttypes.h are conflicting. - - - - - - - - - -for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ - inttypes.h stdint.h unistd.h -do -as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -{ echo "$as_me:$LINENO: checking for $ac_header" >&5 -echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } -if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - -#include <$ac_header> -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - eval "$as_ac_Header=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_Header=no" -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -ac_res=`eval echo '${'$as_ac_Header'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -if test `eval echo '${'$as_ac_Header'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - -if test "${ac_cv_header_sys_types_h+set}" = set; then - { echo "$as_me:$LINENO: checking for sys/types.h" >&5 -echo $ECHO_N "checking for sys/types.h... $ECHO_C" >&6; } -if test "${ac_cv_header_sys_types_h+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -fi -{ echo "$as_me:$LINENO: result: $ac_cv_header_sys_types_h" >&5 -echo "${ECHO_T}$ac_cv_header_sys_types_h" >&6; } -else - # Is the header compilable? -{ echo "$as_me:$LINENO: checking sys/types.h usability" >&5 -echo $ECHO_N "checking sys/types.h usability... $ECHO_C" >&6; } -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -#include <sys/types.h> -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_header_compiler=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_header_compiler=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -echo "${ECHO_T}$ac_header_compiler" >&6; } - -# Is the header present? -{ echo "$as_me:$LINENO: checking sys/types.h presence" >&5 -echo $ECHO_N "checking sys/types.h presence... $ECHO_C" >&6; } -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <sys/types.h> -_ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - ac_header_preproc=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_header_preproc=no -fi - -rm -f conftest.err conftest.$ac_ext -{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -echo "${ECHO_T}$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in - yes:no: ) - { echo "$as_me:$LINENO: WARNING: sys/types.h: accepted by the compiler, rejected by the preprocessor!" >&5 -echo "$as_me: WARNING: sys/types.h: accepted by the compiler, rejected by the preprocessor!" >&2;} - { echo "$as_me:$LINENO: WARNING: sys/types.h: proceeding with the compiler's result" >&5 -echo "$as_me: WARNING: sys/types.h: proceeding with the compiler's result" >&2;} - ac_header_preproc=yes - ;; - no:yes:* ) - { echo "$as_me:$LINENO: WARNING: sys/types.h: present but cannot be compiled" >&5 -echo "$as_me: WARNING: sys/types.h: present but cannot be compiled" >&2;} - { echo "$as_me:$LINENO: WARNING: sys/types.h: check for missing prerequisite headers?" >&5 -echo "$as_me: WARNING: sys/types.h: check for missing prerequisite headers?" >&2;} - { echo "$as_me:$LINENO: WARNING: sys/types.h: see the Autoconf documentation" >&5 -echo "$as_me: WARNING: sys/types.h: see the Autoconf documentation" >&2;} - { echo "$as_me:$LINENO: WARNING: sys/types.h: section \"Present But Cannot Be Compiled\"" >&5 -echo "$as_me: WARNING: sys/types.h: section \"Present But Cannot Be Compiled\"" >&2;} - { echo "$as_me:$LINENO: WARNING: sys/types.h: proceeding with the preprocessor's result" >&5 -echo "$as_me: WARNING: sys/types.h: proceeding with the preprocessor's result" >&2;} - { echo "$as_me:$LINENO: WARNING: sys/types.h: in the future, the compiler will take precedence" >&5 -echo "$as_me: WARNING: sys/types.h: in the future, the compiler will take precedence" >&2;} - - ;; -esac -{ echo "$as_me:$LINENO: checking for sys/types.h" >&5 -echo $ECHO_N "checking for sys/types.h... $ECHO_C" >&6; } -if test "${ac_cv_header_sys_types_h+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_header_sys_types_h=$ac_header_preproc -fi -{ echo "$as_me:$LINENO: result: $ac_cv_header_sys_types_h" >&5 -echo "${ECHO_T}$ac_cv_header_sys_types_h" >&6; } - -fi -if test $ac_cv_header_sys_types_h = yes; then - -cat >>confdefs.h <<\_ACEOF -#define HAS_SYS_TYPES_H 1 -_ACEOF - -fi - - - - - -{ echo "$as_me:$LINENO: checking for dlopen" >&5 -echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; } -if test "${ac_cv_func_dlopen+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -/* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen. - For example, HP-UX 11i <limits.h> declares gettimeofday. */ -#define dlopen innocuous_dlopen - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char dlopen (); below. - Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - <limits.h> exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - -#undef dlopen - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dlopen (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_dlopen || defined __stub___dlopen -choke me -#endif - -int -main () -{ -return dlopen (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - ac_cv_func_dlopen=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_func_dlopen=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 -echo "${ECHO_T}$ac_cv_func_dlopen" >&6; } -if test $ac_cv_func_dlopen = yes; then - : -else - { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 -echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } -if test "${ac_cv_lib_dl_dlopen+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldl $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dlopen (); -int -main () -{ -return dlopen (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - ac_cv_lib_dl_dlopen=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_lib_dl_dlopen=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 -echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } -if test $ac_cv_lib_dl_dlopen = yes; then - - ANOPELIBS="$ANOPELIBS -ldl" - -else - - { { echo "$as_me:$LINENO: error: \"dlopen() is required for Anope to be compiled and used. Sorry.\"" >&5 -echo "$as_me: error: \"dlopen() is required for Anope to be compiled and used. Sorry.\"" >&2;} - { (exit 1); exit 1; }; } - -fi - -fi - - -hold_cflags=$CFLAGS -CFLAGS="$CFLAGS -export-dynamic" -{ echo "$as_me:$LINENO: checking if we need the -export-dynamic flag" >&5 -echo $ECHO_N "checking if we need the -export-dynamic flag... $ECHO_C" >&6; } -if test "${ac_cv_export_dynamic+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -int i; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - ac_cv_export_dynamic=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_export_dynamic=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_export_dynamic" >&5 -echo "${ECHO_T}$ac_cv_export_dynamic" >&6; } -if test "$ac_cv_export_dynamic" = "no"; then -CFLAGS=$hold_cflags -fi - -{ echo "$as_me:$LINENO: checking for compiler option to produce PIC" >&5 -echo $ECHO_N "checking for compiler option to produce PIC... $ECHO_C" >&6; } -if test "${ac_cv_pic+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - -if test "$ac_cv_c_compiler_gnu" = "yes"; then - ac_cv_pic="-fPIC -DPIC -shared" - case `uname -s` in - Darwin*) - ac_cv_pic="-bundle -flat_namespace -undefined suppress" - ;; - HP-UX*) - ac_cv_pic="-fPIC" - ;; - esac -else -case `uname -s` in - SunOS*) - ac_cv_pic="-KPIC -DPIC -G" - ;; -esac - -fi - - -fi -{ echo "$as_me:$LINENO: result: $ac_cv_pic" >&5 -echo "${ECHO_T}$ac_cv_pic" >&6; } - -if test "$ac_cv_c_compiler_gnu" = "yes"; then - case `uname -s` in - Darwin*) - SHARED="-bundle -flat_namespace -undefined suppress" - - ;; - *) - SHARED="-shared" - - ;; - esac -fi - -{ echo "$as_me:$LINENO: checking if your system prepends an underscore on symbols" >&5 -echo $ECHO_N "checking if your system prepends an underscore on symbols... $ECHO_C" >&6; } -if test "${ac_cv_underscore+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - -cat >uscore.c << __EOF__ -int main() { -return 0; -} -__EOF__ -$CC -o uscore $CFLAGS uscore.c 1>&5 -if test -z "`strings -a uscore |grep '^_main$'`"; then - ac_cv_underscore=no -else - ac_cv_underscore=yes -fi - -rm -f uscore uscore.c - -fi -{ echo "$as_me:$LINENO: result: $ac_cv_underscore" >&5 -echo "${ECHO_T}$ac_cv_underscore" >&6; } -if test "$ac_cv_underscore" = "yes"; then - -cat >>confdefs.h <<\_ACEOF -#define DL_PREFIX "_" -_ACEOF - -else - -cat >>confdefs.h <<\_ACEOF -#define DL_PREFIX "" -_ACEOF - -fi - -MODULEFLAGS=$ac_cv_pic - - -{ echo "$as_me:$LINENO: checking for short" >&5 -echo $ECHO_N "checking for short... $ECHO_C" >&6; } -if test "${ac_cv_type_short+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -typedef short ac__type_new_; -int -main () -{ -if ((ac__type_new_ *) 0) - return 0; -if (sizeof (ac__type_new_)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_type_short=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_type_short=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_type_short" >&5 -echo "${ECHO_T}$ac_cv_type_short" >&6; } - -# The cast to long int works around a bug in the HP C Compiler -# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects -# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. -# This bug is HP SR number 8606223364. -{ echo "$as_me:$LINENO: checking size of short" >&5 -echo $ECHO_N "checking size of short... $ECHO_C" >&6; } -if test "${ac_cv_sizeof_short+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef short ac__type_sizeof_; -int -main () -{ -static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef short ac__type_sizeof_; -int -main () -{ -static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef short ac__type_sizeof_; -int -main () -{ -static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef short ac__type_sizeof_; -int -main () -{ -static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_lo= ac_hi= -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef short ac__type_sizeof_; -int -main () -{ -static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_lo=`expr '(' $ac_mid ')' + 1` -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_short=$ac_lo;; -'') if test "$ac_cv_type_short" = yes; then - { { echo "$as_me:$LINENO: error: cannot compute sizeof (short) -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (short) -See \`config.log' for more details." >&2;} - { (exit 77); exit 77; }; } - else - ac_cv_sizeof_short=0 - fi ;; -esac -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef short ac__type_sizeof_; -static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } -static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } -#include <stdio.h> -#include <stdlib.h> -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - return 1; - if (((long int) (sizeof (ac__type_sizeof_))) < 0) - { - long int i = longval (); - if (i != ((long int) (sizeof (ac__type_sizeof_)))) - return 1; - fprintf (f, "%ld\n", i); - } - else - { - unsigned long int i = ulongval (); - if (i != ((long int) (sizeof (ac__type_sizeof_)))) - return 1; - fprintf (f, "%lu\n", i); - } - return ferror (f) || fclose (f) != 0; - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_short=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -if test "$ac_cv_type_short" = yes; then - { { echo "$as_me:$LINENO: error: cannot compute sizeof (short) -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (short) -See \`config.log' for more details." >&2;} - { (exit 77); exit 77; }; } - else - ac_cv_sizeof_short=0 - fi -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.val -fi -{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_short" >&5 -echo "${ECHO_T}$ac_cv_sizeof_short" >&6; } - - - -cat >>confdefs.h <<_ACEOF -#define SIZEOF_SHORT $ac_cv_sizeof_short -_ACEOF - - -{ echo "$as_me:$LINENO: checking for int" >&5 -echo $ECHO_N "checking for int... $ECHO_C" >&6; } -if test "${ac_cv_type_int+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -typedef int ac__type_new_; -int -main () -{ -if ((ac__type_new_ *) 0) - return 0; -if (sizeof (ac__type_new_)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_type_int=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_type_int=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_type_int" >&5 -echo "${ECHO_T}$ac_cv_type_int" >&6; } - -# The cast to long int works around a bug in the HP C Compiler -# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects -# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. -# This bug is HP SR number 8606223364. -{ echo "$as_me:$LINENO: checking size of int" >&5 -echo $ECHO_N "checking size of int... $ECHO_C" >&6; } -if test "${ac_cv_sizeof_int+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef int ac__type_sizeof_; -int -main () -{ -static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef int ac__type_sizeof_; -int -main () -{ -static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef int ac__type_sizeof_; -int -main () -{ -static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef int ac__type_sizeof_; -int -main () -{ -static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_lo= ac_hi= -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef int ac__type_sizeof_; -int -main () -{ -static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_lo=`expr '(' $ac_mid ')' + 1` -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_int=$ac_lo;; -'') if test "$ac_cv_type_int" = yes; then - { { echo "$as_me:$LINENO: error: cannot compute sizeof (int) -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (int) -See \`config.log' for more details." >&2;} - { (exit 77); exit 77; }; } - else - ac_cv_sizeof_int=0 - fi ;; -esac -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef int ac__type_sizeof_; -static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } -static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } -#include <stdio.h> -#include <stdlib.h> -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - return 1; - if (((long int) (sizeof (ac__type_sizeof_))) < 0) - { - long int i = longval (); - if (i != ((long int) (sizeof (ac__type_sizeof_)))) - return 1; - fprintf (f, "%ld\n", i); - } - else - { - unsigned long int i = ulongval (); - if (i != ((long int) (sizeof (ac__type_sizeof_)))) - return 1; - fprintf (f, "%lu\n", i); - } - return ferror (f) || fclose (f) != 0; - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_int=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -if test "$ac_cv_type_int" = yes; then - { { echo "$as_me:$LINENO: error: cannot compute sizeof (int) -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (int) -See \`config.log' for more details." >&2;} - { (exit 77); exit 77; }; } - else - ac_cv_sizeof_int=0 - fi -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.val -fi -{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_int" >&5 -echo "${ECHO_T}$ac_cv_sizeof_int" >&6; } - - - -cat >>confdefs.h <<_ACEOF -#define SIZEOF_INT $ac_cv_sizeof_int -_ACEOF - - -{ echo "$as_me:$LINENO: checking for long" >&5 -echo $ECHO_N "checking for long... $ECHO_C" >&6; } -if test "${ac_cv_type_long+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -typedef long ac__type_new_; -int -main () -{ -if ((ac__type_new_ *) 0) - return 0; -if (sizeof (ac__type_new_)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_type_long=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_type_long=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_type_long" >&5 -echo "${ECHO_T}$ac_cv_type_long" >&6; } - -# The cast to long int works around a bug in the HP C Compiler -# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects -# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. -# This bug is HP SR number 8606223364. -{ echo "$as_me:$LINENO: checking size of long" >&5 -echo $ECHO_N "checking size of long... $ECHO_C" >&6; } -if test "${ac_cv_sizeof_long+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef long ac__type_sizeof_; -int -main () -{ -static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef long ac__type_sizeof_; -int -main () -{ -static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef long ac__type_sizeof_; -int -main () -{ -static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef long ac__type_sizeof_; -int -main () -{ -static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_lo= ac_hi= -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef long ac__type_sizeof_; -int -main () -{ -static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_lo=`expr '(' $ac_mid ')' + 1` -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_long=$ac_lo;; -'') if test "$ac_cv_type_long" = yes; then - { { echo "$as_me:$LINENO: error: cannot compute sizeof (long) -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (long) -See \`config.log' for more details." >&2;} - { (exit 77); exit 77; }; } - else - ac_cv_sizeof_long=0 - fi ;; -esac -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - typedef long ac__type_sizeof_; -static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } -static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } -#include <stdio.h> -#include <stdlib.h> -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - return 1; - if (((long int) (sizeof (ac__type_sizeof_))) < 0) - { - long int i = longval (); - if (i != ((long int) (sizeof (ac__type_sizeof_)))) - return 1; - fprintf (f, "%ld\n", i); - } - else - { - unsigned long int i = ulongval (); - if (i != ((long int) (sizeof (ac__type_sizeof_)))) - return 1; - fprintf (f, "%lu\n", i); - } - return ferror (f) || fclose (f) != 0; - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_long=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -if test "$ac_cv_type_long" = yes; then - { { echo "$as_me:$LINENO: error: cannot compute sizeof (long) -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (long) -See \`config.log' for more details." >&2;} - { (exit 77); exit 77; }; } - else - ac_cv_sizeof_long=0 - fi -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.val -fi -{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_long" >&5 -echo "${ECHO_T}$ac_cv_sizeof_long" >&6; } - - - -cat >>confdefs.h <<_ACEOF -#define SIZEOF_LONG $ac_cv_sizeof_long -_ACEOF - - -if test "$ac_cv_sizeof_int" = 2 ; then - { echo "$as_me:$LINENO: checking for int16_t" >&5 -echo $ECHO_N "checking for int16_t... $ECHO_C" >&6; } -if test "${ac_cv_type_int16_t+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -typedef int16_t ac__type_new_; -int -main () -{ -if ((ac__type_new_ *) 0) - return 0; -if (sizeof (ac__type_new_)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_type_int16_t=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_type_int16_t=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_type_int16_t" >&5 -echo "${ECHO_T}$ac_cv_type_int16_t" >&6; } -if test $ac_cv_type_int16_t = yes; then - : -else - -cat >>confdefs.h <<_ACEOF -#define int16_t int -_ACEOF - -fi - - { echo "$as_me:$LINENO: checking for u_int16_t" >&5 -echo $ECHO_N "checking for u_int16_t... $ECHO_C" >&6; } -if test "${ac_cv_type_u_int16_t+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -typedef u_int16_t ac__type_new_; -int -main () -{ -if ((ac__type_new_ *) 0) - return 0; -if (sizeof (ac__type_new_)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_type_u_int16_t=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_type_u_int16_t=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_type_u_int16_t" >&5 -echo "${ECHO_T}$ac_cv_type_u_int16_t" >&6; } -if test $ac_cv_type_u_int16_t = yes; then - : -else - -cat >>confdefs.h <<_ACEOF -#define u_int16_t unsigned int -_ACEOF - -fi - -elif test "$ac_cv_sizeof_short" = 2 ; then - { echo "$as_me:$LINENO: checking for int16_t" >&5 -echo $ECHO_N "checking for int16_t... $ECHO_C" >&6; } -if test "${ac_cv_type_int16_t+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -typedef int16_t ac__type_new_; -int -main () -{ -if ((ac__type_new_ *) 0) - return 0; -if (sizeof (ac__type_new_)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_type_int16_t=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_type_int16_t=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_type_int16_t" >&5 -echo "${ECHO_T}$ac_cv_type_int16_t" >&6; } -if test $ac_cv_type_int16_t = yes; then - : -else - -cat >>confdefs.h <<_ACEOF -#define int16_t short -_ACEOF - -fi - - { echo "$as_me:$LINENO: checking for u_int16_t" >&5 -echo $ECHO_N "checking for u_int16_t... $ECHO_C" >&6; } -if test "${ac_cv_type_u_int16_t+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -typedef u_int16_t ac__type_new_; -int -main () -{ -if ((ac__type_new_ *) 0) - return 0; -if (sizeof (ac__type_new_)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_type_u_int16_t=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_type_u_int16_t=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_type_u_int16_t" >&5 -echo "${ECHO_T}$ac_cv_type_u_int16_t" >&6; } -if test $ac_cv_type_u_int16_t = yes; then - : -else - -cat >>confdefs.h <<_ACEOF -#define u_int16_t unsigned short -_ACEOF - -fi - -else - { { echo "$as_me:$LINENO: error: Cannot find a type with size of 16 bits" >&5 -echo "$as_me: error: Cannot find a type with size of 16 bits" >&2;} - { (exit 1); exit 1; }; } -fi -if test "$ac_cv_sizeof_int" = 4 ; then - { echo "$as_me:$LINENO: checking for int32_t" >&5 -echo $ECHO_N "checking for int32_t... $ECHO_C" >&6; } -if test "${ac_cv_type_int32_t+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -typedef int32_t ac__type_new_; -int -main () -{ -if ((ac__type_new_ *) 0) - return 0; -if (sizeof (ac__type_new_)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_type_int32_t=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_type_int32_t=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_type_int32_t" >&5 -echo "${ECHO_T}$ac_cv_type_int32_t" >&6; } -if test $ac_cv_type_int32_t = yes; then - : -else - -cat >>confdefs.h <<_ACEOF -#define int32_t int -_ACEOF - -fi - - { echo "$as_me:$LINENO: checking for u_int32_t" >&5 -echo $ECHO_N "checking for u_int32_t... $ECHO_C" >&6; } -if test "${ac_cv_type_u_int32_t+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -typedef u_int32_t ac__type_new_; -int -main () -{ -if ((ac__type_new_ *) 0) - return 0; -if (sizeof (ac__type_new_)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_type_u_int32_t=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_type_u_int32_t=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_type_u_int32_t" >&5 -echo "${ECHO_T}$ac_cv_type_u_int32_t" >&6; } -if test $ac_cv_type_u_int32_t = yes; then - : -else - -cat >>confdefs.h <<_ACEOF -#define u_int32_t unsigned int -_ACEOF - -fi - -elif test "$ac_cv_sizeof_short" = 4 ; then - { echo "$as_me:$LINENO: checking for int32_t" >&5 -echo $ECHO_N "checking for int32_t... $ECHO_C" >&6; } -if test "${ac_cv_type_int32_t+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -typedef int32_t ac__type_new_; -int -main () -{ -if ((ac__type_new_ *) 0) - return 0; -if (sizeof (ac__type_new_)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_type_int32_t=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_type_int32_t=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_type_int32_t" >&5 -echo "${ECHO_T}$ac_cv_type_int32_t" >&6; } -if test $ac_cv_type_int32_t = yes; then - : -else - -cat >>confdefs.h <<_ACEOF -#define int32_t short -_ACEOF - -fi - - { echo "$as_me:$LINENO: checking for u_int32_t" >&5 -echo $ECHO_N "checking for u_int32_t... $ECHO_C" >&6; } -if test "${ac_cv_type_u_int32_t+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -typedef u_int32_t ac__type_new_; -int -main () -{ -if ((ac__type_new_ *) 0) - return 0; -if (sizeof (ac__type_new_)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_type_u_int32_t=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_type_u_int32_t=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_type_u_int32_t" >&5 -echo "${ECHO_T}$ac_cv_type_u_int32_t" >&6; } -if test $ac_cv_type_u_int32_t = yes; then - : -else - -cat >>confdefs.h <<_ACEOF -#define u_int32_t unsigned short -_ACEOF - -fi - -elif test "$ac_cv_sizeof_long" = 4 ; then - { echo "$as_me:$LINENO: checking for int32_t" >&5 -echo $ECHO_N "checking for int32_t... $ECHO_C" >&6; } -if test "${ac_cv_type_int32_t+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -typedef int32_t ac__type_new_; -int -main () -{ -if ((ac__type_new_ *) 0) - return 0; -if (sizeof (ac__type_new_)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_type_int32_t=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_type_int32_t=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_type_int32_t" >&5 -echo "${ECHO_T}$ac_cv_type_int32_t" >&6; } -if test $ac_cv_type_int32_t = yes; then - : -else - -cat >>confdefs.h <<_ACEOF -#define int32_t long -_ACEOF - -fi - - { echo "$as_me:$LINENO: checking for u_int32_t" >&5 -echo $ECHO_N "checking for u_int32_t... $ECHO_C" >&6; } -if test "${ac_cv_type_u_int32_t+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -typedef u_int32_t ac__type_new_; -int -main () -{ -if ((ac__type_new_ *) 0) - return 0; -if (sizeof (ac__type_new_)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_type_u_int32_t=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_type_u_int32_t=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_type_u_int32_t" >&5 -echo "${ECHO_T}$ac_cv_type_u_int32_t" >&6; } -if test $ac_cv_type_u_int32_t = yes; then - : -else - -cat >>confdefs.h <<_ACEOF -#define u_int32_t unsigned long -_ACEOF - -fi - -else - { { echo "$as_me:$LINENO: error: Cannot find a type with size of 32 bits" >&5 -echo "$as_me: error: Cannot find a type with size of 32 bits" >&2;} - { (exit 1); exit 1; }; } -fi - - -if test "${ac_cv_header_strings_h+set}" = set; then - { echo "$as_me:$LINENO: checking for strings.h" >&5 -echo $ECHO_N "checking for strings.h... $ECHO_C" >&6; } -if test "${ac_cv_header_strings_h+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -fi -{ echo "$as_me:$LINENO: result: $ac_cv_header_strings_h" >&5 -echo "${ECHO_T}$ac_cv_header_strings_h" >&6; } -else - # Is the header compilable? -{ echo "$as_me:$LINENO: checking strings.h usability" >&5 -echo $ECHO_N "checking strings.h usability... $ECHO_C" >&6; } -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -#include <strings.h> -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_header_compiler=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_header_compiler=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -echo "${ECHO_T}$ac_header_compiler" >&6; } - -# Is the header present? -{ echo "$as_me:$LINENO: checking strings.h presence" >&5 -echo $ECHO_N "checking strings.h presence... $ECHO_C" >&6; } -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <strings.h> -_ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - ac_header_preproc=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_header_preproc=no -fi - -rm -f conftest.err conftest.$ac_ext -{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -echo "${ECHO_T}$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in - yes:no: ) - { echo "$as_me:$LINENO: WARNING: strings.h: accepted by the compiler, rejected by the preprocessor!" >&5 -echo "$as_me: WARNING: strings.h: accepted by the compiler, rejected by the preprocessor!" >&2;} - { echo "$as_me:$LINENO: WARNING: strings.h: proceeding with the compiler's result" >&5 -echo "$as_me: WARNING: strings.h: proceeding with the compiler's result" >&2;} - ac_header_preproc=yes - ;; - no:yes:* ) - { echo "$as_me:$LINENO: WARNING: strings.h: present but cannot be compiled" >&5 -echo "$as_me: WARNING: strings.h: present but cannot be compiled" >&2;} - { echo "$as_me:$LINENO: WARNING: strings.h: check for missing prerequisite headers?" >&5 -echo "$as_me: WARNING: strings.h: check for missing prerequisite headers?" >&2;} - { echo "$as_me:$LINENO: WARNING: strings.h: see the Autoconf documentation" >&5 -echo "$as_me: WARNING: strings.h: see the Autoconf documentation" >&2;} - { echo "$as_me:$LINENO: WARNING: strings.h: section \"Present But Cannot Be Compiled\"" >&5 -echo "$as_me: WARNING: strings.h: section \"Present But Cannot Be Compiled\"" >&2;} - { echo "$as_me:$LINENO: WARNING: strings.h: proceeding with the preprocessor's result" >&5 -echo "$as_me: WARNING: strings.h: proceeding with the preprocessor's result" >&2;} - { echo "$as_me:$LINENO: WARNING: strings.h: in the future, the compiler will take precedence" >&5 -echo "$as_me: WARNING: strings.h: in the future, the compiler will take precedence" >&2;} - - ;; -esac -{ echo "$as_me:$LINENO: checking for strings.h" >&5 -echo $ECHO_N "checking for strings.h... $ECHO_C" >&6; } -if test "${ac_cv_header_strings_h+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_header_strings_h=$ac_header_preproc -fi -{ echo "$as_me:$LINENO: result: $ac_cv_header_strings_h" >&5 -echo "${ECHO_T}$ac_cv_header_strings_h" >&6; } - -fi -if test $ac_cv_header_strings_h = yes; then - -cat >>confdefs.h <<\_ACEOF -#define HAVE_STRINGS_H 1 -_ACEOF - -fi - - -if test "${ac_cv_header_sys_select_h+set}" = set; then - { echo "$as_me:$LINENO: checking for sys/select.h" >&5 -echo $ECHO_N "checking for sys/select.h... $ECHO_C" >&6; } -if test "${ac_cv_header_sys_select_h+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -fi -{ echo "$as_me:$LINENO: result: $ac_cv_header_sys_select_h" >&5 -echo "${ECHO_T}$ac_cv_header_sys_select_h" >&6; } -else - # Is the header compilable? -{ echo "$as_me:$LINENO: checking sys/select.h usability" >&5 -echo $ECHO_N "checking sys/select.h usability... $ECHO_C" >&6; } -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -#include <sys/select.h> -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_header_compiler=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_header_compiler=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -echo "${ECHO_T}$ac_header_compiler" >&6; } - -# Is the header present? -{ echo "$as_me:$LINENO: checking sys/select.h presence" >&5 -echo $ECHO_N "checking sys/select.h presence... $ECHO_C" >&6; } -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <sys/select.h> -_ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - ac_header_preproc=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_header_preproc=no -fi - -rm -f conftest.err conftest.$ac_ext -{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -echo "${ECHO_T}$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in - yes:no: ) - { echo "$as_me:$LINENO: WARNING: sys/select.h: accepted by the compiler, rejected by the preprocessor!" >&5 -echo "$as_me: WARNING: sys/select.h: accepted by the compiler, rejected by the preprocessor!" >&2;} - { echo "$as_me:$LINENO: WARNING: sys/select.h: proceeding with the compiler's result" >&5 -echo "$as_me: WARNING: sys/select.h: proceeding with the compiler's result" >&2;} - ac_header_preproc=yes - ;; - no:yes:* ) - { echo "$as_me:$LINENO: WARNING: sys/select.h: present but cannot be compiled" >&5 -echo "$as_me: WARNING: sys/select.h: present but cannot be compiled" >&2;} - { echo "$as_me:$LINENO: WARNING: sys/select.h: check for missing prerequisite headers?" >&5 -echo "$as_me: WARNING: sys/select.h: check for missing prerequisite headers?" >&2;} - { echo "$as_me:$LINENO: WARNING: sys/select.h: see the Autoconf documentation" >&5 -echo "$as_me: WARNING: sys/select.h: see the Autoconf documentation" >&2;} - { echo "$as_me:$LINENO: WARNING: sys/select.h: section \"Present But Cannot Be Compiled\"" >&5 -echo "$as_me: WARNING: sys/select.h: section \"Present But Cannot Be Compiled\"" >&2;} - { echo "$as_me:$LINENO: WARNING: sys/select.h: proceeding with the preprocessor's result" >&5 -echo "$as_me: WARNING: sys/select.h: proceeding with the preprocessor's result" >&2;} - { echo "$as_me:$LINENO: WARNING: sys/select.h: in the future, the compiler will take precedence" >&5 -echo "$as_me: WARNING: sys/select.h: in the future, the compiler will take precedence" >&2;} - - ;; -esac -{ echo "$as_me:$LINENO: checking for sys/select.h" >&5 -echo $ECHO_N "checking for sys/select.h... $ECHO_C" >&6; } -if test "${ac_cv_header_sys_select_h+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_header_sys_select_h=$ac_header_preproc -fi -{ echo "$as_me:$LINENO: result: $ac_cv_header_sys_select_h" >&5 -echo "${ECHO_T}$ac_cv_header_sys_select_h" >&6; } - -fi -if test $ac_cv_header_sys_select_h = yes; then - -cat >>confdefs.h <<\_ACEOF -#define HAVE_SYS_SELECT_H 1 -_ACEOF - -fi - - -if test "${ac_cv_header_execinfo_h+set}" = set; then - { echo "$as_me:$LINENO: checking for execinfo.h" >&5 -echo $ECHO_N "checking for execinfo.h... $ECHO_C" >&6; } -if test "${ac_cv_header_execinfo_h+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -fi -{ echo "$as_me:$LINENO: result: $ac_cv_header_execinfo_h" >&5 -echo "${ECHO_T}$ac_cv_header_execinfo_h" >&6; } -else - # Is the header compilable? -{ echo "$as_me:$LINENO: checking execinfo.h usability" >&5 -echo $ECHO_N "checking execinfo.h usability... $ECHO_C" >&6; } -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -#include <execinfo.h> -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_header_compiler=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_header_compiler=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -echo "${ECHO_T}$ac_header_compiler" >&6; } - -# Is the header present? -{ echo "$as_me:$LINENO: checking execinfo.h presence" >&5 -echo $ECHO_N "checking execinfo.h presence... $ECHO_C" >&6; } -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <execinfo.h> -_ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - ac_header_preproc=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_header_preproc=no -fi - -rm -f conftest.err conftest.$ac_ext -{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -echo "${ECHO_T}$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in - yes:no: ) - { echo "$as_me:$LINENO: WARNING: execinfo.h: accepted by the compiler, rejected by the preprocessor!" >&5 -echo "$as_me: WARNING: execinfo.h: accepted by the compiler, rejected by the preprocessor!" >&2;} - { echo "$as_me:$LINENO: WARNING: execinfo.h: proceeding with the compiler's result" >&5 -echo "$as_me: WARNING: execinfo.h: proceeding with the compiler's result" >&2;} - ac_header_preproc=yes - ;; - no:yes:* ) - { echo "$as_me:$LINENO: WARNING: execinfo.h: present but cannot be compiled" >&5 -echo "$as_me: WARNING: execinfo.h: present but cannot be compiled" >&2;} - { echo "$as_me:$LINENO: WARNING: execinfo.h: check for missing prerequisite headers?" >&5 -echo "$as_me: WARNING: execinfo.h: check for missing prerequisite headers?" >&2;} - { echo "$as_me:$LINENO: WARNING: execinfo.h: see the Autoconf documentation" >&5 -echo "$as_me: WARNING: execinfo.h: see the Autoconf documentation" >&2;} - { echo "$as_me:$LINENO: WARNING: execinfo.h: section \"Present But Cannot Be Compiled\"" >&5 -echo "$as_me: WARNING: execinfo.h: section \"Present But Cannot Be Compiled\"" >&2;} - { echo "$as_me:$LINENO: WARNING: execinfo.h: proceeding with the preprocessor's result" >&5 -echo "$as_me: WARNING: execinfo.h: proceeding with the preprocessor's result" >&2;} - { echo "$as_me:$LINENO: WARNING: execinfo.h: in the future, the compiler will take precedence" >&5 -echo "$as_me: WARNING: execinfo.h: in the future, the compiler will take precedence" >&2;} - - ;; -esac -{ echo "$as_me:$LINENO: checking for execinfo.h" >&5 -echo $ECHO_N "checking for execinfo.h... $ECHO_C" >&6; } -if test "${ac_cv_header_execinfo_h+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_header_execinfo_h=$ac_header_preproc -fi -{ echo "$as_me:$LINENO: result: $ac_cv_header_execinfo_h" >&5 -echo "${ECHO_T}$ac_cv_header_execinfo_h" >&6; } - -fi -if test $ac_cv_header_execinfo_h = yes; then - -cat >>confdefs.h <<\_ACEOF -#define HAVE_BACKTRACE 1 -_ACEOF - -fi - - - - -for ac_func in stricmp -do -as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -{ echo "$as_me:$LINENO: checking for $ac_func" >&5 -echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } -if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. - For example, HP-UX 11i <limits.h> declares gettimeofday. */ -#define $ac_func innocuous_$ac_func - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $ac_func (); below. - Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - <limits.h> exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - -#undef $ac_func - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $ac_func (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$ac_func || defined __stub___$ac_func -choke me -#endif - -int -main () -{ -return $ac_func (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - eval "$as_ac_var=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_var=no" -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -ac_res=`eval echo '${'$as_ac_var'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -if test `eval echo '${'$as_ac_var'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - cat >>confdefs.h <<\_ACEOF -#define HAVE_STRICMP 1 -_ACEOF - -fi -done - - -for ac_func in strcasecmp -do -as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -{ echo "$as_me:$LINENO: checking for $ac_func" >&5 -echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } -if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. - For example, HP-UX 11i <limits.h> declares gettimeofday. */ -#define $ac_func innocuous_$ac_func - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $ac_func (); below. - Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - <limits.h> exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - -#undef $ac_func - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $ac_func (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$ac_func || defined __stub___$ac_func -choke me -#endif - -int -main () -{ -return $ac_func (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - eval "$as_ac_var=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_var=no" -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -ac_res=`eval echo '${'$as_ac_var'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -if test `eval echo '${'$as_ac_var'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - cat >>confdefs.h <<\_ACEOF -#define HAVE_STRCASECMP 1 -_ACEOF - -fi -done - - -for ac_func in gettimeofday -do -as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -{ echo "$as_me:$LINENO: checking for $ac_func" >&5 -echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } -if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. - For example, HP-UX 11i <limits.h> declares gettimeofday. */ -#define $ac_func innocuous_$ac_func - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $ac_func (); below. - Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - <limits.h> exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - -#undef $ac_func - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $ac_func (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$ac_func || defined __stub___$ac_func -choke me -#endif - -int -main () -{ -return $ac_func (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - eval "$as_ac_var=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_var=no" -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -ac_res=`eval echo '${'$as_ac_var'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -if test `eval echo '${'$as_ac_var'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - cat >>confdefs.h <<\_ACEOF -#define HAVE_GETTIMEOFDAY 1 -_ACEOF - -fi -done - - -for ac_func in setgrent -do -as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -{ echo "$as_me:$LINENO: checking for $ac_func" >&5 -echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } -if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. - For example, HP-UX 11i <limits.h> declares gettimeofday. */ -#define $ac_func innocuous_$ac_func - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $ac_func (); below. - Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - <limits.h> exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - -#undef $ac_func - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $ac_func (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$ac_func || defined __stub___$ac_func -choke me -#endif - -int -main () -{ -return $ac_func (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - eval "$as_ac_var=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_var=no" -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -ac_res=`eval echo '${'$as_ac_var'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -if test `eval echo '${'$as_ac_var'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - cat >>confdefs.h <<\_ACEOF -#define HAVE_SETGRENT 1 -_ACEOF - -fi -done - - -for ac_func in umask -do -as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -{ echo "$as_me:$LINENO: checking for $ac_func" >&5 -echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } -if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. - For example, HP-UX 11i <limits.h> declares gettimeofday. */ -#define $ac_func innocuous_$ac_func - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $ac_func (); below. - Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - <limits.h> exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - -#undef $ac_func - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $ac_func (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$ac_func || defined __stub___$ac_func -choke me -#endif - -int -main () -{ -return $ac_func (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - eval "$as_ac_var=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_var=no" -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -ac_res=`eval echo '${'$as_ac_var'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -if test `eval echo '${'$as_ac_var'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - cat >>confdefs.h <<\_ACEOF -#define HAVE_UMASK 1 -_ACEOF - -fi -done - - -for ac_func in fork -do -as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -{ echo "$as_me:$LINENO: checking for $ac_func" >&5 -echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } -if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. - For example, HP-UX 11i <limits.h> declares gettimeofday. */ -#define $ac_func innocuous_$ac_func - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $ac_func (); below. - Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - <limits.h> exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - -#undef $ac_func - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $ac_func (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$ac_func || defined __stub___$ac_func -choke me -#endif - -int -main () -{ -return $ac_func (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - eval "$as_ac_var=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_var=no" -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -ac_res=`eval echo '${'$as_ac_var'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -if test `eval echo '${'$as_ac_var'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - cat >>confdefs.h <<\_ACEOF -#define HAVE_FORK 1 -_ACEOF - -fi -done - - -for ac_func in gethostbyname -do -as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -{ echo "$as_me:$LINENO: checking for $ac_func" >&5 -echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } -if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. - For example, HP-UX 11i <limits.h> declares gettimeofday. */ -#define $ac_func innocuous_$ac_func - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $ac_func (); below. - Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - <limits.h> exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - -#undef $ac_func - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $ac_func (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$ac_func || defined __stub___$ac_func -choke me -#endif - -int -main () -{ -return $ac_func (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - eval "$as_ac_var=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_var=no" -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -ac_res=`eval echo '${'$as_ac_var'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -if test `eval echo '${'$as_ac_var'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - cat >>confdefs.h <<\_ACEOF -#define HAVE_GETHOSTBYNAME 1 -_ACEOF - -fi -done - - -for ac_func in gethostbyname_r -do -as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -{ echo "$as_me:$LINENO: checking for $ac_func" >&5 -echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } -if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. - For example, HP-UX 11i <limits.h> declares gettimeofday. */ -#define $ac_func innocuous_$ac_func - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $ac_func (); below. - Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - <limits.h> exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - -#undef $ac_func - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $ac_func (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$ac_func || defined __stub___$ac_func -choke me -#endif - -int -main () -{ -return $ac_func (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - eval "$as_ac_var=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_var=no" -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -ac_res=`eval echo '${'$as_ac_var'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -if test `eval echo '${'$as_ac_var'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - cat >>confdefs.h <<\_ACEOF -#define HAVE_GETHOSTBYNAME_R 1 -_ACEOF - -fi -done - - -for ac_func in strlcpy -do -as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -{ echo "$as_me:$LINENO: checking for $ac_func" >&5 -echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } -if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. - For example, HP-UX 11i <limits.h> declares gettimeofday. */ -#define $ac_func innocuous_$ac_func - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $ac_func (); below. - Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - <limits.h> exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - -#undef $ac_func - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $ac_func (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$ac_func || defined __stub___$ac_func -choke me -#endif - -int -main () -{ -return $ac_func (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - eval "$as_ac_var=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_var=no" -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -ac_res=`eval echo '${'$as_ac_var'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -if test `eval echo '${'$as_ac_var'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - cat >>confdefs.h <<\_ACEOF -#define HAVE_STRLCPY 1 -_ACEOF - -fi -done - - -for ac_func in strlcat -do -as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -{ echo "$as_me:$LINENO: checking for $ac_func" >&5 -echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } -if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. - For example, HP-UX 11i <limits.h> declares gettimeofday. */ -#define $ac_func innocuous_$ac_func - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $ac_func (); below. - Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - <limits.h> exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - -#undef $ac_func - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $ac_func (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$ac_func || defined __stub___$ac_func -choke me -#endif - -int -main () -{ -return $ac_func (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - eval "$as_ac_var=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_var=no" -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -ac_res=`eval echo '${'$as_ac_var'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -if test `eval echo '${'$as_ac_var'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - cat >>confdefs.h <<\_ACEOF -#define HAVE_STRLCAT 1 -_ACEOF - -fi -done - - - -# Check whether --with-rungroup was given. -if test "${with_rungroup+set}" = set; then - withval=$with_rungroup; - -cat >>confdefs.h <<_ACEOF -#define RUNGROUP "$withval" -_ACEOF - - RUNGROUP=$withval - -fi - - - - - - -# Check whether --with-permissions was given. -if test "${with_permissions+set}" = set; then - withval=$with_permissions; -cat >>confdefs.h <<_ACEOF -#define DEFUMASK $withval -_ACEOF - -else - -cat >>confdefs.h <<\_ACEOF -#define DEFUMASK 007 -_ACEOF - -fi - - - -# Check whether --with-bindir was given. -if test "${with_bindir+set}" = set; then - withval=$with_bindir; - -cat >>confdefs.h <<_ACEOF -#define SERVICES_BIN "${withval}/services" -_ACEOF - - BINDEST=$withval - DATDEST=$withval - MODULE_PATH=${withval}/modules/ - -fi - - -MAKEBIN=`pwd`/run-cc.pl - - -# Check whether --with-makebin was given. -if test "${with_makebin+set}" = set; then - withval=$with_makebin; MAKEBIN=$withval -fi - - - - - - -# Check whether --with-datadir was given. -if test "${with_datadir+set}" = set; then - withval=$with_datadir; - -cat >>confdefs.h <<_ACEOF -#define SERVICES_DIR "$withval" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define MODULE_PATH "${withval}/modules/" -_ACEOF - - DATDEST=$withval - MODULE_PATH=${withval}/modules/ - -fi - - - - - - -# Check whether --with-optimization was given. -if test "${with_optimization+set}" = set; then - withval=$with_optimization; - CFLAGS="$CFLAGS -O$withval" - -fi - - - -# Check whether --with-debugsym was given. -if test "${with_debugsym+set}" = set; then - withval=$with_debugsym; - CFLAGS="$CFLAGS -g" - -fi - - - -ac_config_files="$ac_config_files Makefile src/bin/anoperc" - - -cat >confcache <<\_ACEOF -# This file is a shell script that caches the results of configure -# tests run on this system so they can be shared between configure -# scripts and configure runs, see configure's option --config-cache. -# It is not useful on other systems. If it contains results you don't -# want to keep, you may remove or edit it. -# -# config.status only pays attention to the cache file if you give it -# the --recheck option to rerun configure. -# -# `ac_cv_env_foo' variables (set or unset) will be overridden when -# loading this file, other *unset* `ac_cv_foo' will be assigned the -# following values. - -_ACEOF - -# The following way of writing the cache mishandles newlines in values, -# but we know of no workaround that is simple, portable, and efficient. -# So, we kill variables containing newlines. -# Ultrix sh set writes to stderr and can't be redirected directly, -# and sets the high bit in the cache file unless we assign to the vars. -( - for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 -echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - *) $as_unset $ac_var ;; - esac ;; - esac - done - - (set) 2>&1 | - case $as_nl`(ac_space=' '; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - # `set' does not quote correctly, so add quotes (double-quote - # substitution turns \\\\ into \\, and sed turns \\ into \). - sed -n \ - "s/'/'\\\\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" - ;; #( - *) - # `set' quotes correctly as required by POSIX, so do not add quotes. - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) | - sed ' - /^ac_cv_env_/b end - t clear - :clear - s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ - t end - s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ - :end' >>confcache -if diff "$cache_file" confcache >/dev/null 2>&1; then :; else - if test -w "$cache_file"; then - test "x$cache_file" != "x/dev/null" && - { echo "$as_me:$LINENO: updating cache $cache_file" >&5 -echo "$as_me: updating cache $cache_file" >&6;} - cat confcache >$cache_file - else - { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 -echo "$as_me: not updating unwritable cache $cache_file" >&6;} - fi -fi -rm -f confcache - -test "x$prefix" = xNONE && prefix=$ac_default_prefix -# Let make expand exec_prefix. -test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - -DEFS=-DHAVE_CONFIG_H - -ac_libobjs= -ac_ltlibobjs= -for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue - # 1. Remove the extension, and $U if already installed. - ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' - ac_i=`echo "$ac_i" | sed "$ac_script"` - # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR - # will be set to the directory where LIBOBJS objects are built. - ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" - ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' -done -LIBOBJS=$ac_libobjs - -LTLIBOBJS=$ac_ltlibobjs - - - -: ${CONFIG_STATUS=./config.status} -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 -echo "$as_me: creating $CONFIG_STATUS" >&6;} -cat >$CONFIG_STATUS <<_ACEOF -#! $SHELL -# Generated by $as_me. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false -SHELL=\${CONFIG_SHELL-$SHELL} -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; -esac - -fi - - - - -# PATH needs CR -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - as_unset=unset -else - as_unset=false -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -as_nl=' -' -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - { (exit 1); exit 1; } -fi - -# Work around bugs in pre-3.0 UWIN ksh. -for as_var in ENV MAIL MAILPATH -do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var - fi -done - -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - - -# Name of the executable. -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# CDPATH. -$as_unset CDPATH - - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line after each line using $LINENO; the second 'sed' - # does the real work. The second script uses 'N' to pair each - # line-number line with the line containing $LINENO, and appends - # trailing '-' during substitution so that $LINENO is not a special - # case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # scripts with optimization help from Paolo Bonzini. Blame Lee - # E. McMahon (1931-1989) for sed's syntax. :-) - sed -n ' - p - /[$]LINENO/= - ' <$as_myself | - sed ' - s/[$]LINENO.*/&-/ - t lineno - b - :lineno - N - :loop - s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ - t loop - s/-\n.*// - ' >$as_me.lineno && - chmod +x "$as_me.lineno" || - { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 - { (exit 1); exit 1; }; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). - . "./$as_me.lineno" - # Exit status is that of the last command. - exit -} - - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in --n*) - case `echo 'x\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - *) ECHO_C='\c';; - esac;; -*) - ECHO_N='-n';; -esac - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir -fi -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -p' -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - -if mkdir -p . 2>/dev/null; then - as_mkdir_p=: -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -exec 6>&1 - -# Save the log message, to keep $[0] and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. -ac_log=" -This file was extended by $as_me, which was -generated by GNU Autoconf 2.61. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -on `(hostname || uname -n) 2>/dev/null | sed 1q` -" - -_ACEOF - -cat >>$CONFIG_STATUS <<_ACEOF -# Files that config.status was made for. -config_files="$ac_config_files" -config_headers="$ac_config_headers" - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -ac_cs_usage="\ -\`$as_me' instantiates files from templates according to the -current configuration. - -Usage: $0 [OPTIONS] [FILE]... - - -h, --help print this help, then exit - -V, --version print version number and configuration settings, then exit - -q, --quiet do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Report bugs to <bug-autoconf@gnu.org>." - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF -ac_cs_version="\\ -config.status -configured by $0, generated by GNU Autoconf 2.61, - with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" - -Copyright (C) 2006 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." - -ac_pwd='$ac_pwd' -srcdir='$srcdir' -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -# If no file are specified by the user, then we need to provide default -# value. By we need to know if files were specified by the user. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=*) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` - ac_shift=: - ;; - *) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - esac - - case $ac_option in - # Handling of the options. - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) - echo "$ac_cs_version"; exit ;; - --debug | --debu | --deb | --de | --d | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - CONFIG_FILES="$CONFIG_FILES $ac_optarg" - ac_need_defaults=false;; - --header | --heade | --head | --hea ) - $ac_shift - CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" - ac_need_defaults=false;; - --he | --h) - # Conflict between --help and --header - { echo "$as_me: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; };; - --help | --hel | -h ) - echo "$ac_cs_usage"; exit ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) { echo "$as_me: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; } ;; - - *) ac_config_targets="$ac_config_targets $1" - ac_need_defaults=false ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF -if \$ac_cs_recheck; then - echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 - CONFIG_SHELL=$SHELL - export CONFIG_SHELL - exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion -fi - -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX - echo "$ac_log" -} >&5 - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF - -# Handling of arguments. -for ac_config_target in $ac_config_targets -do - case $ac_config_target in - "include/sysconf.h") CONFIG_HEADERS="$CONFIG_HEADERS include/sysconf.h" ;; - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "src/bin/anoperc") CONFIG_FILES="$CONFIG_FILES src/bin/anoperc" ;; - - *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 -echo "$as_me: error: invalid argument: $ac_config_target" >&2;} - { (exit 1); exit 1; }; };; - esac -done - - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason against having it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Hook for its removal unless debugging. -# Note that there is a small window in which the directory will not be cleaned: -# after its creation but before its name has been assigned to `$tmp'. -$debug || -{ - tmp= - trap 'exit_status=$? - { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status -' 0 - trap '{ (exit 1); exit 1; }' 1 2 13 15 -} -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && - test -n "$tmp" && test -d "$tmp" -} || -{ - tmp=./conf$$-$RANDOM - (umask 077 && mkdir "$tmp") -} || -{ - echo "$me: cannot create a temporary directory in ." >&2 - { (exit 1); exit 1; } -} - -# -# Set up the sed scripts for CONFIG_FILES section. -# - -# No need to generate the scripts if there are no CONFIG_FILES. -# This happens for instance when ./config.status config.h -if test -n "$CONFIG_FILES"; then - -_ACEOF - - - -ac_delim='%!_!# ' -for ac_last_try in false false false false false :; do - cat >conf$$subs.sed <<_ACEOF -SHELL!$SHELL$ac_delim -PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim -PACKAGE_NAME!$PACKAGE_NAME$ac_delim -PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim -PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim -PACKAGE_STRING!$PACKAGE_STRING$ac_delim -PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim -exec_prefix!$exec_prefix$ac_delim -prefix!$prefix$ac_delim -program_transform_name!$program_transform_name$ac_delim -bindir!$bindir$ac_delim -sbindir!$sbindir$ac_delim -libexecdir!$libexecdir$ac_delim -datarootdir!$datarootdir$ac_delim -datadir!$datadir$ac_delim -sysconfdir!$sysconfdir$ac_delim -sharedstatedir!$sharedstatedir$ac_delim -localstatedir!$localstatedir$ac_delim -includedir!$includedir$ac_delim -oldincludedir!$oldincludedir$ac_delim -docdir!$docdir$ac_delim -infodir!$infodir$ac_delim -htmldir!$htmldir$ac_delim -dvidir!$dvidir$ac_delim -pdfdir!$pdfdir$ac_delim -psdir!$psdir$ac_delim -libdir!$libdir$ac_delim -localedir!$localedir$ac_delim -mandir!$mandir$ac_delim -DEFS!$DEFS$ac_delim -ECHO_C!$ECHO_C$ac_delim -ECHO_N!$ECHO_N$ac_delim -ECHO_T!$ECHO_T$ac_delim -LIBS!$LIBS$ac_delim -build_alias!$build_alias$ac_delim -host_alias!$host_alias$ac_delim -target_alias!$target_alias$ac_delim -CC!$CC$ac_delim -CFLAGS!$CFLAGS$ac_delim -LDFLAGS!$LDFLAGS$ac_delim -CPPFLAGS!$CPPFLAGS$ac_delim -ac_ct_CC!$ac_ct_CC$ac_delim -EXEEXT!$EXEEXT$ac_delim -OBJEXT!$OBJEXT$ac_delim -RM!$RM$ac_delim -CP!$CP$ac_delim -TOUCH!$TOUCH$ac_delim -INSTALL!$INSTALL$ac_delim -MYSQLCONF!$MYSQLCONF$ac_delim -ANOPELIBS!$ANOPELIBS$ac_delim -CPP!$CPP$ac_delim -GREP!$GREP$ac_delim -EGREP!$EGREP$ac_delim -SHARED!$SHARED$ac_delim -MODULEFLAGS!$MODULEFLAGS$ac_delim -RUNGROUP!$RUNGROUP$ac_delim -BINDEST!$BINDEST$ac_delim -MAKEBIN!$MAKEBIN$ac_delim -DATDEST!$DATDEST$ac_delim -MODULE_PATH!$MODULE_PATH$ac_delim -LIBOBJS!$LIBOBJS$ac_delim -LTLIBOBJS!$LTLIBOBJS$ac_delim -_ACEOF - - if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 62; then - break - elif $ac_last_try; then - { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 -echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} - { (exit 1); exit 1; }; } - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done - -ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` -if test -n "$ac_eof"; then - ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` - ac_eof=`expr $ac_eof + 1` -fi - -cat >>$CONFIG_STATUS <<_ACEOF -cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end -_ACEOF -sed ' -s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g -s/^/s,@/; s/!/@,|#_!!_#|/ -:n -t n -s/'"$ac_delim"'$/,g/; t -s/$/\\/; p -N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n -' >>$CONFIG_STATUS <conf$$subs.sed -rm -f conf$$subs.sed -cat >>$CONFIG_STATUS <<_ACEOF -:end -s/|#_!!_#|//g -CEOF$ac_eof -_ACEOF - - -# VPATH may cause trouble with some makes, so we remove $(srcdir), -# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and -# trailing colons and then remove the whole line if VPATH becomes empty -# (actually we leave an empty line to preserve line numbers). -if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=/{ -s/:*\$(srcdir):*/:/ -s/:*\${srcdir}:*/:/ -s/:*@srcdir@:*/:/ -s/^\([^=]*=[ ]*\):*/\1/ -s/:*$// -s/^[^=]*=[ ]*$// -}' -fi - -cat >>$CONFIG_STATUS <<\_ACEOF -fi # test -n "$CONFIG_FILES" - - -for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS -do - case $ac_tag in - :[FHLC]) ac_mode=$ac_tag; continue;; - esac - case $ac_mode$ac_tag in - :[FHL]*:*);; - :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 -echo "$as_me: error: Invalid tag $ac_tag." >&2;} - { (exit 1); exit 1; }; };; - :[FH]-) ac_tag=-:-;; - :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; - esac - ac_save_IFS=$IFS - IFS=: - set x $ac_tag - IFS=$ac_save_IFS - shift - ac_file=$1 - shift - - case $ac_mode in - :L) ac_source=$1;; - :[FH]) - ac_file_inputs= - for ac_f - do - case $ac_f in - -) ac_f="$tmp/stdin";; - *) # Look for the file first in the build tree, then in the source tree - # (if the path is not absolute). The absolute path cannot be DOS-style, - # because $ac_f cannot contain `:'. - test -f "$ac_f" || - case $ac_f in - [\\/$]*) false;; - *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; - esac || - { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 -echo "$as_me: error: cannot find input file: $ac_f" >&2;} - { (exit 1); exit 1; }; };; - esac - ac_file_inputs="$ac_file_inputs $ac_f" - done - - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - configure_input="Generated from "`IFS=: - echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." - if test x"$ac_file" != x-; then - configure_input="$ac_file. $configure_input" - { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - fi - - case $ac_tag in - *:-:* | *:-) cat >"$tmp/stdin";; - esac - ;; - esac - - ac_dir=`$as_dirname -- "$ac_file" || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || -echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - { as_dir="$ac_dir" - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 -echo "$as_me: error: cannot create directory $as_dir" >&2;} - { (exit 1); exit 1; }; }; } - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - - case $ac_mode in - :F) - # - # CONFIG_FILE - # - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -# If the template does not know about datarootdir, expand it. -# FIXME: This hack should be removed a few years after 2.60. -ac_datarootdir_hack=; ac_datarootdir_seen= - -case `sed -n '/datarootdir/ { - p - q -} -/@datadir@/p -/@docdir@/p -/@infodir@/p -/@localedir@/p -/@mandir@/p -' $ac_file_inputs` in -*datarootdir*) ac_datarootdir_seen=yes;; -*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) - { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF - ac_datarootdir_hack=' - s&@datadir@&$datadir&g - s&@docdir@&$docdir&g - s&@infodir@&$infodir&g - s&@localedir@&$localedir&g - s&@mandir@&$mandir&g - s&\\\${datarootdir}&$datarootdir&g' ;; -esac -_ACEOF - -# Neutralize VPATH when `$srcdir' = `.'. -# Shell code in configure.ac might set extrasub. -# FIXME: do we really want to maintain this feature? -cat >>$CONFIG_STATUS <<_ACEOF - sed "$ac_vpsub -$extrasub -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s&@configure_input@&$configure_input&;t t -s&@top_builddir@&$ac_top_builddir_sub&;t t -s&@srcdir@&$ac_srcdir&;t t -s&@abs_srcdir@&$ac_abs_srcdir&;t t -s&@top_srcdir@&$ac_top_srcdir&;t t -s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t -s&@builddir@&$ac_builddir&;t t -s&@abs_builddir@&$ac_abs_builddir&;t t -s&@abs_top_builddir@&$ac_abs_top_builddir&;t t -$ac_datarootdir_hack -" $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out - -test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && - { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && - { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&5 -echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&2;} - - rm -f "$tmp/stdin" - case $ac_file in - -) cat "$tmp/out"; rm -f "$tmp/out";; - *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; - esac - ;; - :H) - # - # CONFIG_HEADER - # -_ACEOF - -# Transform confdefs.h into a sed script `conftest.defines', that -# substitutes the proper values into config.h.in to produce config.h. -rm -f conftest.defines conftest.tail -# First, append a space to every undef/define line, to ease matching. -echo 's/$/ /' >conftest.defines -# Then, protect against being on the right side of a sed subst, or in -# an unquoted here document, in config.status. If some macros were -# called several times there might be several #defines for the same -# symbol, which is useless. But do not sort them, since the last -# AC_DEFINE must be honored. -ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* -# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where -# NAME is the cpp macro being defined, VALUE is the value it is being given. -# PARAMS is the parameter list in the macro definition--in most cases, it's -# just an empty string. -ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' -ac_dB='\\)[ (].*,\\1define\\2' -ac_dC=' ' -ac_dD=' ,' - -uniq confdefs.h | - sed -n ' - t rset - :rset - s/^[ ]*#[ ]*define[ ][ ]*// - t ok - d - :ok - s/[\\&,]/\\&/g - s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p - s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p - ' >>conftest.defines - -# Remove the space that was appended to ease matching. -# Then replace #undef with comments. This is necessary, for -# example, in the case of _POSIX_SOURCE, which is predefined and required -# on some systems where configure will not decide to define it. -# (The regexp can be short, since the line contains either #define or #undef.) -echo 's/ $// -s,^[ #]*u.*,/* & */,' >>conftest.defines - -# Break up conftest.defines: -ac_max_sed_lines=50 - -# First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" -# Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" -# Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1" -# et cetera. -ac_in='$ac_file_inputs' -ac_out='"$tmp/out1"' -ac_nxt='"$tmp/out2"' - -while : -do - # Write a here document: - cat >>$CONFIG_STATUS <<_ACEOF - # First, check the format of the line: - cat >"\$tmp/defines.sed" <<\\CEOF -/^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def -/^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def -b -:def -_ACEOF - sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS - echo 'CEOF - sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS - ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in - sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail - grep . conftest.tail >/dev/null || break - rm -f conftest.defines - mv conftest.tail conftest.defines -done -rm -f conftest.defines conftest.tail - -echo "ac_result=$ac_in" >>$CONFIG_STATUS -cat >>$CONFIG_STATUS <<\_ACEOF - if test x"$ac_file" != x-; then - echo "/* $configure_input */" >"$tmp/config.h" - cat "$ac_result" >>"$tmp/config.h" - if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then - { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 -echo "$as_me: $ac_file is unchanged" >&6;} - else - rm -f $ac_file - mv "$tmp/config.h" $ac_file - fi - else - echo "/* $configure_input */" - cat "$ac_result" - fi - rm -f "$tmp/out12" - ;; - - - esac - -done # for ac_tag - - -{ (exit 0); exit 0; } -_ACEOF -chmod +x $CONFIG_STATUS -ac_clean_files=$ac_clean_files_save - - -# configure is writing to config.log, and then calls config.status. -# config.status does its own redirection, appending to config.log. -# Unfortunately, on DOS this fails, as config.log is still kept open -# by configure, so config.status won't be able to write to it; its -# output is simply discarded. So we exec the FD to /dev/null, -# effectively closing config.log, so it can be properly (re)opened and -# appended to by config.status. When coming back to configure, we -# need to make the FD available again. -if test "$no_create" != yes; then - ac_cs_success=: - ac_config_status_args= - test "$silent" = yes && - ac_config_status_args="$ac_config_status_args --quiet" - exec 5>/dev/null - $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false - exec 5>>config.log - # Use ||, not &&, to avoid exiting from the if with $? = 1, which - # would make configure fail if this is the last instruction. - $ac_cs_success || { (exit 1); exit 1; } -fi - - -cat <<EOT - -$DIS_MODULES -$DIS_MYSQL - - - -All done! Now run "make" (or possibly "gmake") to compile Anope. -See the INSTALL, README and FAQ files if you have any problems. -EOT - diff --git a/configure.in b/configure.in deleted file mode 100644 index b0556ed63..000000000 --- a/configure.in +++ /dev/null @@ -1,303 +0,0 @@ -dnl autoconf.in for Services. -dnl -dnl Anope (c) 2003-2007 Anope team -dnl Contact us at dev@anope.org - -dnl This program is free but copyrighted software; see the file COPYING for -dnl details. - -dnl Based heavily on the Unreal configure.in script, and extra thanks to -dnl codemastr from UnrealIRCD. - -AC_INIT - -# Clear out any CFLAGS (cept -g) the os is using, usually -g -O2 -CFLAGS="-g" - -# If no bindir, we tell him to run ./Config. -if test "${with_bindir+set}" != set || test "${with_datadir+set}" != set; then - echo "You might want to run ./Config or provide some parameters to this script." - echo "./configure --help for information about this script" - exit 0 -fi - -AC_CONFIG_SRCDIR([src/actions.c]) -AC_CONFIG_HEADER(include/sysconf.h) -AC_PROG_CC -if test "$ac_cv_c_compiler_gnu" = "yes"; then -# CFLAGS="$CFLAGS -funsigned-char" - AC_CACHE_CHECK(if gcc has a working -pipe, ac_cv_pipe, [ - save_cflags="$CFLAGS" - CFLAGS="$CFLAGS -pipe" - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],[ac_cv_pipe="yes"],[ac_cv_pipe="no"]) - CFLAGS="$save_cflags" - ]) - if test "$ac_cv_pipe" = "yes"; then - CFLAGS="-pipe $CFLAGS" - fi -fi - -dnl CFLAGS="$CFLAGS -W -Wall" - -AC_PATH_PROG(RM,rm) -AC_PATH_PROG(CP,cp) -AC_PATH_PROG(TOUCH,touch) -AC_PATH_PROG(INSTALL,install) -AC_CHECK_LIB(nsl,inet_ntoa,ANOPELIBS="$ANOPELIBS-lnsl ") -AC_CHECK_LIB(socket, socket,ANOPELIBS="$ANOPELIBS-lsocket ") -AC_CHECK_LIB(resolv, res_query,ANOPELIBS="$ANOPELIBS-lresolv ") -AC_CHECK_LIB(bsd, revoke,ANOPELIBS="$ANOPELIBS-lbsd ") - -dnl Does this platform require array notation to assign to a va_list? -dnl If cross-compiling, we assume va_list is "normal". If this breaks -dnl you, set ac_cv_valistisarray=true and maybe define HAVE_VA_LIST_AS_ARRAY -dnl also just to be sure. - -dnl NOTE: this autoconf test is taken from mozilla: www.mozilla.org. - -AC_MSG_CHECKING(whether va_list assignments need array notation) -AC_CACHE_VAL(ac_cv_valistisarray, - [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdlib.h> - #include <stdarg.h> - void foo(int i, ...) { - va_list ap1, ap2; - va_start(ap1, i); - ap2 = ap1; - if (va_arg(ap2, int) != 123 || va_arg(ap1, int) != 123) { exit(1); } - va_end(ap1); va_end(ap2); - } - int main() - { foo(0, 123); return(0); }]])],[ac_cv_valistisarray=false],[ac_cv_valistisarray=true],[ac_cv_valistisarray=false])]) - -if test "$ac_cv_valistisarray" = true ; then - AC_DEFINE(HAVE_VA_LIST_AS_ARRAY,[1],[va_list as array]) - AC_MSG_RESULT(yes) -else - AC_MSG_RESULT(no) -fi - - -DIS_MYSQL=" MySQL: No" -AC_ARG_WITH(mysql, [ --without-mysql Do not use MySQL or attempt to find it],,[ - AC_ARG_WITH(mysqlconfig-path, [ --with-mysqlconfig-path=PATH Complete path to the mysql_config executable], - mysql_config_path="$withval", mysql_config_path="") - MYSQLCONF="" - if test "$mysql_config_path" != ""; then - if test -x "$mysql_config_path"; then - MYSQLCONF="$mysql_config_path" - echo "checking for mysql_config... $MYSQLCONF" >&6 - fi - fi - if test "$MYSQLCONF" = ""; then - AC_PATH_PROG(MYSQLCONF,mysql_config, "") - fi - if test "$MYSQLCONF" != ""; then - hold_cflags="$CFLAGS" - hold_ldflags="$LDFLAGS" - if test "$MYSQL_CFLAGS" = ""; then - MYSQL_CFLAGS="`$MYSQLCONF --cflags`" - fi - if test "$MYSQL_LDFLAGS" = ""; then - MYSQL_LDFLAGS="`$MYSQLCONF --libs`" - fi - CFLAGS="$CFLAGS $MYSQL_CFLAGS" - LDFLAGS="$LDFLAGS $MYSQL_LDFLAGS" - echo $ECHO_N "checking if mysql_config produces valid values... $ECHO_C" >&6 - AC_TRY_RUN([ -#include <mysql.h> - -int main() -{ - MYSQL *mysql = mysql_init(0); - - return 0; -} - ], ac_cv_mysql_valid=yes, ac_cv_mysql_valid=no) - echo $ac_cv_mysql_valid >&6 - if test "$ac_cv_mysql_valid" = "yes"; then - DIS_MYSQL=" MySQL: Yes" - else - CFLAGS="$hold_cflags" - LDFLAGS="$hold_ldflags" - fi - fi -]) - -AC_MSG_CHECKING(whether this is a bit or little endian system) -AC_TRY_RUN([ -int main() -{ - short s = 1; - short* ptr = &s; - unsigned char c = *((char*)ptr); - return c; -} -] -, AC_DEFINE(BIG_ENDIAN) - AC_MSG_RESULT(big) -, AC_DEFINE(LITTLE_ENDIAN) - AC_MSG_RESULT(little) -) - -AC_SUBST(ANOPELIBS) -AC_SUBST(LDFLAGS) - -AC_CHECK_HEADER(sys/types.h,AC_DEFINE(HAS_SYS_TYPES_H,1,"Has sys/types.h")) -dnl module checking based on Unreal's module checking code -AC_DEFUN(AC_ENABLE_DYN, -[ -AC_CHECK_FUNC(dlopen,, AC_CHECK_LIB(dl,dlopen,[ - ANOPELIBS="$ANOPELIBS -ldl" -], -[ - AC_ERROR("dlopen() is required for Anope to be compiled and used. Sorry.") -])) - -hold_cflags=$CFLAGS -CFLAGS="$CFLAGS -export-dynamic" -AC_CACHE_CHECK(if we need the -export-dynamic flag, ac_cv_export_dynamic, [ -AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[int i;]])],[ac_cv_export_dynamic=yes],[ac_cv_export_dynamic=no])]) -if test "$ac_cv_export_dynamic" = "no"; then -CFLAGS=$hold_cflags -fi - -AC_CACHE_CHECK(for compiler option to produce PIC,ac_cv_pic,[ -if test "$ac_cv_c_compiler_gnu" = "yes"; then - ac_cv_pic="-fPIC -DPIC -shared" - case `uname -s` in - Darwin*[)] - ac_cv_pic="-bundle -flat_namespace -undefined suppress" - ;; - HP-UX*[)] - ac_cv_pic="-fPIC" - ;; - esac -else -case `uname -s` in - SunOS*[)] - ac_cv_pic="-KPIC -DPIC -G" - ;; -esac - -fi - -]) - -if test "$ac_cv_c_compiler_gnu" = "yes"; then - case `uname -s` in - Darwin*[)] - SHARED="-bundle -flat_namespace -undefined suppress" - AC_SUBST(SHARED) - ;; - *[)] - SHARED="-shared" - AC_SUBST(SHARED) - ;; - esac -fi - -AC_CACHE_CHECK(if your system prepends an underscore on symbols,ac_cv_underscore,[ -cat >uscore.c << __EOF__ -int main() { -return 0; -} -__EOF__ -$CC -o uscore $CFLAGS uscore.c 1>&5 -if test -z "`strings -a uscore |grep '^_main$'`"; then - ac_cv_underscore=no -else - ac_cv_underscore=yes -fi - -rm -f uscore uscore.c -]) -if test "$ac_cv_underscore" = "yes"; then -AC_DEFINE(DL_PREFIX,"_","Underscore needed for dlopen") -else -AC_DEFINE(DL_PREFIX,"","No prefix needed for dlopen") -fi - -MODULEFLAGS=$ac_cv_pic -AC_SUBST(MODULEFLAGS) -]) - -AC_ENABLE_DYN -anope_CHECK_TYPE_SIZES - -AC_CHECK_HEADER(strings.h,AC_DEFINE(HAVE_STRINGS_H,1,"")) -AC_CHECK_HEADER(sys/select.h,AC_DEFINE(HAVE_SYS_SELECT_H,1,"")) -AC_CHECK_HEADER(execinfo.h,AC_DEFINE(HAVE_BACKTRACE,1,"")) - -AC_CHECK_FUNCS(stricmp,AC_DEFINE(HAVE_STRICMP,1)) -AC_CHECK_FUNCS(strcasecmp,AC_DEFINE(HAVE_STRCASECMP,1)) -AC_CHECK_FUNCS(gettimeofday,AC_DEFINE(HAVE_GETTIMEOFDAY,1)) -AC_CHECK_FUNCS(setgrent,AC_DEFINE(HAVE_SETGRENT,1)) -AC_CHECK_FUNCS(umask,AC_DEFINE(HAVE_UMASK,1)) -AC_CHECK_FUNCS(fork,AC_DEFINE(HAVE_FORK,1)) -AC_CHECK_FUNCS(gethostbyname,AC_DEFINE(HAVE_GETHOSTBYNAME,1)) -AC_CHECK_FUNCS(gethostbyname_r,AC_DEFINE(HAVE_GETHOSTBYNAME_R,1)) -AC_CHECK_FUNCS(strlcpy,AC_DEFINE(HAVE_STRLCPY,1)) -AC_CHECK_FUNCS(strlcat,AC_DEFINE(HAVE_STRLCAT,1)) - -AC_ARG_WITH(rungroup, [ --with-rungroup=group Specify the rungroup for anope], [ - AC_DEFINE_UNQUOTED(RUNGROUP,"$withval","Run group") - RUNGROUP=$withval -]) - -AC_SUBST(RUNGROUP) - -dnl AC_DEFINE_UNQUOTED(MYOSNAME,"`uname -a`","uname") - -AC_ARG_WITH(permissions, [ --with-permissions=permissions Specify the default permissions for anope], AC_DEFINE_UNQUOTED(DEFUMASK,$withval,"Default umask permissions"), AC_DEFINE(DEFUMASK, 007,"Default umask Permissions")) - -AC_ARG_WITH(bindir, [ --with-bindir=bindir Specify the default binary dir for anope], [ - AC_DEFINE_UNQUOTED(SERVICES_BIN,"${withval}/services","Binary Dir") - BINDEST=$withval - DATDEST=$withval - MODULE_PATH=${withval}/modules/ -]) - -MAKEBIN=`pwd`/run-cc.pl - -AC_ARG_WITH(makebin, [--with-makebin=run-cc.pl Specify the default make binary to use],[MAKEBIN=$withval]) - -AC_SUBST(BINDEST) -AC_SUBST(MAKEBIN) - -AC_ARG_WITH(datadir, [ --with-datadir=datadir Specify the location of the services data folder], [ - AC_DEFINE_UNQUOTED(SERVICES_DIR,"$withval","services bin dir") - AC_DEFINE_UNQUOTED(MODULE_PATH,"${withval}/modules/","Module dir") - DATDEST=$withval - MODULE_PATH=${withval}/modules/ -]) - -AC_SUBST(DATDEST) -AC_SUBST(MODULE_PATH) - -AC_ARG_WITH(optimization, [ --with-optimisation=1|2|3|4|5 Specify the optimisation level], [ - CFLAGS="$CFLAGS -O$withval" -]) - -AC_ARG_WITH(debugsym, [ --with-debugsym Include debugging symbols], [ - CFLAGS="$CFLAGS -g" -]) - - -AC_CONFIG_FILES( \ - Makefile \ - src/bin/anoperc \ -) - -AC_OUTPUT - -cat <<EOT - -$DIS_MODULES -$DIS_MYSQL - - - -All done! Now run "make" (or possibly "gmake") to compile Anope. -See the INSTALL, README and FAQ files if you have any problems. -EOT - diff --git a/include/Makefile b/include/Makefile deleted file mode 100644 index 0f6f17e9b..000000000 --- a/include/Makefile +++ /dev/null @@ -1,182 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.6 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/local/bin/cmake - -# The command to remove a file. -RM = /usr/local/bin/cmake -E remove -f - -# The program to use to edit the cache. -CMAKE_EDIT_COMMAND = /usr/local/bin/ccmake - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /celes/anope - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /celes/anope - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." - cd /celes/anope/include && /usr/local/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - cd /celes/anope/include && /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - cd /celes/anope/include && /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." - cd /celes/anope/include && /usr/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." - cd /celes/anope/include && /usr/local/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." - cd /celes/anope/include && /usr/local/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# The main all target -all: cmake_check_build_system - cd /celes/anope && $(CMAKE_COMMAND) -E cmake_progress_start /celes/anope/CMakeFiles /celes/anope/include/CMakeFiles/progress.make - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 include/all - $(CMAKE_COMMAND) -E cmake_progress_start /celes/anope/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 include/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 include/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 include/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /celes/anope && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -include/CMakeFiles/headers.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 include/CMakeFiles/headers.dir/rule -.PHONY : include/CMakeFiles/headers.dir/rule - -# Convenience name for target. -headers: include/CMakeFiles/headers.dir/rule -.PHONY : headers - -# fast build rule for target. -headers/fast: - cd /celes/anope && $(MAKE) -f include/CMakeFiles/headers.dir/build.make include/CMakeFiles/headers.dir/build -.PHONY : headers/fast - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... headers" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /celes/anope && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/include/makefile.win32 b/include/makefile.win32 deleted file mode 100644 index f66dd48b6..000000000 --- a/include/makefile.win32 +++ /dev/null @@ -1,25 +0,0 @@ -# Make file for Win32 -# -# (C) 2003-2008 Anope Team -# Contact us at info@anope.org -# -# Please read COPYING and README for further details. -# -# Based on the original code of Epona by Lara. -# Based on the original code of Services by Andy Church. -# -# $Id:$ -# - -########################################################################### - -clean: - -@erase language.h - -spotless: clean - -@erase sysconf.h version.h - -distclean: spotless - - -FRC: diff --git a/include/sysconf.h.in b/include/sysconf.h.in deleted file mode 100644 index f7de31677..000000000 --- a/include/sysconf.h.in +++ /dev/null @@ -1,171 +0,0 @@ -/* include/sysconf.h.in. Generated from configure.in by autoheader. */ - -/* "Default umask Permissions" */ -#undef DEFUMASK - -/* "No prefix needed for dlopen" */ -#undef DL_PREFIX - -/* "Has sys/types.h" */ -#undef HAS_SYS_TYPES_H - -/* "" */ -#undef HAVE_BACKTRACE - -/* Define to 1 if you have the `fork' function. */ -#undef HAVE_FORK - -/* Define to 1 if you have the `gethostbyname' function. */ -#undef HAVE_GETHOSTBYNAME - -/* Define to 1 if you have the `gethostbyname_r' function. */ -#undef HAVE_GETHOSTBYNAME_R - -/* Define to 1 if you have the `gettimeofday' function. */ -#undef HAVE_GETTIMEOFDAY - -/* Define to 1 if you have the <inttypes.h> header file. */ -#undef HAVE_INTTYPES_H - -/* Define to 1 if you have the <memory.h> header file. */ -#undef HAVE_MEMORY_H - -/* Define to 1 if you have the `setgrent' function. */ -#undef HAVE_SETGRENT - -/* Define to 1 if you have the <stdint.h> header file. */ -#undef HAVE_STDINT_H - -/* Define to 1 if you have the <stdlib.h> header file. */ -#undef HAVE_STDLIB_H - -/* Define to 1 if you have the `strcasecmp' function. */ -#undef HAVE_STRCASECMP - -/* Define to 1 if you have the `stricmp' function. */ -#undef HAVE_STRICMP - -/* "" */ -#undef HAVE_STRINGS_H - -/* Define to 1 if you have the <string.h> header file. */ -#undef HAVE_STRING_H - -/* Define to 1 if you have the `strlcat' function. */ -#undef HAVE_STRLCAT - -/* Define to 1 if you have the `strlcpy' function. */ -#undef HAVE_STRLCPY - -/* "" */ -#undef HAVE_SYS_SELECT_H - -/* Define to 1 if you have the <sys/stat.h> header file. */ -#undef HAVE_SYS_STAT_H - -/* Define to 1 if you have the <sys/types.h> header file. */ -#undef HAVE_SYS_TYPES_H - -/* Define to 1 if you have the `umask' function. */ -#undef HAVE_UMASK - -/* Define to 1 if you have the <unistd.h> header file. */ -#undef HAVE_UNISTD_H - -/* va_list as array */ -#undef HAVE_VA_LIST_AS_ARRAY - -/* "Module dir" */ -#undef MODULE_PATH - -/* "Has mysql/mysql.h" */ -#undef MYSQL_HEADER_PREFIX - -/* Define to the address where bug reports for this package should be sent. */ -#undef PACKAGE_BUGREPORT - -/* Define to the full name of this package. */ -#undef PACKAGE_NAME - -/* Define to the full name and version of this package. */ -#undef PACKAGE_STRING - -/* Define to the one symbol short name of this package. */ -#undef PACKAGE_TARNAME - -/* Define to the version of this package. */ -#undef PACKAGE_VERSION - -/* "Run group" */ -#undef RUNGROUP - -/* "Binary Dir" */ -#undef SERVICES_BIN - -/* "services bin dir" */ -#undef SERVICES_DIR - -/* The size of a `int', as computed by sizeof. */ -#undef SIZEOF_INT - -/* The size of a `long', as computed by sizeof. */ -#undef SIZEOF_LONG - -/* The size of a `short', as computed by sizeof. */ -#undef SIZEOF_SHORT - -/* "modules not available" */ -#undef STATIC_LINKING - -/* Define to 1 if you have the ANSI C header files. */ -#undef STDC_HEADERS - -/* Define to `short' if <sys/types.h> does not define. */ -#undef int16_t - -/* Define to `long' if <sys/types.h> does not define. */ -#undef int32_t - -/* Define to `unsigned short' if <sys/types.h> does not define. */ -#undef u_int16_t - -/* Define to `unsigned long' if <sys/types.h> does not define. */ -#undef u_int32_t - -/* Static config, copy from here to below before running autoheader! */ - -#ifndef BIG_ENDIAN - -/* Big Endian system */ -#undef BIG_ENDIAN - -#endif - -#ifndef LITTLE_ENDIAN - -/* Little Endian system */ -#undef LITTLE_ENDIAN - -#endif - -/** - * NOTE: BIG_ENDIAN and LITTLE_ENDIAN defines should not be left in - * by autoheader as they may be defined or may not be, as such we check - * if there defined before messing with them! - **/ - -#ifdef HAS_SYS_TYPES_H -#include <sys/types.h> -#endif - -#ifdef __STRICT_ANSI__ -#include <stdarg.h> -#include <stdio.h> -#endif - - -typedef int16_t int16; -typedef u_int16_t uint16; -typedef int32_t int32; -typedef u_int32_t uint32; - diff --git a/include/sysconf.h.win32 b/include/sysconf.h.win32 deleted file mode 100644 index 5b33a3608..000000000 --- a/include/sysconf.h.win32 +++ /dev/null @@ -1,44 +0,0 @@ -
-#define SERVICES_DIR "data"
-#define SERVICES_BIN "anope.exe"
-
-typedef signed __int16 int16;
-typedef signed __int16 int16_t;
-typedef unsigned __int16 uint16;
-typedef unsigned __int16 u_int16_t;
-typedef signed __int32 int32;
-typedef signed __int32 int32_t;
-typedef unsigned __int32 uint32;
-typedef unsigned __int32 u_int32_t;
-typedef unsigned __int8 u_int8_t;
-
-#define HAVE_STRINGS_H 0
-#define HAVE_SYS_SELECT_H 0
-#define HAVE_SYS_SYSPROTO_H 0
-
-#define HAVE_STRICMP 1
-#define HAVE_STRCASECMP 0
-#define HAVE_STRSIGNAL 0
-#define HAVE_GETTIMEOFDAY 0
-#define HAVE_SETGRENT 0
-#define HAVE_UMASK 0
-#define HAVE_FORK 0
-#define HAVE_GETHOSTBYNAME 1
-#define HAVE_BACKTRACE 0
-
-/* Enable Module support */
-#define USE_MODULES
-#define MODULE_PATH ".\\modules\\"
-
-/* Windows/MSVC likes to name things differently */
-#define snprintf _snprintf
-#define popen _popen
-#define pclose _pclose
-#define ftruncate _chsize
-#define PATH_MAX MAX_PATH
-#define MAXPATHLEN MAX_PATH
-#define bzero(buf, size) memset(buf, 0, size)
-#define strcasecmp stricmp
-#define sleep(x) Sleep(x*1000)
-
-
diff --git a/install-script b/install-script deleted file mode 100644 index aeb6d3352..000000000 --- a/install-script +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh - -SRC= ; DEST= ; MODE= ; USER= ; GROUP= ; export SRC DEST MODE USER GROUP -while [ $# -gt 0 ] ; do - case $1 in - -m) MODE=$2; shift; shift;; - -u) USER=$2; shift; shift;; - -g) GROUP=$2; shift; shift;; - -c) shift;; - *) SRC="$DEST"; DEST="$1"; shift;; - esac -done -if [ ! "$DEST" ] ; then - echo >&2 "Usage: $0 [-c] [-m mode] [-u user] [-g group] source dest" - exit 1 -fi -if [ -d "$DEST" ] ; then - DEST="$DEST/$SRC" -fi -/bin/cp -p "$SRC" "$DEST" -if [ "$MODE" ] ; then - /bin/chmod $MODE "$DEST" -fi -if [ "$USER" ] ; then - /bin/chown "$USER" "$DEST" -fi -if [ "$GROUP" ] ; then - /bin/chgrp "$GROUP" "$DEST" -fi diff --git a/install.sh b/install.sh deleted file mode 100644 index e69de29bb..000000000 --- a/install.sh +++ /dev/null diff --git a/lang/Makefile b/lang/Makefile deleted file mode 100644 index baf5838e0..000000000 --- a/lang/Makefile +++ /dev/null @@ -1,224 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.6 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/local/bin/cmake - -# The command to remove a file. -RM = /usr/local/bin/cmake -E remove -f - -# The program to use to edit the cache. -CMAKE_EDIT_COMMAND = /usr/local/bin/ccmake - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /celes/anope - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /celes/anope - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." - cd /celes/anope/lang && /usr/local/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - cd /celes/anope/lang && /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - cd /celes/anope/lang && /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." - cd /celes/anope/lang && /usr/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." - cd /celes/anope/lang && /usr/local/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." - cd /celes/anope/lang && /usr/local/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# The main all target -all: cmake_check_build_system - cd /celes/anope && $(CMAKE_COMMAND) -E cmake_progress_start /celes/anope/CMakeFiles /celes/anope/lang/CMakeFiles/progress.make - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 lang/all - $(CMAKE_COMMAND) -E cmake_progress_start /celes/anope/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 lang/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 lang/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 lang/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /celes/anope && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -lang/CMakeFiles/langcomp.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 lang/CMakeFiles/langcomp.dir/rule -.PHONY : lang/CMakeFiles/langcomp.dir/rule - -# Convenience name for target. -langcomp: lang/CMakeFiles/langcomp.dir/rule -.PHONY : langcomp - -# fast build rule for target. -langcomp/fast: - cd /celes/anope && $(MAKE) -f lang/CMakeFiles/langcomp.dir/build.make lang/CMakeFiles/langcomp.dir/build -.PHONY : langcomp/fast - -# Convenience name for target. -lang/CMakeFiles/language.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 lang/CMakeFiles/language.dir/rule -.PHONY : lang/CMakeFiles/language.dir/rule - -# Convenience name for target. -language: lang/CMakeFiles/language.dir/rule -.PHONY : language - -# fast build rule for target. -language/fast: - cd /celes/anope && $(MAKE) -f lang/CMakeFiles/language.dir/build.make lang/CMakeFiles/language.dir/build -.PHONY : language/fast - -langcomp.o: langcomp.c.o -.PHONY : langcomp.o - -# target to build an object file -langcomp.c.o: - cd /celes/anope && $(MAKE) -f lang/CMakeFiles/langcomp.dir/build.make lang/CMakeFiles/langcomp.dir/langcomp.c.o -.PHONY : langcomp.c.o - -langcomp.i: langcomp.c.i -.PHONY : langcomp.i - -# target to preprocess a source file -langcomp.c.i: - cd /celes/anope && $(MAKE) -f lang/CMakeFiles/langcomp.dir/build.make lang/CMakeFiles/langcomp.dir/langcomp.c.i -.PHONY : langcomp.c.i - -langcomp.s: langcomp.c.s -.PHONY : langcomp.s - -# target to generate assembly for a file -langcomp.c.s: - cd /celes/anope && $(MAKE) -f lang/CMakeFiles/langcomp.dir/build.make lang/CMakeFiles/langcomp.dir/langcomp.c.s -.PHONY : langcomp.c.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... langcomp" - @echo "... language" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... langcomp.o" - @echo "... langcomp.i" - @echo "... langcomp.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /celes/anope && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/lang/Makefile.win32 b/lang/Makefile.win32 deleted file mode 100644 index 4791287e0..000000000 --- a/lang/Makefile.win32 +++ /dev/null @@ -1,75 +0,0 @@ -# Makefile for language module - -include ../Makefile.inc.win32 - - -LANGOBJS = cat de en_us es fr hun gr nl pl pt tr it ru -LANGSRCS = cat de en_us.l es fr.l hun.l gr.l nl.l pl.l pt.l tr.l it.l ru.l - -LANGCOMP = ./langcomp -#LANGCOMP = ./langcomp -w - - -all: $(LANGOBJS) - - -install: all - -copy cat ..\$(DATDEST)\languages - -copy en_us ..\$(DATDEST)\languages - -copy de ..\$(DATDEST)\languages - -copy es ..\$(DATDEST)\languages - -copy fr ..\$(DATDEST)\languages - -copy hun ..\$(DATDEST)\languages - -copy gr ..\$(DATDEST)\languages - -copy nl ..\$(DATDEST)\languages - -copy pl ..\$(DATDEST)\languages - -copy pt ..\$(DATDEST)\languages - -copy tr ..\$(DATDEST)\languages - -copy it ..\$(DATDEST)\languages - -copy ru ..\$(DATDEST)\languages - -clean: - -@erase $(LANGOBJS) langcomp.exe langtool.exe *.obj index - -spotless: clean - -@erase language.h - - -cat: cat.l langtool.exe langcomp.exe index - langcomp $@.l -de: de.l langtool.exe langcomp.exe index - langcomp $@.l -en_us: en_us.l langtool.exe langcomp.exe index - langcomp $@.l -es: es.l langtool.exe langcomp.exe index - langcomp $@.l -fr: fr.l langtool.exe langcomp.exe index - langcomp $@.l -hun: hun.l langtool.exe langcomp.exe index - langcomp $@.l -gr: gr.l langtool.exe langcomp.exe index - langcomp $@.l -nl: nl.l langtool.exe langcomp.exe index - langcomp $@.l -pl: pl.l langtool.exe langcomp.exe index - langcomp $@.l -pt: pt.l langtool.exe langcomp.exe index - langcomp $@.l -tr: tr.l langtool.exe langcomp.exe index - langcomp $@.l -it: it.l langtool.exe langcomp.exe index - langcomp $@.l -ru: ru.l langtool.exe langcomp.exe index - langcomp $@.l - -langtool.exe: langtool.c - $(CC) $(CFLAGS) langtool.c -o $@ /link $(LFLAGS) - -langcomp.exe: langcomp.c - $(CC) $(CFLAGS) langcomp.c -o $@ /link $(LFLAGS) - -language.h: langtool.exe index - langtool language.h - -index: langtool.exe en_us.l - langtool index diff --git a/makefile.inc.win32 b/makefile.inc.win32 deleted file mode 100644 index 7d430d672..000000000 --- a/makefile.inc.win32 +++ /dev/null @@ -1,18 +0,0 @@ -#
-# Generated by install.js
-#
-LIBPATH=/LIBPATH:"C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\Lib" /LIBPATH:"C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\Lib"
-INCFLAGS=/I "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\Include" /I "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\Include"
-VERSION=1.9.0.0-git
-PROGRAM=anope.exe
-DATDEST=data
-CC=cl
-RC=rc
-MAKE=nmake -f Makefile.win32
-BASE_CFLAGS=$(VC6) /Zi /MD /TP /GR /EHs $(INCFLAGS)
-RC_FLAGS=/i "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\Include" /i "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\Include"
-LIBS=wsock32.lib advapi32.lib /NODEFAULTLIB:libcmtd.lib
-LFLAGS=$(LIBPATH)
-USE_MYSQL=0
-MORE_CFLAGS = /I"../include"
-CFLAGS = /nologo $(CDEFS) $(BASE_CFLAGS) $(MORE_CFLAGS)
diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index dfd96d369..000000000 --- a/src/Makefile +++ /dev/null @@ -1,1262 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.6 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/local/bin/cmake - -# The command to remove a file. -RM = /usr/local/bin/cmake -E remove -f - -# The program to use to edit the cache. -CMAKE_EDIT_COMMAND = /usr/local/bin/ccmake - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /celes/anope - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /celes/anope - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." - cd /celes/anope/src && /usr/local/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - cd /celes/anope/src && /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - cd /celes/anope/src && /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." - cd /celes/anope/src && /usr/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." - cd /celes/anope/src && /usr/local/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." - cd /celes/anope/src && /usr/local/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# The main all target -all: cmake_check_build_system - cd /celes/anope && $(CMAKE_COMMAND) -E cmake_progress_start /celes/anope/CMakeFiles /celes/anope/src/CMakeFiles/progress.make - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/all - $(CMAKE_COMMAND) -E cmake_progress_start /celes/anope/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /celes/anope && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -src/CMakeFiles/services.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/CMakeFiles/services.dir/rule -.PHONY : src/CMakeFiles/services.dir/rule - -# Convenience name for target. -services: src/CMakeFiles/services.dir/rule -.PHONY : services - -# fast build rule for target. -services/fast: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/build -.PHONY : services/fast - -actions.o: actions.c.o -.PHONY : actions.o - -# target to build an object file -actions.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/actions.c.o -.PHONY : actions.c.o - -actions.i: actions.c.i -.PHONY : actions.i - -# target to preprocess a source file -actions.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/actions.c.i -.PHONY : actions.c.i - -actions.s: actions.c.s -.PHONY : actions.s - -# target to generate assembly for a file -actions.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/actions.c.s -.PHONY : actions.c.s - -base64.o: base64.c.o -.PHONY : base64.o - -# target to build an object file -base64.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/base64.c.o -.PHONY : base64.c.o - -base64.i: base64.c.i -.PHONY : base64.i - -# target to preprocess a source file -base64.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/base64.c.i -.PHONY : base64.c.i - -base64.s: base64.c.s -.PHONY : base64.s - -# target to generate assembly for a file -base64.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/base64.c.s -.PHONY : base64.c.s - -bots.o: bots.cpp.o -.PHONY : bots.o - -# target to build an object file -bots.cpp.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/bots.cpp.o -.PHONY : bots.cpp.o - -bots.i: bots.cpp.i -.PHONY : bots.i - -# target to preprocess a source file -bots.cpp.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/bots.cpp.i -.PHONY : bots.cpp.i - -bots.s: bots.cpp.s -.PHONY : bots.s - -# target to generate assembly for a file -bots.cpp.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/bots.cpp.s -.PHONY : bots.cpp.s - -botserv.o: botserv.c.o -.PHONY : botserv.o - -# target to build an object file -botserv.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/botserv.c.o -.PHONY : botserv.c.o - -botserv.i: botserv.c.i -.PHONY : botserv.i - -# target to preprocess a source file -botserv.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/botserv.c.i -.PHONY : botserv.c.i - -botserv.s: botserv.c.s -.PHONY : botserv.s - -# target to generate assembly for a file -botserv.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/botserv.c.s -.PHONY : botserv.c.s - -channels.o: channels.c.o -.PHONY : channels.o - -# target to build an object file -channels.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/channels.c.o -.PHONY : channels.c.o - -channels.i: channels.c.i -.PHONY : channels.i - -# target to preprocess a source file -channels.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/channels.c.i -.PHONY : channels.c.i - -channels.s: channels.c.s -.PHONY : channels.s - -# target to generate assembly for a file -channels.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/channels.c.s -.PHONY : channels.c.s - -chanserv.o: chanserv.c.o -.PHONY : chanserv.o - -# target to build an object file -chanserv.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/chanserv.c.o -.PHONY : chanserv.c.o - -chanserv.i: chanserv.c.i -.PHONY : chanserv.i - -# target to preprocess a source file -chanserv.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/chanserv.c.i -.PHONY : chanserv.c.i - -chanserv.s: chanserv.c.s -.PHONY : chanserv.s - -# target to generate assembly for a file -chanserv.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/chanserv.c.s -.PHONY : chanserv.c.s - -commands.o: commands.c.o -.PHONY : commands.o - -# target to build an object file -commands.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/commands.c.o -.PHONY : commands.c.o - -commands.i: commands.c.i -.PHONY : commands.i - -# target to preprocess a source file -commands.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/commands.c.i -.PHONY : commands.c.i - -commands.s: commands.c.s -.PHONY : commands.s - -# target to generate assembly for a file -commands.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/commands.c.s -.PHONY : commands.c.s - -compat.o: compat.c.o -.PHONY : compat.o - -# target to build an object file -compat.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/compat.c.o -.PHONY : compat.c.o - -compat.i: compat.c.i -.PHONY : compat.i - -# target to preprocess a source file -compat.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/compat.c.i -.PHONY : compat.c.i - -compat.s: compat.c.s -.PHONY : compat.s - -# target to generate assembly for a file -compat.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/compat.c.s -.PHONY : compat.c.s - -config.o: config.c.o -.PHONY : config.o - -# target to build an object file -config.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/config.c.o -.PHONY : config.c.o - -config.i: config.c.i -.PHONY : config.i - -# target to preprocess a source file -config.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/config.c.i -.PHONY : config.c.i - -config.s: config.c.s -.PHONY : config.s - -# target to generate assembly for a file -config.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/config.c.s -.PHONY : config.c.s - -configreader.o: configreader.cpp.o -.PHONY : configreader.o - -# target to build an object file -configreader.cpp.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/configreader.cpp.o -.PHONY : configreader.cpp.o - -configreader.i: configreader.cpp.i -.PHONY : configreader.i - -# target to preprocess a source file -configreader.cpp.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/configreader.cpp.i -.PHONY : configreader.cpp.i - -configreader.s: configreader.cpp.s -.PHONY : configreader.s - -# target to generate assembly for a file -configreader.cpp.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/configreader.cpp.s -.PHONY : configreader.cpp.s - -datafiles.o: datafiles.c.o -.PHONY : datafiles.o - -# target to build an object file -datafiles.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/datafiles.c.o -.PHONY : datafiles.c.o - -datafiles.i: datafiles.c.i -.PHONY : datafiles.i - -# target to preprocess a source file -datafiles.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/datafiles.c.i -.PHONY : datafiles.c.i - -datafiles.s: datafiles.c.s -.PHONY : datafiles.s - -# target to generate assembly for a file -datafiles.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/datafiles.c.s -.PHONY : datafiles.c.s - -encrypt.o: encrypt.c.o -.PHONY : encrypt.o - -# target to build an object file -encrypt.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/encrypt.c.o -.PHONY : encrypt.c.o - -encrypt.i: encrypt.c.i -.PHONY : encrypt.i - -# target to preprocess a source file -encrypt.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/encrypt.c.i -.PHONY : encrypt.c.i - -encrypt.s: encrypt.c.s -.PHONY : encrypt.s - -# target to generate assembly for a file -encrypt.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/encrypt.c.s -.PHONY : encrypt.c.s - -events.o: events.c.o -.PHONY : events.o - -# target to build an object file -events.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/events.c.o -.PHONY : events.c.o - -events.i: events.c.i -.PHONY : events.i - -# target to preprocess a source file -events.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/events.c.i -.PHONY : events.c.i - -events.s: events.c.s -.PHONY : events.s - -# target to generate assembly for a file -events.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/events.c.s -.PHONY : events.c.s - -hashcomp.o: hashcomp.cpp.o -.PHONY : hashcomp.o - -# target to build an object file -hashcomp.cpp.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/hashcomp.cpp.o -.PHONY : hashcomp.cpp.o - -hashcomp.i: hashcomp.cpp.i -.PHONY : hashcomp.i - -# target to preprocess a source file -hashcomp.cpp.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/hashcomp.cpp.i -.PHONY : hashcomp.cpp.i - -hashcomp.s: hashcomp.cpp.s -.PHONY : hashcomp.s - -# target to generate assembly for a file -hashcomp.cpp.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/hashcomp.cpp.s -.PHONY : hashcomp.cpp.s - -helpserv.o: helpserv.c.o -.PHONY : helpserv.o - -# target to build an object file -helpserv.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/helpserv.c.o -.PHONY : helpserv.c.o - -helpserv.i: helpserv.c.i -.PHONY : helpserv.i - -# target to preprocess a source file -helpserv.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/helpserv.c.i -.PHONY : helpserv.c.i - -helpserv.s: helpserv.c.s -.PHONY : helpserv.s - -# target to generate assembly for a file -helpserv.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/helpserv.c.s -.PHONY : helpserv.c.s - -hostserv.o: hostserv.c.o -.PHONY : hostserv.o - -# target to build an object file -hostserv.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/hostserv.c.o -.PHONY : hostserv.c.o - -hostserv.i: hostserv.c.i -.PHONY : hostserv.i - -# target to preprocess a source file -hostserv.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/hostserv.c.i -.PHONY : hostserv.c.i - -hostserv.s: hostserv.c.s -.PHONY : hostserv.s - -# target to generate assembly for a file -hostserv.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/hostserv.c.s -.PHONY : hostserv.c.s - -init.o: init.c.o -.PHONY : init.o - -# target to build an object file -init.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/init.c.o -.PHONY : init.c.o - -init.i: init.c.i -.PHONY : init.i - -# target to preprocess a source file -init.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/init.c.i -.PHONY : init.c.i - -init.s: init.c.s -.PHONY : init.s - -# target to generate assembly for a file -init.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/init.c.s -.PHONY : init.c.s - -ircd.o: ircd.c.o -.PHONY : ircd.o - -# target to build an object file -ircd.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/ircd.c.o -.PHONY : ircd.c.o - -ircd.i: ircd.c.i -.PHONY : ircd.i - -# target to preprocess a source file -ircd.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/ircd.c.i -.PHONY : ircd.c.i - -ircd.s: ircd.c.s -.PHONY : ircd.s - -# target to generate assembly for a file -ircd.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/ircd.c.s -.PHONY : ircd.c.s - -language.o: language.c.o -.PHONY : language.o - -# target to build an object file -language.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/language.c.o -.PHONY : language.c.o - -language.i: language.c.i -.PHONY : language.i - -# target to preprocess a source file -language.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/language.c.i -.PHONY : language.c.i - -language.s: language.c.s -.PHONY : language.s - -# target to generate assembly for a file -language.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/language.c.s -.PHONY : language.c.s - -log.o: log.c.o -.PHONY : log.o - -# target to build an object file -log.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/log.c.o -.PHONY : log.c.o - -log.i: log.c.i -.PHONY : log.i - -# target to preprocess a source file -log.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/log.c.i -.PHONY : log.c.i - -log.s: log.c.s -.PHONY : log.s - -# target to generate assembly for a file -log.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/log.c.s -.PHONY : log.c.s - -mail.o: mail.c.o -.PHONY : mail.o - -# target to build an object file -mail.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/mail.c.o -.PHONY : mail.c.o - -mail.i: mail.c.i -.PHONY : mail.i - -# target to preprocess a source file -mail.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/mail.c.i -.PHONY : mail.c.i - -mail.s: mail.c.s -.PHONY : mail.s - -# target to generate assembly for a file -mail.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/mail.c.s -.PHONY : mail.c.s - -main.o: main.c.o -.PHONY : main.o - -# target to build an object file -main.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/main.c.o -.PHONY : main.c.o - -main.i: main.c.i -.PHONY : main.i - -# target to preprocess a source file -main.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/main.c.i -.PHONY : main.c.i - -main.s: main.c.s -.PHONY : main.s - -# target to generate assembly for a file -main.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/main.c.s -.PHONY : main.c.s - -memory.o: memory.c.o -.PHONY : memory.o - -# target to build an object file -memory.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/memory.c.o -.PHONY : memory.c.o - -memory.i: memory.c.i -.PHONY : memory.i - -# target to preprocess a source file -memory.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/memory.c.i -.PHONY : memory.c.i - -memory.s: memory.c.s -.PHONY : memory.s - -# target to generate assembly for a file -memory.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/memory.c.s -.PHONY : memory.c.s - -memoserv.o: memoserv.c.o -.PHONY : memoserv.o - -# target to build an object file -memoserv.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/memoserv.c.o -.PHONY : memoserv.c.o - -memoserv.i: memoserv.c.i -.PHONY : memoserv.i - -# target to preprocess a source file -memoserv.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/memoserv.c.i -.PHONY : memoserv.c.i - -memoserv.s: memoserv.c.s -.PHONY : memoserv.s - -# target to generate assembly for a file -memoserv.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/memoserv.c.s -.PHONY : memoserv.c.s - -messages.o: messages.c.o -.PHONY : messages.o - -# target to build an object file -messages.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/messages.c.o -.PHONY : messages.c.o - -messages.i: messages.c.i -.PHONY : messages.i - -# target to preprocess a source file -messages.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/messages.c.i -.PHONY : messages.c.i - -messages.s: messages.c.s -.PHONY : messages.s - -# target to generate assembly for a file -messages.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/messages.c.s -.PHONY : messages.c.s - -misc.o: misc.c.o -.PHONY : misc.o - -# target to build an object file -misc.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/misc.c.o -.PHONY : misc.c.o - -misc.i: misc.c.i -.PHONY : misc.i - -# target to preprocess a source file -misc.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/misc.c.i -.PHONY : misc.c.i - -misc.s: misc.c.s -.PHONY : misc.s - -# target to generate assembly for a file -misc.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/misc.c.s -.PHONY : misc.c.s - -module.o: module.cpp.o -.PHONY : module.o - -# target to build an object file -module.cpp.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/module.cpp.o -.PHONY : module.cpp.o - -module.i: module.cpp.i -.PHONY : module.i - -# target to preprocess a source file -module.cpp.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/module.cpp.i -.PHONY : module.cpp.i - -module.s: module.cpp.s -.PHONY : module.s - -# target to generate assembly for a file -module.cpp.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/module.cpp.s -.PHONY : module.cpp.s - -modulemanager.o: modulemanager.cpp.o -.PHONY : modulemanager.o - -# target to build an object file -modulemanager.cpp.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/modulemanager.cpp.o -.PHONY : modulemanager.cpp.o - -modulemanager.i: modulemanager.cpp.i -.PHONY : modulemanager.i - -# target to preprocess a source file -modulemanager.cpp.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/modulemanager.cpp.i -.PHONY : modulemanager.cpp.i - -modulemanager.s: modulemanager.cpp.s -.PHONY : modulemanager.s - -# target to generate assembly for a file -modulemanager.cpp.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/modulemanager.cpp.s -.PHONY : modulemanager.cpp.s - -modules.o: modules.c.o -.PHONY : modules.o - -# target to build an object file -modules.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/modules.c.o -.PHONY : modules.c.o - -modules.i: modules.c.i -.PHONY : modules.i - -# target to preprocess a source file -modules.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/modules.c.i -.PHONY : modules.c.i - -modules.s: modules.c.s -.PHONY : modules.s - -# target to generate assembly for a file -modules.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/modules.c.s -.PHONY : modules.c.s - -news.o: news.c.o -.PHONY : news.o - -# target to build an object file -news.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/news.c.o -.PHONY : news.c.o - -news.i: news.c.i -.PHONY : news.i - -# target to preprocess a source file -news.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/news.c.i -.PHONY : news.c.i - -news.s: news.c.s -.PHONY : news.s - -# target to generate assembly for a file -news.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/news.c.s -.PHONY : news.c.s - -nickserv.o: nickserv.c.o -.PHONY : nickserv.o - -# target to build an object file -nickserv.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/nickserv.c.o -.PHONY : nickserv.c.o - -nickserv.i: nickserv.c.i -.PHONY : nickserv.i - -# target to preprocess a source file -nickserv.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/nickserv.c.i -.PHONY : nickserv.c.i - -nickserv.s: nickserv.c.s -.PHONY : nickserv.s - -# target to generate assembly for a file -nickserv.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/nickserv.c.s -.PHONY : nickserv.c.s - -operserv.o: operserv.c.o -.PHONY : operserv.o - -# target to build an object file -operserv.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/operserv.c.o -.PHONY : operserv.c.o - -operserv.i: operserv.c.i -.PHONY : operserv.i - -# target to preprocess a source file -operserv.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/operserv.c.i -.PHONY : operserv.c.i - -operserv.s: operserv.c.s -.PHONY : operserv.s - -# target to generate assembly for a file -operserv.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/operserv.c.s -.PHONY : operserv.c.s - -process.o: process.c.o -.PHONY : process.o - -# target to build an object file -process.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/process.c.o -.PHONY : process.c.o - -process.i: process.c.i -.PHONY : process.i - -# target to preprocess a source file -process.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/process.c.i -.PHONY : process.c.i - -process.s: process.c.s -.PHONY : process.s - -# target to generate assembly for a file -process.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/process.c.s -.PHONY : process.c.s - -send.o: send.c.o -.PHONY : send.o - -# target to build an object file -send.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/send.c.o -.PHONY : send.c.o - -send.i: send.c.i -.PHONY : send.i - -# target to preprocess a source file -send.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/send.c.i -.PHONY : send.c.i - -send.s: send.c.s -.PHONY : send.s - -# target to generate assembly for a file -send.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/send.c.s -.PHONY : send.c.s - -servers.o: servers.c.o -.PHONY : servers.o - -# target to build an object file -servers.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/servers.c.o -.PHONY : servers.c.o - -servers.i: servers.c.i -.PHONY : servers.i - -# target to preprocess a source file -servers.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/servers.c.i -.PHONY : servers.c.i - -servers.s: servers.c.s -.PHONY : servers.s - -# target to generate assembly for a file -servers.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/servers.c.s -.PHONY : servers.c.s - -sessions.o: sessions.c.o -.PHONY : sessions.o - -# target to build an object file -sessions.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/sessions.c.o -.PHONY : sessions.c.o - -sessions.i: sessions.c.i -.PHONY : sessions.i - -# target to preprocess a source file -sessions.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/sessions.c.i -.PHONY : sessions.c.i - -sessions.s: sessions.c.s -.PHONY : sessions.s - -# target to generate assembly for a file -sessions.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/sessions.c.s -.PHONY : sessions.c.s - -slist.o: slist.c.o -.PHONY : slist.o - -# target to build an object file -slist.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/slist.c.o -.PHONY : slist.c.o - -slist.i: slist.c.i -.PHONY : slist.i - -# target to preprocess a source file -slist.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/slist.c.i -.PHONY : slist.c.i - -slist.s: slist.c.s -.PHONY : slist.s - -# target to generate assembly for a file -slist.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/slist.c.s -.PHONY : slist.c.s - -sockutil.o: sockutil.c.o -.PHONY : sockutil.o - -# target to build an object file -sockutil.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/sockutil.c.o -.PHONY : sockutil.c.o - -sockutil.i: sockutil.c.i -.PHONY : sockutil.i - -# target to preprocess a source file -sockutil.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/sockutil.c.i -.PHONY : sockutil.c.i - -sockutil.s: sockutil.c.s -.PHONY : sockutil.s - -# target to generate assembly for a file -sockutil.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/sockutil.c.s -.PHONY : sockutil.c.s - -timeout.o: timeout.c.o -.PHONY : timeout.o - -# target to build an object file -timeout.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/timeout.c.o -.PHONY : timeout.c.o - -timeout.i: timeout.c.i -.PHONY : timeout.i - -# target to preprocess a source file -timeout.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/timeout.c.i -.PHONY : timeout.c.i - -timeout.s: timeout.c.s -.PHONY : timeout.s - -# target to generate assembly for a file -timeout.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/timeout.c.s -.PHONY : timeout.c.s - -users.o: users.c.o -.PHONY : users.o - -# target to build an object file -users.c.o: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/users.c.o -.PHONY : users.c.o - -users.i: users.c.i -.PHONY : users.i - -# target to preprocess a source file -users.c.i: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/users.c.i -.PHONY : users.c.i - -users.s: users.c.s -.PHONY : users.s - -# target to generate assembly for a file -users.c.s: - cd /celes/anope && $(MAKE) -f src/CMakeFiles/services.dir/build.make src/CMakeFiles/services.dir/users.c.s -.PHONY : users.c.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... services" - @echo "... actions.o" - @echo "... actions.i" - @echo "... actions.s" - @echo "... base64.o" - @echo "... base64.i" - @echo "... base64.s" - @echo "... bots.o" - @echo "... bots.i" - @echo "... bots.s" - @echo "... botserv.o" - @echo "... botserv.i" - @echo "... botserv.s" - @echo "... channels.o" - @echo "... channels.i" - @echo "... channels.s" - @echo "... chanserv.o" - @echo "... chanserv.i" - @echo "... chanserv.s" - @echo "... commands.o" - @echo "... commands.i" - @echo "... commands.s" - @echo "... compat.o" - @echo "... compat.i" - @echo "... compat.s" - @echo "... config.o" - @echo "... config.i" - @echo "... config.s" - @echo "... configreader.o" - @echo "... configreader.i" - @echo "... configreader.s" - @echo "... datafiles.o" - @echo "... datafiles.i" - @echo "... datafiles.s" - @echo "... encrypt.o" - @echo "... encrypt.i" - @echo "... encrypt.s" - @echo "... events.o" - @echo "... events.i" - @echo "... events.s" - @echo "... hashcomp.o" - @echo "... hashcomp.i" - @echo "... hashcomp.s" - @echo "... helpserv.o" - @echo "... helpserv.i" - @echo "... helpserv.s" - @echo "... hostserv.o" - @echo "... hostserv.i" - @echo "... hostserv.s" - @echo "... init.o" - @echo "... init.i" - @echo "... init.s" - @echo "... ircd.o" - @echo "... ircd.i" - @echo "... ircd.s" - @echo "... language.o" - @echo "... language.i" - @echo "... language.s" - @echo "... log.o" - @echo "... log.i" - @echo "... log.s" - @echo "... mail.o" - @echo "... mail.i" - @echo "... mail.s" - @echo "... main.o" - @echo "... main.i" - @echo "... main.s" - @echo "... memory.o" - @echo "... memory.i" - @echo "... memory.s" - @echo "... memoserv.o" - @echo "... memoserv.i" - @echo "... memoserv.s" - @echo "... messages.o" - @echo "... messages.i" - @echo "... messages.s" - @echo "... misc.o" - @echo "... misc.i" - @echo "... misc.s" - @echo "... module.o" - @echo "... module.i" - @echo "... module.s" - @echo "... modulemanager.o" - @echo "... modulemanager.i" - @echo "... modulemanager.s" - @echo "... modules.o" - @echo "... modules.i" - @echo "... modules.s" - @echo "... news.o" - @echo "... news.i" - @echo "... news.s" - @echo "... nickserv.o" - @echo "... nickserv.i" - @echo "... nickserv.s" - @echo "... operserv.o" - @echo "... operserv.i" - @echo "... operserv.s" - @echo "... process.o" - @echo "... process.i" - @echo "... process.s" - @echo "... send.o" - @echo "... send.i" - @echo "... send.s" - @echo "... servers.o" - @echo "... servers.i" - @echo "... servers.s" - @echo "... sessions.o" - @echo "... sessions.i" - @echo "... sessions.s" - @echo "... slist.o" - @echo "... slist.i" - @echo "... slist.s" - @echo "... sockutil.o" - @echo "... sockutil.i" - @echo "... sockutil.s" - @echo "... timeout.o" - @echo "... timeout.i" - @echo "... timeout.s" - @echo "... users.o" - @echo "... users.i" - @echo "... users.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /celes/anope && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/src/bin/anoperc.in b/src/bin/anoperc.in deleted file mode 100644 index 4f4961c9c..000000000 --- a/src/bin/anoperc.in +++ /dev/null @@ -1,141 +0,0 @@ -#!/bin/sh -# -# Configuration script for Services -# -# (C) 2003-2008 Anope Team -# Contact us at info@anope.org -# -# Please read COPYING and README for further details. -# -# Based on the original code of Epona by Lara. -# Based on the original code of Services by Andy Church. -# -# $Id$ -# - - - -ANOPEPID="@DATDEST@/services.pid" -ANOPROG="@BINDEST@/services" -LOG="@DATDEST@/logs/" -ARCVERSION="1.2" - -isAnopeRunning () { -if [ ! -f $ANOPEPID ] ; then - echo "Warning: Anope is not currently running" - exit 1 -fi - -PID=`cat $ANOPEPID` - -if [ ! `ps auxw | grep $ANOPROG | grep $PID | grep -v -c grep` ] ; then - echo "Warning: Anope is not currently running" - exit 1 -fi -} - -if [ ! -f $ANOPROG ] ; then - echo "Error: $ANOPROG cannot be accessed" - exit 1 -fi - - -if [ "$UID" = "0" ] ; then - echo "######################################"; - echo "# Warning: Do NOT run Anope as root! #"; - echo "######################################"; - exit 1 -fi - -if [ "$1" = "start" ] ; then - -if [ -f $ANOPEPID ] ; then - PID=`cat $ANOPEPID` - if [ `ps auxw | grep $ANOPROG | grep $PID | grep -v -c grep` = 1 ] ; then - echo "Warning! Anope is already running" - exit 1 - fi -fi - echo "Starting Anope" - shift - $ANOPROG $* - sleep 1 - if [ ! -f $ANOPEPID ] ; then - echo "Unfortunately it seems Anope did not start successfully" - echo "This error has been logged in your Anope Log file" - echo "Located in "$LOG"" - echo "This may help you diagnose the problem" - echo "Further help may be available from http://www.anope.org/" - exit 1 - fi - PID=`cat $ANOPEPID` - if [ ! `ps auxw | grep $ANOPROG | grep $PID | grep -v -c grep` ] ; then - echo "Unfortunately it seems Anope did not start successfully" - echo "This error has been logged in your Anope Log file" - echo "Located in "$LOG"" - echo "This may help you diagnose the problem" - echo "Further help may be available from http://www.anope.org/" - exit 1 - fi - -elif [ "$1" = "stop" ] ; then - isAnopeRunning - echo "Terminating Anope" - kill -15 `cat $ANOPEPID` - -elif [ "$1" = "status" ] ; then - if [ -f $ANOPEPID ] ; then - PID=`cat $ANOPEPID` - if [ `ps auxw | grep $PID | grep -v -c grep` = 1 ] ; then - echo "Anope is currently running" - exit 1 - fi - fi - - echo "Anope is not currently running" - -## :/ SIGUSR2 is ignored after the first restart so we stop / start Anope for now ## -elif [ "$1" = "restart" ] ; then - isAnopeRunning - echo "Restarting Anope" - kill -15 `cat $ANOPEPID` - sleep 1 - shift - $ANOPROG $* - -elif [ "$1" = "rehash" ] ; then - isAnopeRunning - echo "Saving Databases and Rehashing Configuration" - kill -12 `cat $ANOPEPID` - -elif [ "$1" = "version" ] ; then - $ANOPROG -version - -elif [ "$1" = "help" ] ; then - if [ "$2" = "paramlist" ] ; then - $ANOPROG -help - else - echo "AnopeRC is a remote control script for easy" - echo "controlling of Anope from the command console" - echo "$0 start Start Anope" - echo " Additional parameters may be passed" - echo " (e.g. $0 start -nofork)" - echo " For a list type $0 $1 paramlist" - echo "$0 stop Shutdown Anope" - echo "$0 status Show Anope's Status" - echo "$0 restart Restart Anope (Databases will be saved)" - echo " Additional parameters may be passed" - echo " (e.g. $0 restart -logchan)" - echo " For a list type $0 $1 paramlist" - echo "$0 rehash Rehash Configuration and Save Databases" - echo "$0 version Return Anope Version and Build Information" - echo "$0 help Show this help menu" - echo "If you need further help please check the /docs/" - echo "folder or make use of our extensive online support at" - echo "http://www.anope.org/" - fi - -else - echo "Anope Remote Control ($ARCVERSION)" - echo "Usage: $0 [start|stop|status|restart|rehash|version|help]" -fi diff --git a/src/core/Makefile b/src/core/Makefile deleted file mode 100644 index 24c7cec88..000000000 --- a/src/core/Makefile +++ /dev/null @@ -1,5459 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.6 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/local/bin/cmake - -# The command to remove a file. -RM = /usr/local/bin/cmake -E remove -f - -# The program to use to edit the cache. -CMAKE_EDIT_COMMAND = /usr/local/bin/ccmake - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /celes/anope - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /celes/anope - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." - cd /celes/anope/src/core && /usr/local/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - cd /celes/anope/src/core && /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - cd /celes/anope/src/core && /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." - cd /celes/anope/src/core && /usr/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." - cd /celes/anope/src/core && /usr/local/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." - cd /celes/anope/src/core && /usr/local/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# The main all target -all: cmake_check_build_system - cd /celes/anope && $(CMAKE_COMMAND) -E cmake_progress_start /celes/anope/CMakeFiles /celes/anope/src/core/CMakeFiles/progress.make - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/all - $(CMAKE_COMMAND) -E cmake_progress_start /celes/anope/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /celes/anope && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -src/core/CMakeFiles/bs_act.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_act.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_act.so.dir/rule - -# Convenience name for target. -bs_act.so: src/core/CMakeFiles/bs_act.so.dir/rule -.PHONY : bs_act.so - -# fast build rule for target. -bs_act.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_act.so.dir/build.make src/core/CMakeFiles/bs_act.so.dir/build -.PHONY : bs_act.so/fast - -# Convenience name for target. -src/core/CMakeFiles/bs_assign.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_assign.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_assign.so.dir/rule - -# Convenience name for target. -bs_assign.so: src/core/CMakeFiles/bs_assign.so.dir/rule -.PHONY : bs_assign.so - -# fast build rule for target. -bs_assign.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_assign.so.dir/build.make src/core/CMakeFiles/bs_assign.so.dir/build -.PHONY : bs_assign.so/fast - -# Convenience name for target. -src/core/CMakeFiles/bs_badwords.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_badwords.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_badwords.so.dir/rule - -# Convenience name for target. -bs_badwords.so: src/core/CMakeFiles/bs_badwords.so.dir/rule -.PHONY : bs_badwords.so - -# fast build rule for target. -bs_badwords.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_badwords.so.dir/build.make src/core/CMakeFiles/bs_badwords.so.dir/build -.PHONY : bs_badwords.so/fast - -# Convenience name for target. -src/core/CMakeFiles/bs_bot.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_bot.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_bot.so.dir/rule - -# Convenience name for target. -bs_bot.so: src/core/CMakeFiles/bs_bot.so.dir/rule -.PHONY : bs_bot.so - -# fast build rule for target. -bs_bot.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_bot.so.dir/build.make src/core/CMakeFiles/bs_bot.so.dir/build -.PHONY : bs_bot.so/fast - -# Convenience name for target. -src/core/CMakeFiles/bs_botlist.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_botlist.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_botlist.so.dir/rule - -# Convenience name for target. -bs_botlist.so: src/core/CMakeFiles/bs_botlist.so.dir/rule -.PHONY : bs_botlist.so - -# fast build rule for target. -bs_botlist.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_botlist.so.dir/build.make src/core/CMakeFiles/bs_botlist.so.dir/build -.PHONY : bs_botlist.so/fast - -# Convenience name for target. -src/core/CMakeFiles/bs_fantasy.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_fantasy.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_fantasy.so.dir/rule - -# Convenience name for target. -bs_fantasy.so: src/core/CMakeFiles/bs_fantasy.so.dir/rule -.PHONY : bs_fantasy.so - -# fast build rule for target. -bs_fantasy.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy.so.dir/build.make src/core/CMakeFiles/bs_fantasy.so.dir/build -.PHONY : bs_fantasy.so/fast - -# Convenience name for target. -src/core/CMakeFiles/bs_fantasy_kick.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_fantasy_kick.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_fantasy_kick.so.dir/rule - -# Convenience name for target. -bs_fantasy_kick.so: src/core/CMakeFiles/bs_fantasy_kick.so.dir/rule -.PHONY : bs_fantasy_kick.so - -# fast build rule for target. -bs_fantasy_kick.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_kick.so.dir/build.make src/core/CMakeFiles/bs_fantasy_kick.so.dir/build -.PHONY : bs_fantasy_kick.so/fast - -# Convenience name for target. -src/core/CMakeFiles/bs_fantasy_kickban.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_fantasy_kickban.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_fantasy_kickban.so.dir/rule - -# Convenience name for target. -bs_fantasy_kickban.so: src/core/CMakeFiles/bs_fantasy_kickban.so.dir/rule -.PHONY : bs_fantasy_kickban.so - -# fast build rule for target. -bs_fantasy_kickban.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_kickban.so.dir/build.make src/core/CMakeFiles/bs_fantasy_kickban.so.dir/build -.PHONY : bs_fantasy_kickban.so/fast - -# Convenience name for target. -src/core/CMakeFiles/bs_fantasy_owner.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_fantasy_owner.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_fantasy_owner.so.dir/rule - -# Convenience name for target. -bs_fantasy_owner.so: src/core/CMakeFiles/bs_fantasy_owner.so.dir/rule -.PHONY : bs_fantasy_owner.so - -# fast build rule for target. -bs_fantasy_owner.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_owner.so.dir/build.make src/core/CMakeFiles/bs_fantasy_owner.so.dir/build -.PHONY : bs_fantasy_owner.so/fast - -# Convenience name for target. -src/core/CMakeFiles/bs_fantasy_seen.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_fantasy_seen.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_fantasy_seen.so.dir/rule - -# Convenience name for target. -bs_fantasy_seen.so: src/core/CMakeFiles/bs_fantasy_seen.so.dir/rule -.PHONY : bs_fantasy_seen.so - -# fast build rule for target. -bs_fantasy_seen.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_seen.so.dir/build.make src/core/CMakeFiles/bs_fantasy_seen.so.dir/build -.PHONY : bs_fantasy_seen.so/fast - -# Convenience name for target. -src/core/CMakeFiles/bs_help.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_help.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_help.so.dir/rule - -# Convenience name for target. -bs_help.so: src/core/CMakeFiles/bs_help.so.dir/rule -.PHONY : bs_help.so - -# fast build rule for target. -bs_help.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_help.so.dir/build.make src/core/CMakeFiles/bs_help.so.dir/build -.PHONY : bs_help.so/fast - -# Convenience name for target. -src/core/CMakeFiles/bs_info.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_info.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_info.so.dir/rule - -# Convenience name for target. -bs_info.so: src/core/CMakeFiles/bs_info.so.dir/rule -.PHONY : bs_info.so - -# fast build rule for target. -bs_info.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_info.so.dir/build.make src/core/CMakeFiles/bs_info.so.dir/build -.PHONY : bs_info.so/fast - -# Convenience name for target. -src/core/CMakeFiles/bs_kick.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_kick.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_kick.so.dir/rule - -# Convenience name for target. -bs_kick.so: src/core/CMakeFiles/bs_kick.so.dir/rule -.PHONY : bs_kick.so - -# fast build rule for target. -bs_kick.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_kick.so.dir/build.make src/core/CMakeFiles/bs_kick.so.dir/build -.PHONY : bs_kick.so/fast - -# Convenience name for target. -src/core/CMakeFiles/bs_say.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_say.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_say.so.dir/rule - -# Convenience name for target. -bs_say.so: src/core/CMakeFiles/bs_say.so.dir/rule -.PHONY : bs_say.so - -# fast build rule for target. -bs_say.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_say.so.dir/build.make src/core/CMakeFiles/bs_say.so.dir/build -.PHONY : bs_say.so/fast - -# Convenience name for target. -src/core/CMakeFiles/bs_set.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_set.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_set.so.dir/rule - -# Convenience name for target. -bs_set.so: src/core/CMakeFiles/bs_set.so.dir/rule -.PHONY : bs_set.so - -# fast build rule for target. -bs_set.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_set.so.dir/build.make src/core/CMakeFiles/bs_set.so.dir/build -.PHONY : bs_set.so/fast - -# Convenience name for target. -src/core/CMakeFiles/bs_unassign.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/bs_unassign.so.dir/rule -.PHONY : src/core/CMakeFiles/bs_unassign.so.dir/rule - -# Convenience name for target. -bs_unassign.so: src/core/CMakeFiles/bs_unassign.so.dir/rule -.PHONY : bs_unassign.so - -# fast build rule for target. -bs_unassign.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_unassign.so.dir/build.make src/core/CMakeFiles/bs_unassign.so.dir/build -.PHONY : bs_unassign.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_access.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_access.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_access.so.dir/rule - -# Convenience name for target. -cs_access.so: src/core/CMakeFiles/cs_access.so.dir/rule -.PHONY : cs_access.so - -# fast build rule for target. -cs_access.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_access.so.dir/build.make src/core/CMakeFiles/cs_access.so.dir/build -.PHONY : cs_access.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_akick.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_akick.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_akick.so.dir/rule - -# Convenience name for target. -cs_akick.so: src/core/CMakeFiles/cs_akick.so.dir/rule -.PHONY : cs_akick.so - -# fast build rule for target. -cs_akick.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_akick.so.dir/build.make src/core/CMakeFiles/cs_akick.so.dir/build -.PHONY : cs_akick.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_ban.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_ban.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_ban.so.dir/rule - -# Convenience name for target. -cs_ban.so: src/core/CMakeFiles/cs_ban.so.dir/rule -.PHONY : cs_ban.so - -# fast build rule for target. -cs_ban.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_ban.so.dir/build.make src/core/CMakeFiles/cs_ban.so.dir/build -.PHONY : cs_ban.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_clear.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_clear.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_clear.so.dir/rule - -# Convenience name for target. -cs_clear.so: src/core/CMakeFiles/cs_clear.so.dir/rule -.PHONY : cs_clear.so - -# fast build rule for target. -cs_clear.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_clear.so.dir/build.make src/core/CMakeFiles/cs_clear.so.dir/build -.PHONY : cs_clear.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_drop.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_drop.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_drop.so.dir/rule - -# Convenience name for target. -cs_drop.so: src/core/CMakeFiles/cs_drop.so.dir/rule -.PHONY : cs_drop.so - -# fast build rule for target. -cs_drop.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_drop.so.dir/build.make src/core/CMakeFiles/cs_drop.so.dir/build -.PHONY : cs_drop.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_forbid.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_forbid.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_forbid.so.dir/rule - -# Convenience name for target. -cs_forbid.so: src/core/CMakeFiles/cs_forbid.so.dir/rule -.PHONY : cs_forbid.so - -# fast build rule for target. -cs_forbid.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_forbid.so.dir/build.make src/core/CMakeFiles/cs_forbid.so.dir/build -.PHONY : cs_forbid.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_getkey.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_getkey.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_getkey.so.dir/rule - -# Convenience name for target. -cs_getkey.so: src/core/CMakeFiles/cs_getkey.so.dir/rule -.PHONY : cs_getkey.so - -# fast build rule for target. -cs_getkey.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_getkey.so.dir/build.make src/core/CMakeFiles/cs_getkey.so.dir/build -.PHONY : cs_getkey.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_getpass.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_getpass.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_getpass.so.dir/rule - -# Convenience name for target. -cs_getpass.so: src/core/CMakeFiles/cs_getpass.so.dir/rule -.PHONY : cs_getpass.so - -# fast build rule for target. -cs_getpass.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_getpass.so.dir/build.make src/core/CMakeFiles/cs_getpass.so.dir/build -.PHONY : cs_getpass.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_help.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_help.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_help.so.dir/rule - -# Convenience name for target. -cs_help.so: src/core/CMakeFiles/cs_help.so.dir/rule -.PHONY : cs_help.so - -# fast build rule for target. -cs_help.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_help.so.dir/build.make src/core/CMakeFiles/cs_help.so.dir/build -.PHONY : cs_help.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_identify.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_identify.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_identify.so.dir/rule - -# Convenience name for target. -cs_identify.so: src/core/CMakeFiles/cs_identify.so.dir/rule -.PHONY : cs_identify.so - -# fast build rule for target. -cs_identify.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_identify.so.dir/build.make src/core/CMakeFiles/cs_identify.so.dir/build -.PHONY : cs_identify.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_info.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_info.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_info.so.dir/rule - -# Convenience name for target. -cs_info.so: src/core/CMakeFiles/cs_info.so.dir/rule -.PHONY : cs_info.so - -# fast build rule for target. -cs_info.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_info.so.dir/build.make src/core/CMakeFiles/cs_info.so.dir/build -.PHONY : cs_info.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_invite.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_invite.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_invite.so.dir/rule - -# Convenience name for target. -cs_invite.so: src/core/CMakeFiles/cs_invite.so.dir/rule -.PHONY : cs_invite.so - -# fast build rule for target. -cs_invite.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_invite.so.dir/build.make src/core/CMakeFiles/cs_invite.so.dir/build -.PHONY : cs_invite.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_kick.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_kick.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_kick.so.dir/rule - -# Convenience name for target. -cs_kick.so: src/core/CMakeFiles/cs_kick.so.dir/rule -.PHONY : cs_kick.so - -# fast build rule for target. -cs_kick.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_kick.so.dir/build.make src/core/CMakeFiles/cs_kick.so.dir/build -.PHONY : cs_kick.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_list.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_list.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_list.so.dir/rule - -# Convenience name for target. -cs_list.so: src/core/CMakeFiles/cs_list.so.dir/rule -.PHONY : cs_list.so - -# fast build rule for target. -cs_list.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_list.so.dir/build.make src/core/CMakeFiles/cs_list.so.dir/build -.PHONY : cs_list.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_logout.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_logout.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_logout.so.dir/rule - -# Convenience name for target. -cs_logout.so: src/core/CMakeFiles/cs_logout.so.dir/rule -.PHONY : cs_logout.so - -# fast build rule for target. -cs_logout.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_logout.so.dir/build.make src/core/CMakeFiles/cs_logout.so.dir/build -.PHONY : cs_logout.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_modes.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_modes.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_modes.so.dir/rule - -# Convenience name for target. -cs_modes.so: src/core/CMakeFiles/cs_modes.so.dir/rule -.PHONY : cs_modes.so - -# fast build rule for target. -cs_modes.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_modes.so.dir/build.make src/core/CMakeFiles/cs_modes.so.dir/build -.PHONY : cs_modes.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_register.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_register.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_register.so.dir/rule - -# Convenience name for target. -cs_register.so: src/core/CMakeFiles/cs_register.so.dir/rule -.PHONY : cs_register.so - -# fast build rule for target. -cs_register.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_register.so.dir/build.make src/core/CMakeFiles/cs_register.so.dir/build -.PHONY : cs_register.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_sendpass.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_sendpass.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_sendpass.so.dir/rule - -# Convenience name for target. -cs_sendpass.so: src/core/CMakeFiles/cs_sendpass.so.dir/rule -.PHONY : cs_sendpass.so - -# fast build rule for target. -cs_sendpass.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_sendpass.so.dir/build.make src/core/CMakeFiles/cs_sendpass.so.dir/build -.PHONY : cs_sendpass.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_set.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_set.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_set.so.dir/rule - -# Convenience name for target. -cs_set.so: src/core/CMakeFiles/cs_set.so.dir/rule -.PHONY : cs_set.so - -# fast build rule for target. -cs_set.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_set.so.dir/build.make src/core/CMakeFiles/cs_set.so.dir/build -.PHONY : cs_set.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_status.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_status.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_status.so.dir/rule - -# Convenience name for target. -cs_status.so: src/core/CMakeFiles/cs_status.so.dir/rule -.PHONY : cs_status.so - -# fast build rule for target. -cs_status.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_status.so.dir/build.make src/core/CMakeFiles/cs_status.so.dir/build -.PHONY : cs_status.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_suspend.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_suspend.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_suspend.so.dir/rule - -# Convenience name for target. -cs_suspend.so: src/core/CMakeFiles/cs_suspend.so.dir/rule -.PHONY : cs_suspend.so - -# fast build rule for target. -cs_suspend.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_suspend.so.dir/build.make src/core/CMakeFiles/cs_suspend.so.dir/build -.PHONY : cs_suspend.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_topic.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_topic.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_topic.so.dir/rule - -# Convenience name for target. -cs_topic.so: src/core/CMakeFiles/cs_topic.so.dir/rule -.PHONY : cs_topic.so - -# fast build rule for target. -cs_topic.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_topic.so.dir/build.make src/core/CMakeFiles/cs_topic.so.dir/build -.PHONY : cs_topic.so/fast - -# Convenience name for target. -src/core/CMakeFiles/cs_xop.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/cs_xop.so.dir/rule -.PHONY : src/core/CMakeFiles/cs_xop.so.dir/rule - -# Convenience name for target. -cs_xop.so: src/core/CMakeFiles/cs_xop.so.dir/rule -.PHONY : cs_xop.so - -# fast build rule for target. -cs_xop.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_xop.so.dir/build.make src/core/CMakeFiles/cs_xop.so.dir/build -.PHONY : cs_xop.so/fast - -# Convenience name for target. -src/core/CMakeFiles/enc_md5.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/enc_md5.so.dir/rule -.PHONY : src/core/CMakeFiles/enc_md5.so.dir/rule - -# Convenience name for target. -enc_md5.so: src/core/CMakeFiles/enc_md5.so.dir/rule -.PHONY : enc_md5.so - -# fast build rule for target. -enc_md5.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_md5.so.dir/build.make src/core/CMakeFiles/enc_md5.so.dir/build -.PHONY : enc_md5.so/fast - -# Convenience name for target. -src/core/CMakeFiles/enc_none.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/enc_none.so.dir/rule -.PHONY : src/core/CMakeFiles/enc_none.so.dir/rule - -# Convenience name for target. -enc_none.so: src/core/CMakeFiles/enc_none.so.dir/rule -.PHONY : enc_none.so - -# fast build rule for target. -enc_none.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_none.so.dir/build.make src/core/CMakeFiles/enc_none.so.dir/build -.PHONY : enc_none.so/fast - -# Convenience name for target. -src/core/CMakeFiles/enc_old.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/enc_old.so.dir/rule -.PHONY : src/core/CMakeFiles/enc_old.so.dir/rule - -# Convenience name for target. -enc_old.so: src/core/CMakeFiles/enc_old.so.dir/rule -.PHONY : enc_old.so - -# fast build rule for target. -enc_old.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_old.so.dir/build.make src/core/CMakeFiles/enc_old.so.dir/build -.PHONY : enc_old.so/fast - -# Convenience name for target. -src/core/CMakeFiles/enc_sha1.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/enc_sha1.so.dir/rule -.PHONY : src/core/CMakeFiles/enc_sha1.so.dir/rule - -# Convenience name for target. -enc_sha1.so: src/core/CMakeFiles/enc_sha1.so.dir/rule -.PHONY : enc_sha1.so - -# fast build rule for target. -enc_sha1.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_sha1.so.dir/build.make src/core/CMakeFiles/enc_sha1.so.dir/build -.PHONY : enc_sha1.so/fast - -# Convenience name for target. -src/core/CMakeFiles/he_help.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/he_help.so.dir/rule -.PHONY : src/core/CMakeFiles/he_help.so.dir/rule - -# Convenience name for target. -he_help.so: src/core/CMakeFiles/he_help.so.dir/rule -.PHONY : he_help.so - -# fast build rule for target. -he_help.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/he_help.so.dir/build.make src/core/CMakeFiles/he_help.so.dir/build -.PHONY : he_help.so/fast - -# Convenience name for target. -src/core/CMakeFiles/hs_del.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/hs_del.so.dir/rule -.PHONY : src/core/CMakeFiles/hs_del.so.dir/rule - -# Convenience name for target. -hs_del.so: src/core/CMakeFiles/hs_del.so.dir/rule -.PHONY : hs_del.so - -# fast build rule for target. -hs_del.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_del.so.dir/build.make src/core/CMakeFiles/hs_del.so.dir/build -.PHONY : hs_del.so/fast - -# Convenience name for target. -src/core/CMakeFiles/hs_delall.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/hs_delall.so.dir/rule -.PHONY : src/core/CMakeFiles/hs_delall.so.dir/rule - -# Convenience name for target. -hs_delall.so: src/core/CMakeFiles/hs_delall.so.dir/rule -.PHONY : hs_delall.so - -# fast build rule for target. -hs_delall.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_delall.so.dir/build.make src/core/CMakeFiles/hs_delall.so.dir/build -.PHONY : hs_delall.so/fast - -# Convenience name for target. -src/core/CMakeFiles/hs_group.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/hs_group.so.dir/rule -.PHONY : src/core/CMakeFiles/hs_group.so.dir/rule - -# Convenience name for target. -hs_group.so: src/core/CMakeFiles/hs_group.so.dir/rule -.PHONY : hs_group.so - -# fast build rule for target. -hs_group.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_group.so.dir/build.make src/core/CMakeFiles/hs_group.so.dir/build -.PHONY : hs_group.so/fast - -# Convenience name for target. -src/core/CMakeFiles/hs_help.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/hs_help.so.dir/rule -.PHONY : src/core/CMakeFiles/hs_help.so.dir/rule - -# Convenience name for target. -hs_help.so: src/core/CMakeFiles/hs_help.so.dir/rule -.PHONY : hs_help.so - -# fast build rule for target. -hs_help.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_help.so.dir/build.make src/core/CMakeFiles/hs_help.so.dir/build -.PHONY : hs_help.so/fast - -# Convenience name for target. -src/core/CMakeFiles/hs_list.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/hs_list.so.dir/rule -.PHONY : src/core/CMakeFiles/hs_list.so.dir/rule - -# Convenience name for target. -hs_list.so: src/core/CMakeFiles/hs_list.so.dir/rule -.PHONY : hs_list.so - -# fast build rule for target. -hs_list.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_list.so.dir/build.make src/core/CMakeFiles/hs_list.so.dir/build -.PHONY : hs_list.so/fast - -# Convenience name for target. -src/core/CMakeFiles/hs_off.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/hs_off.so.dir/rule -.PHONY : src/core/CMakeFiles/hs_off.so.dir/rule - -# Convenience name for target. -hs_off.so: src/core/CMakeFiles/hs_off.so.dir/rule -.PHONY : hs_off.so - -# fast build rule for target. -hs_off.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_off.so.dir/build.make src/core/CMakeFiles/hs_off.so.dir/build -.PHONY : hs_off.so/fast - -# Convenience name for target. -src/core/CMakeFiles/hs_on.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/hs_on.so.dir/rule -.PHONY : src/core/CMakeFiles/hs_on.so.dir/rule - -# Convenience name for target. -hs_on.so: src/core/CMakeFiles/hs_on.so.dir/rule -.PHONY : hs_on.so - -# fast build rule for target. -hs_on.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_on.so.dir/build.make src/core/CMakeFiles/hs_on.so.dir/build -.PHONY : hs_on.so/fast - -# Convenience name for target. -src/core/CMakeFiles/hs_set.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/hs_set.so.dir/rule -.PHONY : src/core/CMakeFiles/hs_set.so.dir/rule - -# Convenience name for target. -hs_set.so: src/core/CMakeFiles/hs_set.so.dir/rule -.PHONY : hs_set.so - -# fast build rule for target. -hs_set.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_set.so.dir/build.make src/core/CMakeFiles/hs_set.so.dir/build -.PHONY : hs_set.so/fast - -# Convenience name for target. -src/core/CMakeFiles/hs_setall.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/hs_setall.so.dir/rule -.PHONY : src/core/CMakeFiles/hs_setall.so.dir/rule - -# Convenience name for target. -hs_setall.so: src/core/CMakeFiles/hs_setall.so.dir/rule -.PHONY : hs_setall.so - -# fast build rule for target. -hs_setall.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_setall.so.dir/build.make src/core/CMakeFiles/hs_setall.so.dir/build -.PHONY : hs_setall.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ms_cancel.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ms_cancel.so.dir/rule -.PHONY : src/core/CMakeFiles/ms_cancel.so.dir/rule - -# Convenience name for target. -ms_cancel.so: src/core/CMakeFiles/ms_cancel.so.dir/rule -.PHONY : ms_cancel.so - -# fast build rule for target. -ms_cancel.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_cancel.so.dir/build.make src/core/CMakeFiles/ms_cancel.so.dir/build -.PHONY : ms_cancel.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ms_check.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ms_check.so.dir/rule -.PHONY : src/core/CMakeFiles/ms_check.so.dir/rule - -# Convenience name for target. -ms_check.so: src/core/CMakeFiles/ms_check.so.dir/rule -.PHONY : ms_check.so - -# fast build rule for target. -ms_check.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_check.so.dir/build.make src/core/CMakeFiles/ms_check.so.dir/build -.PHONY : ms_check.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ms_del.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ms_del.so.dir/rule -.PHONY : src/core/CMakeFiles/ms_del.so.dir/rule - -# Convenience name for target. -ms_del.so: src/core/CMakeFiles/ms_del.so.dir/rule -.PHONY : ms_del.so - -# fast build rule for target. -ms_del.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_del.so.dir/build.make src/core/CMakeFiles/ms_del.so.dir/build -.PHONY : ms_del.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ms_help.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ms_help.so.dir/rule -.PHONY : src/core/CMakeFiles/ms_help.so.dir/rule - -# Convenience name for target. -ms_help.so: src/core/CMakeFiles/ms_help.so.dir/rule -.PHONY : ms_help.so - -# fast build rule for target. -ms_help.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_help.so.dir/build.make src/core/CMakeFiles/ms_help.so.dir/build -.PHONY : ms_help.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ms_info.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ms_info.so.dir/rule -.PHONY : src/core/CMakeFiles/ms_info.so.dir/rule - -# Convenience name for target. -ms_info.so: src/core/CMakeFiles/ms_info.so.dir/rule -.PHONY : ms_info.so - -# fast build rule for target. -ms_info.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_info.so.dir/build.make src/core/CMakeFiles/ms_info.so.dir/build -.PHONY : ms_info.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ms_list.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ms_list.so.dir/rule -.PHONY : src/core/CMakeFiles/ms_list.so.dir/rule - -# Convenience name for target. -ms_list.so: src/core/CMakeFiles/ms_list.so.dir/rule -.PHONY : ms_list.so - -# fast build rule for target. -ms_list.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_list.so.dir/build.make src/core/CMakeFiles/ms_list.so.dir/build -.PHONY : ms_list.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ms_read.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ms_read.so.dir/rule -.PHONY : src/core/CMakeFiles/ms_read.so.dir/rule - -# Convenience name for target. -ms_read.so: src/core/CMakeFiles/ms_read.so.dir/rule -.PHONY : ms_read.so - -# fast build rule for target. -ms_read.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_read.so.dir/build.make src/core/CMakeFiles/ms_read.so.dir/build -.PHONY : ms_read.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ms_rsend.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ms_rsend.so.dir/rule -.PHONY : src/core/CMakeFiles/ms_rsend.so.dir/rule - -# Convenience name for target. -ms_rsend.so: src/core/CMakeFiles/ms_rsend.so.dir/rule -.PHONY : ms_rsend.so - -# fast build rule for target. -ms_rsend.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_rsend.so.dir/build.make src/core/CMakeFiles/ms_rsend.so.dir/build -.PHONY : ms_rsend.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ms_send.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ms_send.so.dir/rule -.PHONY : src/core/CMakeFiles/ms_send.so.dir/rule - -# Convenience name for target. -ms_send.so: src/core/CMakeFiles/ms_send.so.dir/rule -.PHONY : ms_send.so - -# fast build rule for target. -ms_send.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_send.so.dir/build.make src/core/CMakeFiles/ms_send.so.dir/build -.PHONY : ms_send.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ms_sendall.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ms_sendall.so.dir/rule -.PHONY : src/core/CMakeFiles/ms_sendall.so.dir/rule - -# Convenience name for target. -ms_sendall.so: src/core/CMakeFiles/ms_sendall.so.dir/rule -.PHONY : ms_sendall.so - -# fast build rule for target. -ms_sendall.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_sendall.so.dir/build.make src/core/CMakeFiles/ms_sendall.so.dir/build -.PHONY : ms_sendall.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ms_set.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ms_set.so.dir/rule -.PHONY : src/core/CMakeFiles/ms_set.so.dir/rule - -# Convenience name for target. -ms_set.so: src/core/CMakeFiles/ms_set.so.dir/rule -.PHONY : ms_set.so - -# fast build rule for target. -ms_set.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_set.so.dir/build.make src/core/CMakeFiles/ms_set.so.dir/build -.PHONY : ms_set.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ms_staff.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ms_staff.so.dir/rule -.PHONY : src/core/CMakeFiles/ms_staff.so.dir/rule - -# Convenience name for target. -ms_staff.so: src/core/CMakeFiles/ms_staff.so.dir/rule -.PHONY : ms_staff.so - -# fast build rule for target. -ms_staff.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_staff.so.dir/build.make src/core/CMakeFiles/ms_staff.so.dir/build -.PHONY : ms_staff.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_access.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_access.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_access.so.dir/rule - -# Convenience name for target. -ns_access.so: src/core/CMakeFiles/ns_access.so.dir/rule -.PHONY : ns_access.so - -# fast build rule for target. -ns_access.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_access.so.dir/build.make src/core/CMakeFiles/ns_access.so.dir/build -.PHONY : ns_access.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_alist.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_alist.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_alist.so.dir/rule - -# Convenience name for target. -ns_alist.so: src/core/CMakeFiles/ns_alist.so.dir/rule -.PHONY : ns_alist.so - -# fast build rule for target. -ns_alist.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_alist.so.dir/build.make src/core/CMakeFiles/ns_alist.so.dir/build -.PHONY : ns_alist.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_drop.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_drop.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_drop.so.dir/rule - -# Convenience name for target. -ns_drop.so: src/core/CMakeFiles/ns_drop.so.dir/rule -.PHONY : ns_drop.so - -# fast build rule for target. -ns_drop.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_drop.so.dir/build.make src/core/CMakeFiles/ns_drop.so.dir/build -.PHONY : ns_drop.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_forbid.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_forbid.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_forbid.so.dir/rule - -# Convenience name for target. -ns_forbid.so: src/core/CMakeFiles/ns_forbid.so.dir/rule -.PHONY : ns_forbid.so - -# fast build rule for target. -ns_forbid.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_forbid.so.dir/build.make src/core/CMakeFiles/ns_forbid.so.dir/build -.PHONY : ns_forbid.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_getemail.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_getemail.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_getemail.so.dir/rule - -# Convenience name for target. -ns_getemail.so: src/core/CMakeFiles/ns_getemail.so.dir/rule -.PHONY : ns_getemail.so - -# fast build rule for target. -ns_getemail.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_getemail.so.dir/build.make src/core/CMakeFiles/ns_getemail.so.dir/build -.PHONY : ns_getemail.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_getpass.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_getpass.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_getpass.so.dir/rule - -# Convenience name for target. -ns_getpass.so: src/core/CMakeFiles/ns_getpass.so.dir/rule -.PHONY : ns_getpass.so - -# fast build rule for target. -ns_getpass.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_getpass.so.dir/build.make src/core/CMakeFiles/ns_getpass.so.dir/build -.PHONY : ns_getpass.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_ghost.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_ghost.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_ghost.so.dir/rule - -# Convenience name for target. -ns_ghost.so: src/core/CMakeFiles/ns_ghost.so.dir/rule -.PHONY : ns_ghost.so - -# fast build rule for target. -ns_ghost.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_ghost.so.dir/build.make src/core/CMakeFiles/ns_ghost.so.dir/build -.PHONY : ns_ghost.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_group.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_group.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_group.so.dir/rule - -# Convenience name for target. -ns_group.so: src/core/CMakeFiles/ns_group.so.dir/rule -.PHONY : ns_group.so - -# fast build rule for target. -ns_group.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_group.so.dir/build.make src/core/CMakeFiles/ns_group.so.dir/build -.PHONY : ns_group.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_help.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_help.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_help.so.dir/rule - -# Convenience name for target. -ns_help.so: src/core/CMakeFiles/ns_help.so.dir/rule -.PHONY : ns_help.so - -# fast build rule for target. -ns_help.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_help.so.dir/build.make src/core/CMakeFiles/ns_help.so.dir/build -.PHONY : ns_help.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_identify.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_identify.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_identify.so.dir/rule - -# Convenience name for target. -ns_identify.so: src/core/CMakeFiles/ns_identify.so.dir/rule -.PHONY : ns_identify.so - -# fast build rule for target. -ns_identify.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_identify.so.dir/build.make src/core/CMakeFiles/ns_identify.so.dir/build -.PHONY : ns_identify.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_info.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_info.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_info.so.dir/rule - -# Convenience name for target. -ns_info.so: src/core/CMakeFiles/ns_info.so.dir/rule -.PHONY : ns_info.so - -# fast build rule for target. -ns_info.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_info.so.dir/build.make src/core/CMakeFiles/ns_info.so.dir/build -.PHONY : ns_info.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_list.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_list.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_list.so.dir/rule - -# Convenience name for target. -ns_list.so: src/core/CMakeFiles/ns_list.so.dir/rule -.PHONY : ns_list.so - -# fast build rule for target. -ns_list.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_list.so.dir/build.make src/core/CMakeFiles/ns_list.so.dir/build -.PHONY : ns_list.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_logout.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_logout.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_logout.so.dir/rule - -# Convenience name for target. -ns_logout.so: src/core/CMakeFiles/ns_logout.so.dir/rule -.PHONY : ns_logout.so - -# fast build rule for target. -ns_logout.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_logout.so.dir/build.make src/core/CMakeFiles/ns_logout.so.dir/build -.PHONY : ns_logout.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_recover.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_recover.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_recover.so.dir/rule - -# Convenience name for target. -ns_recover.so: src/core/CMakeFiles/ns_recover.so.dir/rule -.PHONY : ns_recover.so - -# fast build rule for target. -ns_recover.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_recover.so.dir/build.make src/core/CMakeFiles/ns_recover.so.dir/build -.PHONY : ns_recover.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_register.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_register.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_register.so.dir/rule - -# Convenience name for target. -ns_register.so: src/core/CMakeFiles/ns_register.so.dir/rule -.PHONY : ns_register.so - -# fast build rule for target. -ns_register.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_register.so.dir/build.make src/core/CMakeFiles/ns_register.so.dir/build -.PHONY : ns_register.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_release.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_release.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_release.so.dir/rule - -# Convenience name for target. -ns_release.so: src/core/CMakeFiles/ns_release.so.dir/rule -.PHONY : ns_release.so - -# fast build rule for target. -ns_release.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_release.so.dir/build.make src/core/CMakeFiles/ns_release.so.dir/build -.PHONY : ns_release.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_saset.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_saset.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_saset.so.dir/rule - -# Convenience name for target. -ns_saset.so: src/core/CMakeFiles/ns_saset.so.dir/rule -.PHONY : ns_saset.so - -# fast build rule for target. -ns_saset.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_saset.so.dir/build.make src/core/CMakeFiles/ns_saset.so.dir/build -.PHONY : ns_saset.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_sendpass.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_sendpass.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_sendpass.so.dir/rule - -# Convenience name for target. -ns_sendpass.so: src/core/CMakeFiles/ns_sendpass.so.dir/rule -.PHONY : ns_sendpass.so - -# fast build rule for target. -ns_sendpass.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_sendpass.so.dir/build.make src/core/CMakeFiles/ns_sendpass.so.dir/build -.PHONY : ns_sendpass.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_set.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_set.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_set.so.dir/rule - -# Convenience name for target. -ns_set.so: src/core/CMakeFiles/ns_set.so.dir/rule -.PHONY : ns_set.so - -# fast build rule for target. -ns_set.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_set.so.dir/build.make src/core/CMakeFiles/ns_set.so.dir/build -.PHONY : ns_set.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_status.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_status.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_status.so.dir/rule - -# Convenience name for target. -ns_status.so: src/core/CMakeFiles/ns_status.so.dir/rule -.PHONY : ns_status.so - -# fast build rule for target. -ns_status.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_status.so.dir/build.make src/core/CMakeFiles/ns_status.so.dir/build -.PHONY : ns_status.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_suspend.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_suspend.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_suspend.so.dir/rule - -# Convenience name for target. -ns_suspend.so: src/core/CMakeFiles/ns_suspend.so.dir/rule -.PHONY : ns_suspend.so - -# fast build rule for target. -ns_suspend.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_suspend.so.dir/build.make src/core/CMakeFiles/ns_suspend.so.dir/build -.PHONY : ns_suspend.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ns_update.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ns_update.so.dir/rule -.PHONY : src/core/CMakeFiles/ns_update.so.dir/rule - -# Convenience name for target. -ns_update.so: src/core/CMakeFiles/ns_update.so.dir/rule -.PHONY : ns_update.so - -# fast build rule for target. -ns_update.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_update.so.dir/build.make src/core/CMakeFiles/ns_update.so.dir/build -.PHONY : ns_update.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_admin.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_admin.so.dir/rule -.PHONY : src/core/CMakeFiles/os_admin.so.dir/rule - -# Convenience name for target. -os_admin.so: src/core/CMakeFiles/os_admin.so.dir/rule -.PHONY : os_admin.so - -# fast build rule for target. -os_admin.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_admin.so.dir/build.make src/core/CMakeFiles/os_admin.so.dir/build -.PHONY : os_admin.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_akill.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_akill.so.dir/rule -.PHONY : src/core/CMakeFiles/os_akill.so.dir/rule - -# Convenience name for target. -os_akill.so: src/core/CMakeFiles/os_akill.so.dir/rule -.PHONY : os_akill.so - -# fast build rule for target. -os_akill.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_akill.so.dir/build.make src/core/CMakeFiles/os_akill.so.dir/build -.PHONY : os_akill.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_chankill.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_chankill.so.dir/rule -.PHONY : src/core/CMakeFiles/os_chankill.so.dir/rule - -# Convenience name for target. -os_chankill.so: src/core/CMakeFiles/os_chankill.so.dir/rule -.PHONY : os_chankill.so - -# fast build rule for target. -os_chankill.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_chankill.so.dir/build.make src/core/CMakeFiles/os_chankill.so.dir/build -.PHONY : os_chankill.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_chanlist.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_chanlist.so.dir/rule -.PHONY : src/core/CMakeFiles/os_chanlist.so.dir/rule - -# Convenience name for target. -os_chanlist.so: src/core/CMakeFiles/os_chanlist.so.dir/rule -.PHONY : os_chanlist.so - -# fast build rule for target. -os_chanlist.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_chanlist.so.dir/build.make src/core/CMakeFiles/os_chanlist.so.dir/build -.PHONY : os_chanlist.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_clearmodes.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_clearmodes.so.dir/rule -.PHONY : src/core/CMakeFiles/os_clearmodes.so.dir/rule - -# Convenience name for target. -os_clearmodes.so: src/core/CMakeFiles/os_clearmodes.so.dir/rule -.PHONY : os_clearmodes.so - -# fast build rule for target. -os_clearmodes.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_clearmodes.so.dir/build.make src/core/CMakeFiles/os_clearmodes.so.dir/build -.PHONY : os_clearmodes.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_defcon.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_defcon.so.dir/rule -.PHONY : src/core/CMakeFiles/os_defcon.so.dir/rule - -# Convenience name for target. -os_defcon.so: src/core/CMakeFiles/os_defcon.so.dir/rule -.PHONY : os_defcon.so - -# fast build rule for target. -os_defcon.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_defcon.so.dir/build.make src/core/CMakeFiles/os_defcon.so.dir/build -.PHONY : os_defcon.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_global.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_global.so.dir/rule -.PHONY : src/core/CMakeFiles/os_global.so.dir/rule - -# Convenience name for target. -os_global.so: src/core/CMakeFiles/os_global.so.dir/rule -.PHONY : os_global.so - -# fast build rule for target. -os_global.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_global.so.dir/build.make src/core/CMakeFiles/os_global.so.dir/build -.PHONY : os_global.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_help.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_help.so.dir/rule -.PHONY : src/core/CMakeFiles/os_help.so.dir/rule - -# Convenience name for target. -os_help.so: src/core/CMakeFiles/os_help.so.dir/rule -.PHONY : os_help.so - -# fast build rule for target. -os_help.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_help.so.dir/build.make src/core/CMakeFiles/os_help.so.dir/build -.PHONY : os_help.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_ignore.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_ignore.so.dir/rule -.PHONY : src/core/CMakeFiles/os_ignore.so.dir/rule - -# Convenience name for target. -os_ignore.so: src/core/CMakeFiles/os_ignore.so.dir/rule -.PHONY : os_ignore.so - -# fast build rule for target. -os_ignore.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_ignore.so.dir/build.make src/core/CMakeFiles/os_ignore.so.dir/build -.PHONY : os_ignore.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_jupe.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_jupe.so.dir/rule -.PHONY : src/core/CMakeFiles/os_jupe.so.dir/rule - -# Convenience name for target. -os_jupe.so: src/core/CMakeFiles/os_jupe.so.dir/rule -.PHONY : os_jupe.so - -# fast build rule for target. -os_jupe.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_jupe.so.dir/build.make src/core/CMakeFiles/os_jupe.so.dir/build -.PHONY : os_jupe.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_kick.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_kick.so.dir/rule -.PHONY : src/core/CMakeFiles/os_kick.so.dir/rule - -# Convenience name for target. -os_kick.so: src/core/CMakeFiles/os_kick.so.dir/rule -.PHONY : os_kick.so - -# fast build rule for target. -os_kick.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_kick.so.dir/build.make src/core/CMakeFiles/os_kick.so.dir/build -.PHONY : os_kick.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_logonnews.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_logonnews.so.dir/rule -.PHONY : src/core/CMakeFiles/os_logonnews.so.dir/rule - -# Convenience name for target. -os_logonnews.so: src/core/CMakeFiles/os_logonnews.so.dir/rule -.PHONY : os_logonnews.so - -# fast build rule for target. -os_logonnews.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_logonnews.so.dir/build.make src/core/CMakeFiles/os_logonnews.so.dir/build -.PHONY : os_logonnews.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_mode.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_mode.so.dir/rule -.PHONY : src/core/CMakeFiles/os_mode.so.dir/rule - -# Convenience name for target. -os_mode.so: src/core/CMakeFiles/os_mode.so.dir/rule -.PHONY : os_mode.so - -# fast build rule for target. -os_mode.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_mode.so.dir/build.make src/core/CMakeFiles/os_mode.so.dir/build -.PHONY : os_mode.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_modinfo.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_modinfo.so.dir/rule -.PHONY : src/core/CMakeFiles/os_modinfo.so.dir/rule - -# Convenience name for target. -os_modinfo.so: src/core/CMakeFiles/os_modinfo.so.dir/rule -.PHONY : os_modinfo.so - -# fast build rule for target. -os_modinfo.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modinfo.so.dir/build.make src/core/CMakeFiles/os_modinfo.so.dir/build -.PHONY : os_modinfo.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_modlist.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_modlist.so.dir/rule -.PHONY : src/core/CMakeFiles/os_modlist.so.dir/rule - -# Convenience name for target. -os_modlist.so: src/core/CMakeFiles/os_modlist.so.dir/rule -.PHONY : os_modlist.so - -# fast build rule for target. -os_modlist.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modlist.so.dir/build.make src/core/CMakeFiles/os_modlist.so.dir/build -.PHONY : os_modlist.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_modload.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_modload.so.dir/rule -.PHONY : src/core/CMakeFiles/os_modload.so.dir/rule - -# Convenience name for target. -os_modload.so: src/core/CMakeFiles/os_modload.so.dir/rule -.PHONY : os_modload.so - -# fast build rule for target. -os_modload.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modload.so.dir/build.make src/core/CMakeFiles/os_modload.so.dir/build -.PHONY : os_modload.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_modunload.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_modunload.so.dir/rule -.PHONY : src/core/CMakeFiles/os_modunload.so.dir/rule - -# Convenience name for target. -os_modunload.so: src/core/CMakeFiles/os_modunload.so.dir/rule -.PHONY : os_modunload.so - -# fast build rule for target. -os_modunload.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modunload.so.dir/build.make src/core/CMakeFiles/os_modunload.so.dir/build -.PHONY : os_modunload.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_noop.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_noop.so.dir/rule -.PHONY : src/core/CMakeFiles/os_noop.so.dir/rule - -# Convenience name for target. -os_noop.so: src/core/CMakeFiles/os_noop.so.dir/rule -.PHONY : os_noop.so - -# fast build rule for target. -os_noop.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_noop.so.dir/build.make src/core/CMakeFiles/os_noop.so.dir/build -.PHONY : os_noop.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_oline.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_oline.so.dir/rule -.PHONY : src/core/CMakeFiles/os_oline.so.dir/rule - -# Convenience name for target. -os_oline.so: src/core/CMakeFiles/os_oline.so.dir/rule -.PHONY : os_oline.so - -# fast build rule for target. -os_oline.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_oline.so.dir/build.make src/core/CMakeFiles/os_oline.so.dir/build -.PHONY : os_oline.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_oper.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_oper.so.dir/rule -.PHONY : src/core/CMakeFiles/os_oper.so.dir/rule - -# Convenience name for target. -os_oper.so: src/core/CMakeFiles/os_oper.so.dir/rule -.PHONY : os_oper.so - -# fast build rule for target. -os_oper.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_oper.so.dir/build.make src/core/CMakeFiles/os_oper.so.dir/build -.PHONY : os_oper.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_opernews.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_opernews.so.dir/rule -.PHONY : src/core/CMakeFiles/os_opernews.so.dir/rule - -# Convenience name for target. -os_opernews.so: src/core/CMakeFiles/os_opernews.so.dir/rule -.PHONY : os_opernews.so - -# fast build rule for target. -os_opernews.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_opernews.so.dir/build.make src/core/CMakeFiles/os_opernews.so.dir/build -.PHONY : os_opernews.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_quit.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_quit.so.dir/rule -.PHONY : src/core/CMakeFiles/os_quit.so.dir/rule - -# Convenience name for target. -os_quit.so: src/core/CMakeFiles/os_quit.so.dir/rule -.PHONY : os_quit.so - -# fast build rule for target. -os_quit.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_quit.so.dir/build.make src/core/CMakeFiles/os_quit.so.dir/build -.PHONY : os_quit.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_randomnews.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_randomnews.so.dir/rule -.PHONY : src/core/CMakeFiles/os_randomnews.so.dir/rule - -# Convenience name for target. -os_randomnews.so: src/core/CMakeFiles/os_randomnews.so.dir/rule -.PHONY : os_randomnews.so - -# fast build rule for target. -os_randomnews.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_randomnews.so.dir/build.make src/core/CMakeFiles/os_randomnews.so.dir/build -.PHONY : os_randomnews.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_raw.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_raw.so.dir/rule -.PHONY : src/core/CMakeFiles/os_raw.so.dir/rule - -# Convenience name for target. -os_raw.so: src/core/CMakeFiles/os_raw.so.dir/rule -.PHONY : os_raw.so - -# fast build rule for target. -os_raw.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_raw.so.dir/build.make src/core/CMakeFiles/os_raw.so.dir/build -.PHONY : os_raw.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_reload.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_reload.so.dir/rule -.PHONY : src/core/CMakeFiles/os_reload.so.dir/rule - -# Convenience name for target. -os_reload.so: src/core/CMakeFiles/os_reload.so.dir/rule -.PHONY : os_reload.so - -# fast build rule for target. -os_reload.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_reload.so.dir/build.make src/core/CMakeFiles/os_reload.so.dir/build -.PHONY : os_reload.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_restart.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_restart.so.dir/rule -.PHONY : src/core/CMakeFiles/os_restart.so.dir/rule - -# Convenience name for target. -os_restart.so: src/core/CMakeFiles/os_restart.so.dir/rule -.PHONY : os_restart.so - -# fast build rule for target. -os_restart.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_restart.so.dir/build.make src/core/CMakeFiles/os_restart.so.dir/build -.PHONY : os_restart.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_session.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_session.so.dir/rule -.PHONY : src/core/CMakeFiles/os_session.so.dir/rule - -# Convenience name for target. -os_session.so: src/core/CMakeFiles/os_session.so.dir/rule -.PHONY : os_session.so - -# fast build rule for target. -os_session.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_session.so.dir/build.make src/core/CMakeFiles/os_session.so.dir/build -.PHONY : os_session.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_set.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_set.so.dir/rule -.PHONY : src/core/CMakeFiles/os_set.so.dir/rule - -# Convenience name for target. -os_set.so: src/core/CMakeFiles/os_set.so.dir/rule -.PHONY : os_set.so - -# fast build rule for target. -os_set.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_set.so.dir/build.make src/core/CMakeFiles/os_set.so.dir/build -.PHONY : os_set.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_sgline.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_sgline.so.dir/rule -.PHONY : src/core/CMakeFiles/os_sgline.so.dir/rule - -# Convenience name for target. -os_sgline.so: src/core/CMakeFiles/os_sgline.so.dir/rule -.PHONY : os_sgline.so - -# fast build rule for target. -os_sgline.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_sgline.so.dir/build.make src/core/CMakeFiles/os_sgline.so.dir/build -.PHONY : os_sgline.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_shutdown.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_shutdown.so.dir/rule -.PHONY : src/core/CMakeFiles/os_shutdown.so.dir/rule - -# Convenience name for target. -os_shutdown.so: src/core/CMakeFiles/os_shutdown.so.dir/rule -.PHONY : os_shutdown.so - -# fast build rule for target. -os_shutdown.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_shutdown.so.dir/build.make src/core/CMakeFiles/os_shutdown.so.dir/build -.PHONY : os_shutdown.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_sqline.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_sqline.so.dir/rule -.PHONY : src/core/CMakeFiles/os_sqline.so.dir/rule - -# Convenience name for target. -os_sqline.so: src/core/CMakeFiles/os_sqline.so.dir/rule -.PHONY : os_sqline.so - -# fast build rule for target. -os_sqline.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_sqline.so.dir/build.make src/core/CMakeFiles/os_sqline.so.dir/build -.PHONY : os_sqline.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_staff.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_staff.so.dir/rule -.PHONY : src/core/CMakeFiles/os_staff.so.dir/rule - -# Convenience name for target. -os_staff.so: src/core/CMakeFiles/os_staff.so.dir/rule -.PHONY : os_staff.so - -# fast build rule for target. -os_staff.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_staff.so.dir/build.make src/core/CMakeFiles/os_staff.so.dir/build -.PHONY : os_staff.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_stats.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_stats.so.dir/rule -.PHONY : src/core/CMakeFiles/os_stats.so.dir/rule - -# Convenience name for target. -os_stats.so: src/core/CMakeFiles/os_stats.so.dir/rule -.PHONY : os_stats.so - -# fast build rule for target. -os_stats.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_stats.so.dir/build.make src/core/CMakeFiles/os_stats.so.dir/build -.PHONY : os_stats.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_svsnick.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_svsnick.so.dir/rule -.PHONY : src/core/CMakeFiles/os_svsnick.so.dir/rule - -# Convenience name for target. -os_svsnick.so: src/core/CMakeFiles/os_svsnick.so.dir/rule -.PHONY : os_svsnick.so - -# fast build rule for target. -os_svsnick.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_svsnick.so.dir/build.make src/core/CMakeFiles/os_svsnick.so.dir/build -.PHONY : os_svsnick.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_szline.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_szline.so.dir/rule -.PHONY : src/core/CMakeFiles/os_szline.so.dir/rule - -# Convenience name for target. -os_szline.so: src/core/CMakeFiles/os_szline.so.dir/rule -.PHONY : os_szline.so - -# fast build rule for target. -os_szline.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_szline.so.dir/build.make src/core/CMakeFiles/os_szline.so.dir/build -.PHONY : os_szline.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_umode.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_umode.so.dir/rule -.PHONY : src/core/CMakeFiles/os_umode.so.dir/rule - -# Convenience name for target. -os_umode.so: src/core/CMakeFiles/os_umode.so.dir/rule -.PHONY : os_umode.so - -# fast build rule for target. -os_umode.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_umode.so.dir/build.make src/core/CMakeFiles/os_umode.so.dir/build -.PHONY : os_umode.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_update.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_update.so.dir/rule -.PHONY : src/core/CMakeFiles/os_update.so.dir/rule - -# Convenience name for target. -os_update.so: src/core/CMakeFiles/os_update.so.dir/rule -.PHONY : os_update.so - -# fast build rule for target. -os_update.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_update.so.dir/build.make src/core/CMakeFiles/os_update.so.dir/build -.PHONY : os_update.so/fast - -# Convenience name for target. -src/core/CMakeFiles/os_userlist.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/os_userlist.so.dir/rule -.PHONY : src/core/CMakeFiles/os_userlist.so.dir/rule - -# Convenience name for target. -os_userlist.so: src/core/CMakeFiles/os_userlist.so.dir/rule -.PHONY : os_userlist.so - -# fast build rule for target. -os_userlist.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_userlist.so.dir/build.make src/core/CMakeFiles/os_userlist.so.dir/build -.PHONY : os_userlist.so/fast - -# Convenience name for target. -src/core/CMakeFiles/ss_main.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/core/CMakeFiles/ss_main.so.dir/rule -.PHONY : src/core/CMakeFiles/ss_main.so.dir/rule - -# Convenience name for target. -ss_main.so: src/core/CMakeFiles/ss_main.so.dir/rule -.PHONY : ss_main.so - -# fast build rule for target. -ss_main.so/fast: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ss_main.so.dir/build.make src/core/CMakeFiles/ss_main.so.dir/build -.PHONY : ss_main.so/fast - -bs_act.o: bs_act.c.o -.PHONY : bs_act.o - -# target to build an object file -bs_act.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_act.so.dir/build.make src/core/CMakeFiles/bs_act.so.dir/bs_act.c.o -.PHONY : bs_act.c.o - -bs_act.i: bs_act.c.i -.PHONY : bs_act.i - -# target to preprocess a source file -bs_act.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_act.so.dir/build.make src/core/CMakeFiles/bs_act.so.dir/bs_act.c.i -.PHONY : bs_act.c.i - -bs_act.s: bs_act.c.s -.PHONY : bs_act.s - -# target to generate assembly for a file -bs_act.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_act.so.dir/build.make src/core/CMakeFiles/bs_act.so.dir/bs_act.c.s -.PHONY : bs_act.c.s - -bs_assign.o: bs_assign.c.o -.PHONY : bs_assign.o - -# target to build an object file -bs_assign.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_assign.so.dir/build.make src/core/CMakeFiles/bs_assign.so.dir/bs_assign.c.o -.PHONY : bs_assign.c.o - -bs_assign.i: bs_assign.c.i -.PHONY : bs_assign.i - -# target to preprocess a source file -bs_assign.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_assign.so.dir/build.make src/core/CMakeFiles/bs_assign.so.dir/bs_assign.c.i -.PHONY : bs_assign.c.i - -bs_assign.s: bs_assign.c.s -.PHONY : bs_assign.s - -# target to generate assembly for a file -bs_assign.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_assign.so.dir/build.make src/core/CMakeFiles/bs_assign.so.dir/bs_assign.c.s -.PHONY : bs_assign.c.s - -bs_badwords.o: bs_badwords.c.o -.PHONY : bs_badwords.o - -# target to build an object file -bs_badwords.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_badwords.so.dir/build.make src/core/CMakeFiles/bs_badwords.so.dir/bs_badwords.c.o -.PHONY : bs_badwords.c.o - -bs_badwords.i: bs_badwords.c.i -.PHONY : bs_badwords.i - -# target to preprocess a source file -bs_badwords.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_badwords.so.dir/build.make src/core/CMakeFiles/bs_badwords.so.dir/bs_badwords.c.i -.PHONY : bs_badwords.c.i - -bs_badwords.s: bs_badwords.c.s -.PHONY : bs_badwords.s - -# target to generate assembly for a file -bs_badwords.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_badwords.so.dir/build.make src/core/CMakeFiles/bs_badwords.so.dir/bs_badwords.c.s -.PHONY : bs_badwords.c.s - -bs_bot.o: bs_bot.c.o -.PHONY : bs_bot.o - -# target to build an object file -bs_bot.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_bot.so.dir/build.make src/core/CMakeFiles/bs_bot.so.dir/bs_bot.c.o -.PHONY : bs_bot.c.o - -bs_bot.i: bs_bot.c.i -.PHONY : bs_bot.i - -# target to preprocess a source file -bs_bot.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_bot.so.dir/build.make src/core/CMakeFiles/bs_bot.so.dir/bs_bot.c.i -.PHONY : bs_bot.c.i - -bs_bot.s: bs_bot.c.s -.PHONY : bs_bot.s - -# target to generate assembly for a file -bs_bot.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_bot.so.dir/build.make src/core/CMakeFiles/bs_bot.so.dir/bs_bot.c.s -.PHONY : bs_bot.c.s - -bs_botlist.o: bs_botlist.c.o -.PHONY : bs_botlist.o - -# target to build an object file -bs_botlist.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_botlist.so.dir/build.make src/core/CMakeFiles/bs_botlist.so.dir/bs_botlist.c.o -.PHONY : bs_botlist.c.o - -bs_botlist.i: bs_botlist.c.i -.PHONY : bs_botlist.i - -# target to preprocess a source file -bs_botlist.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_botlist.so.dir/build.make src/core/CMakeFiles/bs_botlist.so.dir/bs_botlist.c.i -.PHONY : bs_botlist.c.i - -bs_botlist.s: bs_botlist.c.s -.PHONY : bs_botlist.s - -# target to generate assembly for a file -bs_botlist.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_botlist.so.dir/build.make src/core/CMakeFiles/bs_botlist.so.dir/bs_botlist.c.s -.PHONY : bs_botlist.c.s - -bs_fantasy.o: bs_fantasy.c.o -.PHONY : bs_fantasy.o - -# target to build an object file -bs_fantasy.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy.so.dir/build.make src/core/CMakeFiles/bs_fantasy.so.dir/bs_fantasy.c.o -.PHONY : bs_fantasy.c.o - -bs_fantasy.i: bs_fantasy.c.i -.PHONY : bs_fantasy.i - -# target to preprocess a source file -bs_fantasy.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy.so.dir/build.make src/core/CMakeFiles/bs_fantasy.so.dir/bs_fantasy.c.i -.PHONY : bs_fantasy.c.i - -bs_fantasy.s: bs_fantasy.c.s -.PHONY : bs_fantasy.s - -# target to generate assembly for a file -bs_fantasy.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy.so.dir/build.make src/core/CMakeFiles/bs_fantasy.so.dir/bs_fantasy.c.s -.PHONY : bs_fantasy.c.s - -bs_fantasy_kick.o: bs_fantasy_kick.c.o -.PHONY : bs_fantasy_kick.o - -# target to build an object file -bs_fantasy_kick.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_kick.so.dir/build.make src/core/CMakeFiles/bs_fantasy_kick.so.dir/bs_fantasy_kick.c.o -.PHONY : bs_fantasy_kick.c.o - -bs_fantasy_kick.i: bs_fantasy_kick.c.i -.PHONY : bs_fantasy_kick.i - -# target to preprocess a source file -bs_fantasy_kick.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_kick.so.dir/build.make src/core/CMakeFiles/bs_fantasy_kick.so.dir/bs_fantasy_kick.c.i -.PHONY : bs_fantasy_kick.c.i - -bs_fantasy_kick.s: bs_fantasy_kick.c.s -.PHONY : bs_fantasy_kick.s - -# target to generate assembly for a file -bs_fantasy_kick.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_kick.so.dir/build.make src/core/CMakeFiles/bs_fantasy_kick.so.dir/bs_fantasy_kick.c.s -.PHONY : bs_fantasy_kick.c.s - -bs_fantasy_kickban.o: bs_fantasy_kickban.c.o -.PHONY : bs_fantasy_kickban.o - -# target to build an object file -bs_fantasy_kickban.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_kickban.so.dir/build.make src/core/CMakeFiles/bs_fantasy_kickban.so.dir/bs_fantasy_kickban.c.o -.PHONY : bs_fantasy_kickban.c.o - -bs_fantasy_kickban.i: bs_fantasy_kickban.c.i -.PHONY : bs_fantasy_kickban.i - -# target to preprocess a source file -bs_fantasy_kickban.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_kickban.so.dir/build.make src/core/CMakeFiles/bs_fantasy_kickban.so.dir/bs_fantasy_kickban.c.i -.PHONY : bs_fantasy_kickban.c.i - -bs_fantasy_kickban.s: bs_fantasy_kickban.c.s -.PHONY : bs_fantasy_kickban.s - -# target to generate assembly for a file -bs_fantasy_kickban.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_kickban.so.dir/build.make src/core/CMakeFiles/bs_fantasy_kickban.so.dir/bs_fantasy_kickban.c.s -.PHONY : bs_fantasy_kickban.c.s - -bs_fantasy_owner.o: bs_fantasy_owner.c.o -.PHONY : bs_fantasy_owner.o - -# target to build an object file -bs_fantasy_owner.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_owner.so.dir/build.make src/core/CMakeFiles/bs_fantasy_owner.so.dir/bs_fantasy_owner.c.o -.PHONY : bs_fantasy_owner.c.o - -bs_fantasy_owner.i: bs_fantasy_owner.c.i -.PHONY : bs_fantasy_owner.i - -# target to preprocess a source file -bs_fantasy_owner.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_owner.so.dir/build.make src/core/CMakeFiles/bs_fantasy_owner.so.dir/bs_fantasy_owner.c.i -.PHONY : bs_fantasy_owner.c.i - -bs_fantasy_owner.s: bs_fantasy_owner.c.s -.PHONY : bs_fantasy_owner.s - -# target to generate assembly for a file -bs_fantasy_owner.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_owner.so.dir/build.make src/core/CMakeFiles/bs_fantasy_owner.so.dir/bs_fantasy_owner.c.s -.PHONY : bs_fantasy_owner.c.s - -bs_fantasy_seen.o: bs_fantasy_seen.c.o -.PHONY : bs_fantasy_seen.o - -# target to build an object file -bs_fantasy_seen.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_seen.so.dir/build.make src/core/CMakeFiles/bs_fantasy_seen.so.dir/bs_fantasy_seen.c.o -.PHONY : bs_fantasy_seen.c.o - -bs_fantasy_seen.i: bs_fantasy_seen.c.i -.PHONY : bs_fantasy_seen.i - -# target to preprocess a source file -bs_fantasy_seen.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_seen.so.dir/build.make src/core/CMakeFiles/bs_fantasy_seen.so.dir/bs_fantasy_seen.c.i -.PHONY : bs_fantasy_seen.c.i - -bs_fantasy_seen.s: bs_fantasy_seen.c.s -.PHONY : bs_fantasy_seen.s - -# target to generate assembly for a file -bs_fantasy_seen.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_fantasy_seen.so.dir/build.make src/core/CMakeFiles/bs_fantasy_seen.so.dir/bs_fantasy_seen.c.s -.PHONY : bs_fantasy_seen.c.s - -bs_help.o: bs_help.c.o -.PHONY : bs_help.o - -# target to build an object file -bs_help.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_help.so.dir/build.make src/core/CMakeFiles/bs_help.so.dir/bs_help.c.o -.PHONY : bs_help.c.o - -bs_help.i: bs_help.c.i -.PHONY : bs_help.i - -# target to preprocess a source file -bs_help.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_help.so.dir/build.make src/core/CMakeFiles/bs_help.so.dir/bs_help.c.i -.PHONY : bs_help.c.i - -bs_help.s: bs_help.c.s -.PHONY : bs_help.s - -# target to generate assembly for a file -bs_help.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_help.so.dir/build.make src/core/CMakeFiles/bs_help.so.dir/bs_help.c.s -.PHONY : bs_help.c.s - -bs_info.o: bs_info.c.o -.PHONY : bs_info.o - -# target to build an object file -bs_info.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_info.so.dir/build.make src/core/CMakeFiles/bs_info.so.dir/bs_info.c.o -.PHONY : bs_info.c.o - -bs_info.i: bs_info.c.i -.PHONY : bs_info.i - -# target to preprocess a source file -bs_info.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_info.so.dir/build.make src/core/CMakeFiles/bs_info.so.dir/bs_info.c.i -.PHONY : bs_info.c.i - -bs_info.s: bs_info.c.s -.PHONY : bs_info.s - -# target to generate assembly for a file -bs_info.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_info.so.dir/build.make src/core/CMakeFiles/bs_info.so.dir/bs_info.c.s -.PHONY : bs_info.c.s - -bs_kick.o: bs_kick.c.o -.PHONY : bs_kick.o - -# target to build an object file -bs_kick.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_kick.so.dir/build.make src/core/CMakeFiles/bs_kick.so.dir/bs_kick.c.o -.PHONY : bs_kick.c.o - -bs_kick.i: bs_kick.c.i -.PHONY : bs_kick.i - -# target to preprocess a source file -bs_kick.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_kick.so.dir/build.make src/core/CMakeFiles/bs_kick.so.dir/bs_kick.c.i -.PHONY : bs_kick.c.i - -bs_kick.s: bs_kick.c.s -.PHONY : bs_kick.s - -# target to generate assembly for a file -bs_kick.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_kick.so.dir/build.make src/core/CMakeFiles/bs_kick.so.dir/bs_kick.c.s -.PHONY : bs_kick.c.s - -bs_say.o: bs_say.c.o -.PHONY : bs_say.o - -# target to build an object file -bs_say.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_say.so.dir/build.make src/core/CMakeFiles/bs_say.so.dir/bs_say.c.o -.PHONY : bs_say.c.o - -bs_say.i: bs_say.c.i -.PHONY : bs_say.i - -# target to preprocess a source file -bs_say.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_say.so.dir/build.make src/core/CMakeFiles/bs_say.so.dir/bs_say.c.i -.PHONY : bs_say.c.i - -bs_say.s: bs_say.c.s -.PHONY : bs_say.s - -# target to generate assembly for a file -bs_say.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_say.so.dir/build.make src/core/CMakeFiles/bs_say.so.dir/bs_say.c.s -.PHONY : bs_say.c.s - -bs_set.o: bs_set.c.o -.PHONY : bs_set.o - -# target to build an object file -bs_set.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_set.so.dir/build.make src/core/CMakeFiles/bs_set.so.dir/bs_set.c.o -.PHONY : bs_set.c.o - -bs_set.i: bs_set.c.i -.PHONY : bs_set.i - -# target to preprocess a source file -bs_set.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_set.so.dir/build.make src/core/CMakeFiles/bs_set.so.dir/bs_set.c.i -.PHONY : bs_set.c.i - -bs_set.s: bs_set.c.s -.PHONY : bs_set.s - -# target to generate assembly for a file -bs_set.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_set.so.dir/build.make src/core/CMakeFiles/bs_set.so.dir/bs_set.c.s -.PHONY : bs_set.c.s - -bs_unassign.o: bs_unassign.c.o -.PHONY : bs_unassign.o - -# target to build an object file -bs_unassign.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_unassign.so.dir/build.make src/core/CMakeFiles/bs_unassign.so.dir/bs_unassign.c.o -.PHONY : bs_unassign.c.o - -bs_unassign.i: bs_unassign.c.i -.PHONY : bs_unassign.i - -# target to preprocess a source file -bs_unassign.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_unassign.so.dir/build.make src/core/CMakeFiles/bs_unassign.so.dir/bs_unassign.c.i -.PHONY : bs_unassign.c.i - -bs_unassign.s: bs_unassign.c.s -.PHONY : bs_unassign.s - -# target to generate assembly for a file -bs_unassign.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/bs_unassign.so.dir/build.make src/core/CMakeFiles/bs_unassign.so.dir/bs_unassign.c.s -.PHONY : bs_unassign.c.s - -cs_access.o: cs_access.c.o -.PHONY : cs_access.o - -# target to build an object file -cs_access.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_access.so.dir/build.make src/core/CMakeFiles/cs_access.so.dir/cs_access.c.o -.PHONY : cs_access.c.o - -cs_access.i: cs_access.c.i -.PHONY : cs_access.i - -# target to preprocess a source file -cs_access.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_access.so.dir/build.make src/core/CMakeFiles/cs_access.so.dir/cs_access.c.i -.PHONY : cs_access.c.i - -cs_access.s: cs_access.c.s -.PHONY : cs_access.s - -# target to generate assembly for a file -cs_access.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_access.so.dir/build.make src/core/CMakeFiles/cs_access.so.dir/cs_access.c.s -.PHONY : cs_access.c.s - -cs_akick.o: cs_akick.c.o -.PHONY : cs_akick.o - -# target to build an object file -cs_akick.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_akick.so.dir/build.make src/core/CMakeFiles/cs_akick.so.dir/cs_akick.c.o -.PHONY : cs_akick.c.o - -cs_akick.i: cs_akick.c.i -.PHONY : cs_akick.i - -# target to preprocess a source file -cs_akick.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_akick.so.dir/build.make src/core/CMakeFiles/cs_akick.so.dir/cs_akick.c.i -.PHONY : cs_akick.c.i - -cs_akick.s: cs_akick.c.s -.PHONY : cs_akick.s - -# target to generate assembly for a file -cs_akick.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_akick.so.dir/build.make src/core/CMakeFiles/cs_akick.so.dir/cs_akick.c.s -.PHONY : cs_akick.c.s - -cs_ban.o: cs_ban.c.o -.PHONY : cs_ban.o - -# target to build an object file -cs_ban.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_ban.so.dir/build.make src/core/CMakeFiles/cs_ban.so.dir/cs_ban.c.o -.PHONY : cs_ban.c.o - -cs_ban.i: cs_ban.c.i -.PHONY : cs_ban.i - -# target to preprocess a source file -cs_ban.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_ban.so.dir/build.make src/core/CMakeFiles/cs_ban.so.dir/cs_ban.c.i -.PHONY : cs_ban.c.i - -cs_ban.s: cs_ban.c.s -.PHONY : cs_ban.s - -# target to generate assembly for a file -cs_ban.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_ban.so.dir/build.make src/core/CMakeFiles/cs_ban.so.dir/cs_ban.c.s -.PHONY : cs_ban.c.s - -cs_clear.o: cs_clear.c.o -.PHONY : cs_clear.o - -# target to build an object file -cs_clear.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_clear.so.dir/build.make src/core/CMakeFiles/cs_clear.so.dir/cs_clear.c.o -.PHONY : cs_clear.c.o - -cs_clear.i: cs_clear.c.i -.PHONY : cs_clear.i - -# target to preprocess a source file -cs_clear.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_clear.so.dir/build.make src/core/CMakeFiles/cs_clear.so.dir/cs_clear.c.i -.PHONY : cs_clear.c.i - -cs_clear.s: cs_clear.c.s -.PHONY : cs_clear.s - -# target to generate assembly for a file -cs_clear.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_clear.so.dir/build.make src/core/CMakeFiles/cs_clear.so.dir/cs_clear.c.s -.PHONY : cs_clear.c.s - -cs_drop.o: cs_drop.c.o -.PHONY : cs_drop.o - -# target to build an object file -cs_drop.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_drop.so.dir/build.make src/core/CMakeFiles/cs_drop.so.dir/cs_drop.c.o -.PHONY : cs_drop.c.o - -cs_drop.i: cs_drop.c.i -.PHONY : cs_drop.i - -# target to preprocess a source file -cs_drop.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_drop.so.dir/build.make src/core/CMakeFiles/cs_drop.so.dir/cs_drop.c.i -.PHONY : cs_drop.c.i - -cs_drop.s: cs_drop.c.s -.PHONY : cs_drop.s - -# target to generate assembly for a file -cs_drop.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_drop.so.dir/build.make src/core/CMakeFiles/cs_drop.so.dir/cs_drop.c.s -.PHONY : cs_drop.c.s - -cs_forbid.o: cs_forbid.c.o -.PHONY : cs_forbid.o - -# target to build an object file -cs_forbid.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_forbid.so.dir/build.make src/core/CMakeFiles/cs_forbid.so.dir/cs_forbid.c.o -.PHONY : cs_forbid.c.o - -cs_forbid.i: cs_forbid.c.i -.PHONY : cs_forbid.i - -# target to preprocess a source file -cs_forbid.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_forbid.so.dir/build.make src/core/CMakeFiles/cs_forbid.so.dir/cs_forbid.c.i -.PHONY : cs_forbid.c.i - -cs_forbid.s: cs_forbid.c.s -.PHONY : cs_forbid.s - -# target to generate assembly for a file -cs_forbid.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_forbid.so.dir/build.make src/core/CMakeFiles/cs_forbid.so.dir/cs_forbid.c.s -.PHONY : cs_forbid.c.s - -cs_getkey.o: cs_getkey.c.o -.PHONY : cs_getkey.o - -# target to build an object file -cs_getkey.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_getkey.so.dir/build.make src/core/CMakeFiles/cs_getkey.so.dir/cs_getkey.c.o -.PHONY : cs_getkey.c.o - -cs_getkey.i: cs_getkey.c.i -.PHONY : cs_getkey.i - -# target to preprocess a source file -cs_getkey.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_getkey.so.dir/build.make src/core/CMakeFiles/cs_getkey.so.dir/cs_getkey.c.i -.PHONY : cs_getkey.c.i - -cs_getkey.s: cs_getkey.c.s -.PHONY : cs_getkey.s - -# target to generate assembly for a file -cs_getkey.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_getkey.so.dir/build.make src/core/CMakeFiles/cs_getkey.so.dir/cs_getkey.c.s -.PHONY : cs_getkey.c.s - -cs_getpass.o: cs_getpass.c.o -.PHONY : cs_getpass.o - -# target to build an object file -cs_getpass.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_getpass.so.dir/build.make src/core/CMakeFiles/cs_getpass.so.dir/cs_getpass.c.o -.PHONY : cs_getpass.c.o - -cs_getpass.i: cs_getpass.c.i -.PHONY : cs_getpass.i - -# target to preprocess a source file -cs_getpass.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_getpass.so.dir/build.make src/core/CMakeFiles/cs_getpass.so.dir/cs_getpass.c.i -.PHONY : cs_getpass.c.i - -cs_getpass.s: cs_getpass.c.s -.PHONY : cs_getpass.s - -# target to generate assembly for a file -cs_getpass.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_getpass.so.dir/build.make src/core/CMakeFiles/cs_getpass.so.dir/cs_getpass.c.s -.PHONY : cs_getpass.c.s - -cs_help.o: cs_help.c.o -.PHONY : cs_help.o - -# target to build an object file -cs_help.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_help.so.dir/build.make src/core/CMakeFiles/cs_help.so.dir/cs_help.c.o -.PHONY : cs_help.c.o - -cs_help.i: cs_help.c.i -.PHONY : cs_help.i - -# target to preprocess a source file -cs_help.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_help.so.dir/build.make src/core/CMakeFiles/cs_help.so.dir/cs_help.c.i -.PHONY : cs_help.c.i - -cs_help.s: cs_help.c.s -.PHONY : cs_help.s - -# target to generate assembly for a file -cs_help.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_help.so.dir/build.make src/core/CMakeFiles/cs_help.so.dir/cs_help.c.s -.PHONY : cs_help.c.s - -cs_identify.o: cs_identify.c.o -.PHONY : cs_identify.o - -# target to build an object file -cs_identify.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_identify.so.dir/build.make src/core/CMakeFiles/cs_identify.so.dir/cs_identify.c.o -.PHONY : cs_identify.c.o - -cs_identify.i: cs_identify.c.i -.PHONY : cs_identify.i - -# target to preprocess a source file -cs_identify.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_identify.so.dir/build.make src/core/CMakeFiles/cs_identify.so.dir/cs_identify.c.i -.PHONY : cs_identify.c.i - -cs_identify.s: cs_identify.c.s -.PHONY : cs_identify.s - -# target to generate assembly for a file -cs_identify.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_identify.so.dir/build.make src/core/CMakeFiles/cs_identify.so.dir/cs_identify.c.s -.PHONY : cs_identify.c.s - -cs_info.o: cs_info.c.o -.PHONY : cs_info.o - -# target to build an object file -cs_info.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_info.so.dir/build.make src/core/CMakeFiles/cs_info.so.dir/cs_info.c.o -.PHONY : cs_info.c.o - -cs_info.i: cs_info.c.i -.PHONY : cs_info.i - -# target to preprocess a source file -cs_info.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_info.so.dir/build.make src/core/CMakeFiles/cs_info.so.dir/cs_info.c.i -.PHONY : cs_info.c.i - -cs_info.s: cs_info.c.s -.PHONY : cs_info.s - -# target to generate assembly for a file -cs_info.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_info.so.dir/build.make src/core/CMakeFiles/cs_info.so.dir/cs_info.c.s -.PHONY : cs_info.c.s - -cs_invite.o: cs_invite.c.o -.PHONY : cs_invite.o - -# target to build an object file -cs_invite.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_invite.so.dir/build.make src/core/CMakeFiles/cs_invite.so.dir/cs_invite.c.o -.PHONY : cs_invite.c.o - -cs_invite.i: cs_invite.c.i -.PHONY : cs_invite.i - -# target to preprocess a source file -cs_invite.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_invite.so.dir/build.make src/core/CMakeFiles/cs_invite.so.dir/cs_invite.c.i -.PHONY : cs_invite.c.i - -cs_invite.s: cs_invite.c.s -.PHONY : cs_invite.s - -# target to generate assembly for a file -cs_invite.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_invite.so.dir/build.make src/core/CMakeFiles/cs_invite.so.dir/cs_invite.c.s -.PHONY : cs_invite.c.s - -cs_kick.o: cs_kick.c.o -.PHONY : cs_kick.o - -# target to build an object file -cs_kick.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_kick.so.dir/build.make src/core/CMakeFiles/cs_kick.so.dir/cs_kick.c.o -.PHONY : cs_kick.c.o - -cs_kick.i: cs_kick.c.i -.PHONY : cs_kick.i - -# target to preprocess a source file -cs_kick.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_kick.so.dir/build.make src/core/CMakeFiles/cs_kick.so.dir/cs_kick.c.i -.PHONY : cs_kick.c.i - -cs_kick.s: cs_kick.c.s -.PHONY : cs_kick.s - -# target to generate assembly for a file -cs_kick.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_kick.so.dir/build.make src/core/CMakeFiles/cs_kick.so.dir/cs_kick.c.s -.PHONY : cs_kick.c.s - -cs_list.o: cs_list.c.o -.PHONY : cs_list.o - -# target to build an object file -cs_list.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_list.so.dir/build.make src/core/CMakeFiles/cs_list.so.dir/cs_list.c.o -.PHONY : cs_list.c.o - -cs_list.i: cs_list.c.i -.PHONY : cs_list.i - -# target to preprocess a source file -cs_list.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_list.so.dir/build.make src/core/CMakeFiles/cs_list.so.dir/cs_list.c.i -.PHONY : cs_list.c.i - -cs_list.s: cs_list.c.s -.PHONY : cs_list.s - -# target to generate assembly for a file -cs_list.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_list.so.dir/build.make src/core/CMakeFiles/cs_list.so.dir/cs_list.c.s -.PHONY : cs_list.c.s - -cs_logout.o: cs_logout.c.o -.PHONY : cs_logout.o - -# target to build an object file -cs_logout.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_logout.so.dir/build.make src/core/CMakeFiles/cs_logout.so.dir/cs_logout.c.o -.PHONY : cs_logout.c.o - -cs_logout.i: cs_logout.c.i -.PHONY : cs_logout.i - -# target to preprocess a source file -cs_logout.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_logout.so.dir/build.make src/core/CMakeFiles/cs_logout.so.dir/cs_logout.c.i -.PHONY : cs_logout.c.i - -cs_logout.s: cs_logout.c.s -.PHONY : cs_logout.s - -# target to generate assembly for a file -cs_logout.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_logout.so.dir/build.make src/core/CMakeFiles/cs_logout.so.dir/cs_logout.c.s -.PHONY : cs_logout.c.s - -cs_modes.o: cs_modes.c.o -.PHONY : cs_modes.o - -# target to build an object file -cs_modes.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_modes.so.dir/build.make src/core/CMakeFiles/cs_modes.so.dir/cs_modes.c.o -.PHONY : cs_modes.c.o - -cs_modes.i: cs_modes.c.i -.PHONY : cs_modes.i - -# target to preprocess a source file -cs_modes.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_modes.so.dir/build.make src/core/CMakeFiles/cs_modes.so.dir/cs_modes.c.i -.PHONY : cs_modes.c.i - -cs_modes.s: cs_modes.c.s -.PHONY : cs_modes.s - -# target to generate assembly for a file -cs_modes.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_modes.so.dir/build.make src/core/CMakeFiles/cs_modes.so.dir/cs_modes.c.s -.PHONY : cs_modes.c.s - -cs_register.o: cs_register.c.o -.PHONY : cs_register.o - -# target to build an object file -cs_register.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_register.so.dir/build.make src/core/CMakeFiles/cs_register.so.dir/cs_register.c.o -.PHONY : cs_register.c.o - -cs_register.i: cs_register.c.i -.PHONY : cs_register.i - -# target to preprocess a source file -cs_register.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_register.so.dir/build.make src/core/CMakeFiles/cs_register.so.dir/cs_register.c.i -.PHONY : cs_register.c.i - -cs_register.s: cs_register.c.s -.PHONY : cs_register.s - -# target to generate assembly for a file -cs_register.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_register.so.dir/build.make src/core/CMakeFiles/cs_register.so.dir/cs_register.c.s -.PHONY : cs_register.c.s - -cs_sendpass.o: cs_sendpass.c.o -.PHONY : cs_sendpass.o - -# target to build an object file -cs_sendpass.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_sendpass.so.dir/build.make src/core/CMakeFiles/cs_sendpass.so.dir/cs_sendpass.c.o -.PHONY : cs_sendpass.c.o - -cs_sendpass.i: cs_sendpass.c.i -.PHONY : cs_sendpass.i - -# target to preprocess a source file -cs_sendpass.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_sendpass.so.dir/build.make src/core/CMakeFiles/cs_sendpass.so.dir/cs_sendpass.c.i -.PHONY : cs_sendpass.c.i - -cs_sendpass.s: cs_sendpass.c.s -.PHONY : cs_sendpass.s - -# target to generate assembly for a file -cs_sendpass.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_sendpass.so.dir/build.make src/core/CMakeFiles/cs_sendpass.so.dir/cs_sendpass.c.s -.PHONY : cs_sendpass.c.s - -cs_set.o: cs_set.c.o -.PHONY : cs_set.o - -# target to build an object file -cs_set.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_set.so.dir/build.make src/core/CMakeFiles/cs_set.so.dir/cs_set.c.o -.PHONY : cs_set.c.o - -cs_set.i: cs_set.c.i -.PHONY : cs_set.i - -# target to preprocess a source file -cs_set.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_set.so.dir/build.make src/core/CMakeFiles/cs_set.so.dir/cs_set.c.i -.PHONY : cs_set.c.i - -cs_set.s: cs_set.c.s -.PHONY : cs_set.s - -# target to generate assembly for a file -cs_set.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_set.so.dir/build.make src/core/CMakeFiles/cs_set.so.dir/cs_set.c.s -.PHONY : cs_set.c.s - -cs_status.o: cs_status.c.o -.PHONY : cs_status.o - -# target to build an object file -cs_status.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_status.so.dir/build.make src/core/CMakeFiles/cs_status.so.dir/cs_status.c.o -.PHONY : cs_status.c.o - -cs_status.i: cs_status.c.i -.PHONY : cs_status.i - -# target to preprocess a source file -cs_status.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_status.so.dir/build.make src/core/CMakeFiles/cs_status.so.dir/cs_status.c.i -.PHONY : cs_status.c.i - -cs_status.s: cs_status.c.s -.PHONY : cs_status.s - -# target to generate assembly for a file -cs_status.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_status.so.dir/build.make src/core/CMakeFiles/cs_status.so.dir/cs_status.c.s -.PHONY : cs_status.c.s - -cs_suspend.o: cs_suspend.c.o -.PHONY : cs_suspend.o - -# target to build an object file -cs_suspend.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_suspend.so.dir/build.make src/core/CMakeFiles/cs_suspend.so.dir/cs_suspend.c.o -.PHONY : cs_suspend.c.o - -cs_suspend.i: cs_suspend.c.i -.PHONY : cs_suspend.i - -# target to preprocess a source file -cs_suspend.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_suspend.so.dir/build.make src/core/CMakeFiles/cs_suspend.so.dir/cs_suspend.c.i -.PHONY : cs_suspend.c.i - -cs_suspend.s: cs_suspend.c.s -.PHONY : cs_suspend.s - -# target to generate assembly for a file -cs_suspend.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_suspend.so.dir/build.make src/core/CMakeFiles/cs_suspend.so.dir/cs_suspend.c.s -.PHONY : cs_suspend.c.s - -cs_topic.o: cs_topic.c.o -.PHONY : cs_topic.o - -# target to build an object file -cs_topic.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_topic.so.dir/build.make src/core/CMakeFiles/cs_topic.so.dir/cs_topic.c.o -.PHONY : cs_topic.c.o - -cs_topic.i: cs_topic.c.i -.PHONY : cs_topic.i - -# target to preprocess a source file -cs_topic.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_topic.so.dir/build.make src/core/CMakeFiles/cs_topic.so.dir/cs_topic.c.i -.PHONY : cs_topic.c.i - -cs_topic.s: cs_topic.c.s -.PHONY : cs_topic.s - -# target to generate assembly for a file -cs_topic.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_topic.so.dir/build.make src/core/CMakeFiles/cs_topic.so.dir/cs_topic.c.s -.PHONY : cs_topic.c.s - -cs_xop.o: cs_xop.c.o -.PHONY : cs_xop.o - -# target to build an object file -cs_xop.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_xop.so.dir/build.make src/core/CMakeFiles/cs_xop.so.dir/cs_xop.c.o -.PHONY : cs_xop.c.o - -cs_xop.i: cs_xop.c.i -.PHONY : cs_xop.i - -# target to preprocess a source file -cs_xop.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_xop.so.dir/build.make src/core/CMakeFiles/cs_xop.so.dir/cs_xop.c.i -.PHONY : cs_xop.c.i - -cs_xop.s: cs_xop.c.s -.PHONY : cs_xop.s - -# target to generate assembly for a file -cs_xop.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/cs_xop.so.dir/build.make src/core/CMakeFiles/cs_xop.so.dir/cs_xop.c.s -.PHONY : cs_xop.c.s - -enc_md5.o: enc_md5.c.o -.PHONY : enc_md5.o - -# target to build an object file -enc_md5.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_md5.so.dir/build.make src/core/CMakeFiles/enc_md5.so.dir/enc_md5.c.o -.PHONY : enc_md5.c.o - -enc_md5.i: enc_md5.c.i -.PHONY : enc_md5.i - -# target to preprocess a source file -enc_md5.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_md5.so.dir/build.make src/core/CMakeFiles/enc_md5.so.dir/enc_md5.c.i -.PHONY : enc_md5.c.i - -enc_md5.s: enc_md5.c.s -.PHONY : enc_md5.s - -# target to generate assembly for a file -enc_md5.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_md5.so.dir/build.make src/core/CMakeFiles/enc_md5.so.dir/enc_md5.c.s -.PHONY : enc_md5.c.s - -enc_none.o: enc_none.c.o -.PHONY : enc_none.o - -# target to build an object file -enc_none.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_none.so.dir/build.make src/core/CMakeFiles/enc_none.so.dir/enc_none.c.o -.PHONY : enc_none.c.o - -enc_none.i: enc_none.c.i -.PHONY : enc_none.i - -# target to preprocess a source file -enc_none.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_none.so.dir/build.make src/core/CMakeFiles/enc_none.so.dir/enc_none.c.i -.PHONY : enc_none.c.i - -enc_none.s: enc_none.c.s -.PHONY : enc_none.s - -# target to generate assembly for a file -enc_none.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_none.so.dir/build.make src/core/CMakeFiles/enc_none.so.dir/enc_none.c.s -.PHONY : enc_none.c.s - -enc_old.o: enc_old.c.o -.PHONY : enc_old.o - -# target to build an object file -enc_old.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_old.so.dir/build.make src/core/CMakeFiles/enc_old.so.dir/enc_old.c.o -.PHONY : enc_old.c.o - -enc_old.i: enc_old.c.i -.PHONY : enc_old.i - -# target to preprocess a source file -enc_old.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_old.so.dir/build.make src/core/CMakeFiles/enc_old.so.dir/enc_old.c.i -.PHONY : enc_old.c.i - -enc_old.s: enc_old.c.s -.PHONY : enc_old.s - -# target to generate assembly for a file -enc_old.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_old.so.dir/build.make src/core/CMakeFiles/enc_old.so.dir/enc_old.c.s -.PHONY : enc_old.c.s - -enc_sha1.o: enc_sha1.c.o -.PHONY : enc_sha1.o - -# target to build an object file -enc_sha1.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_sha1.so.dir/build.make src/core/CMakeFiles/enc_sha1.so.dir/enc_sha1.c.o -.PHONY : enc_sha1.c.o - -enc_sha1.i: enc_sha1.c.i -.PHONY : enc_sha1.i - -# target to preprocess a source file -enc_sha1.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_sha1.so.dir/build.make src/core/CMakeFiles/enc_sha1.so.dir/enc_sha1.c.i -.PHONY : enc_sha1.c.i - -enc_sha1.s: enc_sha1.c.s -.PHONY : enc_sha1.s - -# target to generate assembly for a file -enc_sha1.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/enc_sha1.so.dir/build.make src/core/CMakeFiles/enc_sha1.so.dir/enc_sha1.c.s -.PHONY : enc_sha1.c.s - -he_help.o: he_help.c.o -.PHONY : he_help.o - -# target to build an object file -he_help.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/he_help.so.dir/build.make src/core/CMakeFiles/he_help.so.dir/he_help.c.o -.PHONY : he_help.c.o - -he_help.i: he_help.c.i -.PHONY : he_help.i - -# target to preprocess a source file -he_help.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/he_help.so.dir/build.make src/core/CMakeFiles/he_help.so.dir/he_help.c.i -.PHONY : he_help.c.i - -he_help.s: he_help.c.s -.PHONY : he_help.s - -# target to generate assembly for a file -he_help.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/he_help.so.dir/build.make src/core/CMakeFiles/he_help.so.dir/he_help.c.s -.PHONY : he_help.c.s - -hs_del.o: hs_del.c.o -.PHONY : hs_del.o - -# target to build an object file -hs_del.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_del.so.dir/build.make src/core/CMakeFiles/hs_del.so.dir/hs_del.c.o -.PHONY : hs_del.c.o - -hs_del.i: hs_del.c.i -.PHONY : hs_del.i - -# target to preprocess a source file -hs_del.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_del.so.dir/build.make src/core/CMakeFiles/hs_del.so.dir/hs_del.c.i -.PHONY : hs_del.c.i - -hs_del.s: hs_del.c.s -.PHONY : hs_del.s - -# target to generate assembly for a file -hs_del.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_del.so.dir/build.make src/core/CMakeFiles/hs_del.so.dir/hs_del.c.s -.PHONY : hs_del.c.s - -hs_delall.o: hs_delall.c.o -.PHONY : hs_delall.o - -# target to build an object file -hs_delall.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_delall.so.dir/build.make src/core/CMakeFiles/hs_delall.so.dir/hs_delall.c.o -.PHONY : hs_delall.c.o - -hs_delall.i: hs_delall.c.i -.PHONY : hs_delall.i - -# target to preprocess a source file -hs_delall.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_delall.so.dir/build.make src/core/CMakeFiles/hs_delall.so.dir/hs_delall.c.i -.PHONY : hs_delall.c.i - -hs_delall.s: hs_delall.c.s -.PHONY : hs_delall.s - -# target to generate assembly for a file -hs_delall.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_delall.so.dir/build.make src/core/CMakeFiles/hs_delall.so.dir/hs_delall.c.s -.PHONY : hs_delall.c.s - -hs_group.o: hs_group.c.o -.PHONY : hs_group.o - -# target to build an object file -hs_group.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_group.so.dir/build.make src/core/CMakeFiles/hs_group.so.dir/hs_group.c.o -.PHONY : hs_group.c.o - -hs_group.i: hs_group.c.i -.PHONY : hs_group.i - -# target to preprocess a source file -hs_group.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_group.so.dir/build.make src/core/CMakeFiles/hs_group.so.dir/hs_group.c.i -.PHONY : hs_group.c.i - -hs_group.s: hs_group.c.s -.PHONY : hs_group.s - -# target to generate assembly for a file -hs_group.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_group.so.dir/build.make src/core/CMakeFiles/hs_group.so.dir/hs_group.c.s -.PHONY : hs_group.c.s - -hs_help.o: hs_help.c.o -.PHONY : hs_help.o - -# target to build an object file -hs_help.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_help.so.dir/build.make src/core/CMakeFiles/hs_help.so.dir/hs_help.c.o -.PHONY : hs_help.c.o - -hs_help.i: hs_help.c.i -.PHONY : hs_help.i - -# target to preprocess a source file -hs_help.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_help.so.dir/build.make src/core/CMakeFiles/hs_help.so.dir/hs_help.c.i -.PHONY : hs_help.c.i - -hs_help.s: hs_help.c.s -.PHONY : hs_help.s - -# target to generate assembly for a file -hs_help.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_help.so.dir/build.make src/core/CMakeFiles/hs_help.so.dir/hs_help.c.s -.PHONY : hs_help.c.s - -hs_list.o: hs_list.c.o -.PHONY : hs_list.o - -# target to build an object file -hs_list.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_list.so.dir/build.make src/core/CMakeFiles/hs_list.so.dir/hs_list.c.o -.PHONY : hs_list.c.o - -hs_list.i: hs_list.c.i -.PHONY : hs_list.i - -# target to preprocess a source file -hs_list.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_list.so.dir/build.make src/core/CMakeFiles/hs_list.so.dir/hs_list.c.i -.PHONY : hs_list.c.i - -hs_list.s: hs_list.c.s -.PHONY : hs_list.s - -# target to generate assembly for a file -hs_list.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_list.so.dir/build.make src/core/CMakeFiles/hs_list.so.dir/hs_list.c.s -.PHONY : hs_list.c.s - -hs_off.o: hs_off.c.o -.PHONY : hs_off.o - -# target to build an object file -hs_off.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_off.so.dir/build.make src/core/CMakeFiles/hs_off.so.dir/hs_off.c.o -.PHONY : hs_off.c.o - -hs_off.i: hs_off.c.i -.PHONY : hs_off.i - -# target to preprocess a source file -hs_off.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_off.so.dir/build.make src/core/CMakeFiles/hs_off.so.dir/hs_off.c.i -.PHONY : hs_off.c.i - -hs_off.s: hs_off.c.s -.PHONY : hs_off.s - -# target to generate assembly for a file -hs_off.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_off.so.dir/build.make src/core/CMakeFiles/hs_off.so.dir/hs_off.c.s -.PHONY : hs_off.c.s - -hs_on.o: hs_on.c.o -.PHONY : hs_on.o - -# target to build an object file -hs_on.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_on.so.dir/build.make src/core/CMakeFiles/hs_on.so.dir/hs_on.c.o -.PHONY : hs_on.c.o - -hs_on.i: hs_on.c.i -.PHONY : hs_on.i - -# target to preprocess a source file -hs_on.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_on.so.dir/build.make src/core/CMakeFiles/hs_on.so.dir/hs_on.c.i -.PHONY : hs_on.c.i - -hs_on.s: hs_on.c.s -.PHONY : hs_on.s - -# target to generate assembly for a file -hs_on.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_on.so.dir/build.make src/core/CMakeFiles/hs_on.so.dir/hs_on.c.s -.PHONY : hs_on.c.s - -hs_set.o: hs_set.c.o -.PHONY : hs_set.o - -# target to build an object file -hs_set.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_set.so.dir/build.make src/core/CMakeFiles/hs_set.so.dir/hs_set.c.o -.PHONY : hs_set.c.o - -hs_set.i: hs_set.c.i -.PHONY : hs_set.i - -# target to preprocess a source file -hs_set.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_set.so.dir/build.make src/core/CMakeFiles/hs_set.so.dir/hs_set.c.i -.PHONY : hs_set.c.i - -hs_set.s: hs_set.c.s -.PHONY : hs_set.s - -# target to generate assembly for a file -hs_set.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_set.so.dir/build.make src/core/CMakeFiles/hs_set.so.dir/hs_set.c.s -.PHONY : hs_set.c.s - -hs_setall.o: hs_setall.c.o -.PHONY : hs_setall.o - -# target to build an object file -hs_setall.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_setall.so.dir/build.make src/core/CMakeFiles/hs_setall.so.dir/hs_setall.c.o -.PHONY : hs_setall.c.o - -hs_setall.i: hs_setall.c.i -.PHONY : hs_setall.i - -# target to preprocess a source file -hs_setall.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_setall.so.dir/build.make src/core/CMakeFiles/hs_setall.so.dir/hs_setall.c.i -.PHONY : hs_setall.c.i - -hs_setall.s: hs_setall.c.s -.PHONY : hs_setall.s - -# target to generate assembly for a file -hs_setall.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/hs_setall.so.dir/build.make src/core/CMakeFiles/hs_setall.so.dir/hs_setall.c.s -.PHONY : hs_setall.c.s - -ms_cancel.o: ms_cancel.c.o -.PHONY : ms_cancel.o - -# target to build an object file -ms_cancel.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_cancel.so.dir/build.make src/core/CMakeFiles/ms_cancel.so.dir/ms_cancel.c.o -.PHONY : ms_cancel.c.o - -ms_cancel.i: ms_cancel.c.i -.PHONY : ms_cancel.i - -# target to preprocess a source file -ms_cancel.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_cancel.so.dir/build.make src/core/CMakeFiles/ms_cancel.so.dir/ms_cancel.c.i -.PHONY : ms_cancel.c.i - -ms_cancel.s: ms_cancel.c.s -.PHONY : ms_cancel.s - -# target to generate assembly for a file -ms_cancel.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_cancel.so.dir/build.make src/core/CMakeFiles/ms_cancel.so.dir/ms_cancel.c.s -.PHONY : ms_cancel.c.s - -ms_check.o: ms_check.c.o -.PHONY : ms_check.o - -# target to build an object file -ms_check.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_check.so.dir/build.make src/core/CMakeFiles/ms_check.so.dir/ms_check.c.o -.PHONY : ms_check.c.o - -ms_check.i: ms_check.c.i -.PHONY : ms_check.i - -# target to preprocess a source file -ms_check.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_check.so.dir/build.make src/core/CMakeFiles/ms_check.so.dir/ms_check.c.i -.PHONY : ms_check.c.i - -ms_check.s: ms_check.c.s -.PHONY : ms_check.s - -# target to generate assembly for a file -ms_check.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_check.so.dir/build.make src/core/CMakeFiles/ms_check.so.dir/ms_check.c.s -.PHONY : ms_check.c.s - -ms_del.o: ms_del.c.o -.PHONY : ms_del.o - -# target to build an object file -ms_del.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_del.so.dir/build.make src/core/CMakeFiles/ms_del.so.dir/ms_del.c.o -.PHONY : ms_del.c.o - -ms_del.i: ms_del.c.i -.PHONY : ms_del.i - -# target to preprocess a source file -ms_del.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_del.so.dir/build.make src/core/CMakeFiles/ms_del.so.dir/ms_del.c.i -.PHONY : ms_del.c.i - -ms_del.s: ms_del.c.s -.PHONY : ms_del.s - -# target to generate assembly for a file -ms_del.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_del.so.dir/build.make src/core/CMakeFiles/ms_del.so.dir/ms_del.c.s -.PHONY : ms_del.c.s - -ms_help.o: ms_help.c.o -.PHONY : ms_help.o - -# target to build an object file -ms_help.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_help.so.dir/build.make src/core/CMakeFiles/ms_help.so.dir/ms_help.c.o -.PHONY : ms_help.c.o - -ms_help.i: ms_help.c.i -.PHONY : ms_help.i - -# target to preprocess a source file -ms_help.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_help.so.dir/build.make src/core/CMakeFiles/ms_help.so.dir/ms_help.c.i -.PHONY : ms_help.c.i - -ms_help.s: ms_help.c.s -.PHONY : ms_help.s - -# target to generate assembly for a file -ms_help.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_help.so.dir/build.make src/core/CMakeFiles/ms_help.so.dir/ms_help.c.s -.PHONY : ms_help.c.s - -ms_info.o: ms_info.c.o -.PHONY : ms_info.o - -# target to build an object file -ms_info.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_info.so.dir/build.make src/core/CMakeFiles/ms_info.so.dir/ms_info.c.o -.PHONY : ms_info.c.o - -ms_info.i: ms_info.c.i -.PHONY : ms_info.i - -# target to preprocess a source file -ms_info.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_info.so.dir/build.make src/core/CMakeFiles/ms_info.so.dir/ms_info.c.i -.PHONY : ms_info.c.i - -ms_info.s: ms_info.c.s -.PHONY : ms_info.s - -# target to generate assembly for a file -ms_info.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_info.so.dir/build.make src/core/CMakeFiles/ms_info.so.dir/ms_info.c.s -.PHONY : ms_info.c.s - -ms_list.o: ms_list.c.o -.PHONY : ms_list.o - -# target to build an object file -ms_list.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_list.so.dir/build.make src/core/CMakeFiles/ms_list.so.dir/ms_list.c.o -.PHONY : ms_list.c.o - -ms_list.i: ms_list.c.i -.PHONY : ms_list.i - -# target to preprocess a source file -ms_list.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_list.so.dir/build.make src/core/CMakeFiles/ms_list.so.dir/ms_list.c.i -.PHONY : ms_list.c.i - -ms_list.s: ms_list.c.s -.PHONY : ms_list.s - -# target to generate assembly for a file -ms_list.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_list.so.dir/build.make src/core/CMakeFiles/ms_list.so.dir/ms_list.c.s -.PHONY : ms_list.c.s - -ms_read.o: ms_read.c.o -.PHONY : ms_read.o - -# target to build an object file -ms_read.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_read.so.dir/build.make src/core/CMakeFiles/ms_read.so.dir/ms_read.c.o -.PHONY : ms_read.c.o - -ms_read.i: ms_read.c.i -.PHONY : ms_read.i - -# target to preprocess a source file -ms_read.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_read.so.dir/build.make src/core/CMakeFiles/ms_read.so.dir/ms_read.c.i -.PHONY : ms_read.c.i - -ms_read.s: ms_read.c.s -.PHONY : ms_read.s - -# target to generate assembly for a file -ms_read.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_read.so.dir/build.make src/core/CMakeFiles/ms_read.so.dir/ms_read.c.s -.PHONY : ms_read.c.s - -ms_rsend.o: ms_rsend.c.o -.PHONY : ms_rsend.o - -# target to build an object file -ms_rsend.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_rsend.so.dir/build.make src/core/CMakeFiles/ms_rsend.so.dir/ms_rsend.c.o -.PHONY : ms_rsend.c.o - -ms_rsend.i: ms_rsend.c.i -.PHONY : ms_rsend.i - -# target to preprocess a source file -ms_rsend.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_rsend.so.dir/build.make src/core/CMakeFiles/ms_rsend.so.dir/ms_rsend.c.i -.PHONY : ms_rsend.c.i - -ms_rsend.s: ms_rsend.c.s -.PHONY : ms_rsend.s - -# target to generate assembly for a file -ms_rsend.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_rsend.so.dir/build.make src/core/CMakeFiles/ms_rsend.so.dir/ms_rsend.c.s -.PHONY : ms_rsend.c.s - -ms_send.o: ms_send.c.o -.PHONY : ms_send.o - -# target to build an object file -ms_send.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_send.so.dir/build.make src/core/CMakeFiles/ms_send.so.dir/ms_send.c.o -.PHONY : ms_send.c.o - -ms_send.i: ms_send.c.i -.PHONY : ms_send.i - -# target to preprocess a source file -ms_send.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_send.so.dir/build.make src/core/CMakeFiles/ms_send.so.dir/ms_send.c.i -.PHONY : ms_send.c.i - -ms_send.s: ms_send.c.s -.PHONY : ms_send.s - -# target to generate assembly for a file -ms_send.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_send.so.dir/build.make src/core/CMakeFiles/ms_send.so.dir/ms_send.c.s -.PHONY : ms_send.c.s - -ms_sendall.o: ms_sendall.c.o -.PHONY : ms_sendall.o - -# target to build an object file -ms_sendall.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_sendall.so.dir/build.make src/core/CMakeFiles/ms_sendall.so.dir/ms_sendall.c.o -.PHONY : ms_sendall.c.o - -ms_sendall.i: ms_sendall.c.i -.PHONY : ms_sendall.i - -# target to preprocess a source file -ms_sendall.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_sendall.so.dir/build.make src/core/CMakeFiles/ms_sendall.so.dir/ms_sendall.c.i -.PHONY : ms_sendall.c.i - -ms_sendall.s: ms_sendall.c.s -.PHONY : ms_sendall.s - -# target to generate assembly for a file -ms_sendall.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_sendall.so.dir/build.make src/core/CMakeFiles/ms_sendall.so.dir/ms_sendall.c.s -.PHONY : ms_sendall.c.s - -ms_set.o: ms_set.c.o -.PHONY : ms_set.o - -# target to build an object file -ms_set.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_set.so.dir/build.make src/core/CMakeFiles/ms_set.so.dir/ms_set.c.o -.PHONY : ms_set.c.o - -ms_set.i: ms_set.c.i -.PHONY : ms_set.i - -# target to preprocess a source file -ms_set.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_set.so.dir/build.make src/core/CMakeFiles/ms_set.so.dir/ms_set.c.i -.PHONY : ms_set.c.i - -ms_set.s: ms_set.c.s -.PHONY : ms_set.s - -# target to generate assembly for a file -ms_set.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_set.so.dir/build.make src/core/CMakeFiles/ms_set.so.dir/ms_set.c.s -.PHONY : ms_set.c.s - -ms_staff.o: ms_staff.c.o -.PHONY : ms_staff.o - -# target to build an object file -ms_staff.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_staff.so.dir/build.make src/core/CMakeFiles/ms_staff.so.dir/ms_staff.c.o -.PHONY : ms_staff.c.o - -ms_staff.i: ms_staff.c.i -.PHONY : ms_staff.i - -# target to preprocess a source file -ms_staff.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_staff.so.dir/build.make src/core/CMakeFiles/ms_staff.so.dir/ms_staff.c.i -.PHONY : ms_staff.c.i - -ms_staff.s: ms_staff.c.s -.PHONY : ms_staff.s - -# target to generate assembly for a file -ms_staff.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ms_staff.so.dir/build.make src/core/CMakeFiles/ms_staff.so.dir/ms_staff.c.s -.PHONY : ms_staff.c.s - -ns_access.o: ns_access.c.o -.PHONY : ns_access.o - -# target to build an object file -ns_access.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_access.so.dir/build.make src/core/CMakeFiles/ns_access.so.dir/ns_access.c.o -.PHONY : ns_access.c.o - -ns_access.i: ns_access.c.i -.PHONY : ns_access.i - -# target to preprocess a source file -ns_access.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_access.so.dir/build.make src/core/CMakeFiles/ns_access.so.dir/ns_access.c.i -.PHONY : ns_access.c.i - -ns_access.s: ns_access.c.s -.PHONY : ns_access.s - -# target to generate assembly for a file -ns_access.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_access.so.dir/build.make src/core/CMakeFiles/ns_access.so.dir/ns_access.c.s -.PHONY : ns_access.c.s - -ns_alist.o: ns_alist.c.o -.PHONY : ns_alist.o - -# target to build an object file -ns_alist.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_alist.so.dir/build.make src/core/CMakeFiles/ns_alist.so.dir/ns_alist.c.o -.PHONY : ns_alist.c.o - -ns_alist.i: ns_alist.c.i -.PHONY : ns_alist.i - -# target to preprocess a source file -ns_alist.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_alist.so.dir/build.make src/core/CMakeFiles/ns_alist.so.dir/ns_alist.c.i -.PHONY : ns_alist.c.i - -ns_alist.s: ns_alist.c.s -.PHONY : ns_alist.s - -# target to generate assembly for a file -ns_alist.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_alist.so.dir/build.make src/core/CMakeFiles/ns_alist.so.dir/ns_alist.c.s -.PHONY : ns_alist.c.s - -ns_drop.o: ns_drop.c.o -.PHONY : ns_drop.o - -# target to build an object file -ns_drop.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_drop.so.dir/build.make src/core/CMakeFiles/ns_drop.so.dir/ns_drop.c.o -.PHONY : ns_drop.c.o - -ns_drop.i: ns_drop.c.i -.PHONY : ns_drop.i - -# target to preprocess a source file -ns_drop.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_drop.so.dir/build.make src/core/CMakeFiles/ns_drop.so.dir/ns_drop.c.i -.PHONY : ns_drop.c.i - -ns_drop.s: ns_drop.c.s -.PHONY : ns_drop.s - -# target to generate assembly for a file -ns_drop.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_drop.so.dir/build.make src/core/CMakeFiles/ns_drop.so.dir/ns_drop.c.s -.PHONY : ns_drop.c.s - -ns_forbid.o: ns_forbid.c.o -.PHONY : ns_forbid.o - -# target to build an object file -ns_forbid.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_forbid.so.dir/build.make src/core/CMakeFiles/ns_forbid.so.dir/ns_forbid.c.o -.PHONY : ns_forbid.c.o - -ns_forbid.i: ns_forbid.c.i -.PHONY : ns_forbid.i - -# target to preprocess a source file -ns_forbid.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_forbid.so.dir/build.make src/core/CMakeFiles/ns_forbid.so.dir/ns_forbid.c.i -.PHONY : ns_forbid.c.i - -ns_forbid.s: ns_forbid.c.s -.PHONY : ns_forbid.s - -# target to generate assembly for a file -ns_forbid.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_forbid.so.dir/build.make src/core/CMakeFiles/ns_forbid.so.dir/ns_forbid.c.s -.PHONY : ns_forbid.c.s - -ns_getemail.o: ns_getemail.c.o -.PHONY : ns_getemail.o - -# target to build an object file -ns_getemail.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_getemail.so.dir/build.make src/core/CMakeFiles/ns_getemail.so.dir/ns_getemail.c.o -.PHONY : ns_getemail.c.o - -ns_getemail.i: ns_getemail.c.i -.PHONY : ns_getemail.i - -# target to preprocess a source file -ns_getemail.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_getemail.so.dir/build.make src/core/CMakeFiles/ns_getemail.so.dir/ns_getemail.c.i -.PHONY : ns_getemail.c.i - -ns_getemail.s: ns_getemail.c.s -.PHONY : ns_getemail.s - -# target to generate assembly for a file -ns_getemail.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_getemail.so.dir/build.make src/core/CMakeFiles/ns_getemail.so.dir/ns_getemail.c.s -.PHONY : ns_getemail.c.s - -ns_getpass.o: ns_getpass.c.o -.PHONY : ns_getpass.o - -# target to build an object file -ns_getpass.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_getpass.so.dir/build.make src/core/CMakeFiles/ns_getpass.so.dir/ns_getpass.c.o -.PHONY : ns_getpass.c.o - -ns_getpass.i: ns_getpass.c.i -.PHONY : ns_getpass.i - -# target to preprocess a source file -ns_getpass.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_getpass.so.dir/build.make src/core/CMakeFiles/ns_getpass.so.dir/ns_getpass.c.i -.PHONY : ns_getpass.c.i - -ns_getpass.s: ns_getpass.c.s -.PHONY : ns_getpass.s - -# target to generate assembly for a file -ns_getpass.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_getpass.so.dir/build.make src/core/CMakeFiles/ns_getpass.so.dir/ns_getpass.c.s -.PHONY : ns_getpass.c.s - -ns_ghost.o: ns_ghost.c.o -.PHONY : ns_ghost.o - -# target to build an object file -ns_ghost.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_ghost.so.dir/build.make src/core/CMakeFiles/ns_ghost.so.dir/ns_ghost.c.o -.PHONY : ns_ghost.c.o - -ns_ghost.i: ns_ghost.c.i -.PHONY : ns_ghost.i - -# target to preprocess a source file -ns_ghost.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_ghost.so.dir/build.make src/core/CMakeFiles/ns_ghost.so.dir/ns_ghost.c.i -.PHONY : ns_ghost.c.i - -ns_ghost.s: ns_ghost.c.s -.PHONY : ns_ghost.s - -# target to generate assembly for a file -ns_ghost.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_ghost.so.dir/build.make src/core/CMakeFiles/ns_ghost.so.dir/ns_ghost.c.s -.PHONY : ns_ghost.c.s - -ns_group.o: ns_group.c.o -.PHONY : ns_group.o - -# target to build an object file -ns_group.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_group.so.dir/build.make src/core/CMakeFiles/ns_group.so.dir/ns_group.c.o -.PHONY : ns_group.c.o - -ns_group.i: ns_group.c.i -.PHONY : ns_group.i - -# target to preprocess a source file -ns_group.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_group.so.dir/build.make src/core/CMakeFiles/ns_group.so.dir/ns_group.c.i -.PHONY : ns_group.c.i - -ns_group.s: ns_group.c.s -.PHONY : ns_group.s - -# target to generate assembly for a file -ns_group.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_group.so.dir/build.make src/core/CMakeFiles/ns_group.so.dir/ns_group.c.s -.PHONY : ns_group.c.s - -ns_help.o: ns_help.c.o -.PHONY : ns_help.o - -# target to build an object file -ns_help.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_help.so.dir/build.make src/core/CMakeFiles/ns_help.so.dir/ns_help.c.o -.PHONY : ns_help.c.o - -ns_help.i: ns_help.c.i -.PHONY : ns_help.i - -# target to preprocess a source file -ns_help.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_help.so.dir/build.make src/core/CMakeFiles/ns_help.so.dir/ns_help.c.i -.PHONY : ns_help.c.i - -ns_help.s: ns_help.c.s -.PHONY : ns_help.s - -# target to generate assembly for a file -ns_help.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_help.so.dir/build.make src/core/CMakeFiles/ns_help.so.dir/ns_help.c.s -.PHONY : ns_help.c.s - -ns_identify.o: ns_identify.c.o -.PHONY : ns_identify.o - -# target to build an object file -ns_identify.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_identify.so.dir/build.make src/core/CMakeFiles/ns_identify.so.dir/ns_identify.c.o -.PHONY : ns_identify.c.o - -ns_identify.i: ns_identify.c.i -.PHONY : ns_identify.i - -# target to preprocess a source file -ns_identify.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_identify.so.dir/build.make src/core/CMakeFiles/ns_identify.so.dir/ns_identify.c.i -.PHONY : ns_identify.c.i - -ns_identify.s: ns_identify.c.s -.PHONY : ns_identify.s - -# target to generate assembly for a file -ns_identify.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_identify.so.dir/build.make src/core/CMakeFiles/ns_identify.so.dir/ns_identify.c.s -.PHONY : ns_identify.c.s - -ns_info.o: ns_info.c.o -.PHONY : ns_info.o - -# target to build an object file -ns_info.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_info.so.dir/build.make src/core/CMakeFiles/ns_info.so.dir/ns_info.c.o -.PHONY : ns_info.c.o - -ns_info.i: ns_info.c.i -.PHONY : ns_info.i - -# target to preprocess a source file -ns_info.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_info.so.dir/build.make src/core/CMakeFiles/ns_info.so.dir/ns_info.c.i -.PHONY : ns_info.c.i - -ns_info.s: ns_info.c.s -.PHONY : ns_info.s - -# target to generate assembly for a file -ns_info.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_info.so.dir/build.make src/core/CMakeFiles/ns_info.so.dir/ns_info.c.s -.PHONY : ns_info.c.s - -ns_list.o: ns_list.c.o -.PHONY : ns_list.o - -# target to build an object file -ns_list.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_list.so.dir/build.make src/core/CMakeFiles/ns_list.so.dir/ns_list.c.o -.PHONY : ns_list.c.o - -ns_list.i: ns_list.c.i -.PHONY : ns_list.i - -# target to preprocess a source file -ns_list.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_list.so.dir/build.make src/core/CMakeFiles/ns_list.so.dir/ns_list.c.i -.PHONY : ns_list.c.i - -ns_list.s: ns_list.c.s -.PHONY : ns_list.s - -# target to generate assembly for a file -ns_list.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_list.so.dir/build.make src/core/CMakeFiles/ns_list.so.dir/ns_list.c.s -.PHONY : ns_list.c.s - -ns_logout.o: ns_logout.c.o -.PHONY : ns_logout.o - -# target to build an object file -ns_logout.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_logout.so.dir/build.make src/core/CMakeFiles/ns_logout.so.dir/ns_logout.c.o -.PHONY : ns_logout.c.o - -ns_logout.i: ns_logout.c.i -.PHONY : ns_logout.i - -# target to preprocess a source file -ns_logout.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_logout.so.dir/build.make src/core/CMakeFiles/ns_logout.so.dir/ns_logout.c.i -.PHONY : ns_logout.c.i - -ns_logout.s: ns_logout.c.s -.PHONY : ns_logout.s - -# target to generate assembly for a file -ns_logout.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_logout.so.dir/build.make src/core/CMakeFiles/ns_logout.so.dir/ns_logout.c.s -.PHONY : ns_logout.c.s - -ns_recover.o: ns_recover.c.o -.PHONY : ns_recover.o - -# target to build an object file -ns_recover.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_recover.so.dir/build.make src/core/CMakeFiles/ns_recover.so.dir/ns_recover.c.o -.PHONY : ns_recover.c.o - -ns_recover.i: ns_recover.c.i -.PHONY : ns_recover.i - -# target to preprocess a source file -ns_recover.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_recover.so.dir/build.make src/core/CMakeFiles/ns_recover.so.dir/ns_recover.c.i -.PHONY : ns_recover.c.i - -ns_recover.s: ns_recover.c.s -.PHONY : ns_recover.s - -# target to generate assembly for a file -ns_recover.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_recover.so.dir/build.make src/core/CMakeFiles/ns_recover.so.dir/ns_recover.c.s -.PHONY : ns_recover.c.s - -ns_register.o: ns_register.c.o -.PHONY : ns_register.o - -# target to build an object file -ns_register.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_register.so.dir/build.make src/core/CMakeFiles/ns_register.so.dir/ns_register.c.o -.PHONY : ns_register.c.o - -ns_register.i: ns_register.c.i -.PHONY : ns_register.i - -# target to preprocess a source file -ns_register.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_register.so.dir/build.make src/core/CMakeFiles/ns_register.so.dir/ns_register.c.i -.PHONY : ns_register.c.i - -ns_register.s: ns_register.c.s -.PHONY : ns_register.s - -# target to generate assembly for a file -ns_register.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_register.so.dir/build.make src/core/CMakeFiles/ns_register.so.dir/ns_register.c.s -.PHONY : ns_register.c.s - -ns_release.o: ns_release.c.o -.PHONY : ns_release.o - -# target to build an object file -ns_release.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_release.so.dir/build.make src/core/CMakeFiles/ns_release.so.dir/ns_release.c.o -.PHONY : ns_release.c.o - -ns_release.i: ns_release.c.i -.PHONY : ns_release.i - -# target to preprocess a source file -ns_release.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_release.so.dir/build.make src/core/CMakeFiles/ns_release.so.dir/ns_release.c.i -.PHONY : ns_release.c.i - -ns_release.s: ns_release.c.s -.PHONY : ns_release.s - -# target to generate assembly for a file -ns_release.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_release.so.dir/build.make src/core/CMakeFiles/ns_release.so.dir/ns_release.c.s -.PHONY : ns_release.c.s - -ns_saset.o: ns_saset.c.o -.PHONY : ns_saset.o - -# target to build an object file -ns_saset.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_saset.so.dir/build.make src/core/CMakeFiles/ns_saset.so.dir/ns_saset.c.o -.PHONY : ns_saset.c.o - -ns_saset.i: ns_saset.c.i -.PHONY : ns_saset.i - -# target to preprocess a source file -ns_saset.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_saset.so.dir/build.make src/core/CMakeFiles/ns_saset.so.dir/ns_saset.c.i -.PHONY : ns_saset.c.i - -ns_saset.s: ns_saset.c.s -.PHONY : ns_saset.s - -# target to generate assembly for a file -ns_saset.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_saset.so.dir/build.make src/core/CMakeFiles/ns_saset.so.dir/ns_saset.c.s -.PHONY : ns_saset.c.s - -ns_sendpass.o: ns_sendpass.c.o -.PHONY : ns_sendpass.o - -# target to build an object file -ns_sendpass.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_sendpass.so.dir/build.make src/core/CMakeFiles/ns_sendpass.so.dir/ns_sendpass.c.o -.PHONY : ns_sendpass.c.o - -ns_sendpass.i: ns_sendpass.c.i -.PHONY : ns_sendpass.i - -# target to preprocess a source file -ns_sendpass.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_sendpass.so.dir/build.make src/core/CMakeFiles/ns_sendpass.so.dir/ns_sendpass.c.i -.PHONY : ns_sendpass.c.i - -ns_sendpass.s: ns_sendpass.c.s -.PHONY : ns_sendpass.s - -# target to generate assembly for a file -ns_sendpass.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_sendpass.so.dir/build.make src/core/CMakeFiles/ns_sendpass.so.dir/ns_sendpass.c.s -.PHONY : ns_sendpass.c.s - -ns_set.o: ns_set.c.o -.PHONY : ns_set.o - -# target to build an object file -ns_set.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_set.so.dir/build.make src/core/CMakeFiles/ns_set.so.dir/ns_set.c.o -.PHONY : ns_set.c.o - -ns_set.i: ns_set.c.i -.PHONY : ns_set.i - -# target to preprocess a source file -ns_set.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_set.so.dir/build.make src/core/CMakeFiles/ns_set.so.dir/ns_set.c.i -.PHONY : ns_set.c.i - -ns_set.s: ns_set.c.s -.PHONY : ns_set.s - -# target to generate assembly for a file -ns_set.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_set.so.dir/build.make src/core/CMakeFiles/ns_set.so.dir/ns_set.c.s -.PHONY : ns_set.c.s - -ns_status.o: ns_status.c.o -.PHONY : ns_status.o - -# target to build an object file -ns_status.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_status.so.dir/build.make src/core/CMakeFiles/ns_status.so.dir/ns_status.c.o -.PHONY : ns_status.c.o - -ns_status.i: ns_status.c.i -.PHONY : ns_status.i - -# target to preprocess a source file -ns_status.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_status.so.dir/build.make src/core/CMakeFiles/ns_status.so.dir/ns_status.c.i -.PHONY : ns_status.c.i - -ns_status.s: ns_status.c.s -.PHONY : ns_status.s - -# target to generate assembly for a file -ns_status.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_status.so.dir/build.make src/core/CMakeFiles/ns_status.so.dir/ns_status.c.s -.PHONY : ns_status.c.s - -ns_suspend.o: ns_suspend.c.o -.PHONY : ns_suspend.o - -# target to build an object file -ns_suspend.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_suspend.so.dir/build.make src/core/CMakeFiles/ns_suspend.so.dir/ns_suspend.c.o -.PHONY : ns_suspend.c.o - -ns_suspend.i: ns_suspend.c.i -.PHONY : ns_suspend.i - -# target to preprocess a source file -ns_suspend.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_suspend.so.dir/build.make src/core/CMakeFiles/ns_suspend.so.dir/ns_suspend.c.i -.PHONY : ns_suspend.c.i - -ns_suspend.s: ns_suspend.c.s -.PHONY : ns_suspend.s - -# target to generate assembly for a file -ns_suspend.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_suspend.so.dir/build.make src/core/CMakeFiles/ns_suspend.so.dir/ns_suspend.c.s -.PHONY : ns_suspend.c.s - -ns_update.o: ns_update.c.o -.PHONY : ns_update.o - -# target to build an object file -ns_update.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_update.so.dir/build.make src/core/CMakeFiles/ns_update.so.dir/ns_update.c.o -.PHONY : ns_update.c.o - -ns_update.i: ns_update.c.i -.PHONY : ns_update.i - -# target to preprocess a source file -ns_update.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_update.so.dir/build.make src/core/CMakeFiles/ns_update.so.dir/ns_update.c.i -.PHONY : ns_update.c.i - -ns_update.s: ns_update.c.s -.PHONY : ns_update.s - -# target to generate assembly for a file -ns_update.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ns_update.so.dir/build.make src/core/CMakeFiles/ns_update.so.dir/ns_update.c.s -.PHONY : ns_update.c.s - -os_admin.o: os_admin.c.o -.PHONY : os_admin.o - -# target to build an object file -os_admin.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_admin.so.dir/build.make src/core/CMakeFiles/os_admin.so.dir/os_admin.c.o -.PHONY : os_admin.c.o - -os_admin.i: os_admin.c.i -.PHONY : os_admin.i - -# target to preprocess a source file -os_admin.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_admin.so.dir/build.make src/core/CMakeFiles/os_admin.so.dir/os_admin.c.i -.PHONY : os_admin.c.i - -os_admin.s: os_admin.c.s -.PHONY : os_admin.s - -# target to generate assembly for a file -os_admin.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_admin.so.dir/build.make src/core/CMakeFiles/os_admin.so.dir/os_admin.c.s -.PHONY : os_admin.c.s - -os_akill.o: os_akill.c.o -.PHONY : os_akill.o - -# target to build an object file -os_akill.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_akill.so.dir/build.make src/core/CMakeFiles/os_akill.so.dir/os_akill.c.o -.PHONY : os_akill.c.o - -os_akill.i: os_akill.c.i -.PHONY : os_akill.i - -# target to preprocess a source file -os_akill.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_akill.so.dir/build.make src/core/CMakeFiles/os_akill.so.dir/os_akill.c.i -.PHONY : os_akill.c.i - -os_akill.s: os_akill.c.s -.PHONY : os_akill.s - -# target to generate assembly for a file -os_akill.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_akill.so.dir/build.make src/core/CMakeFiles/os_akill.so.dir/os_akill.c.s -.PHONY : os_akill.c.s - -os_chankill.o: os_chankill.c.o -.PHONY : os_chankill.o - -# target to build an object file -os_chankill.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_chankill.so.dir/build.make src/core/CMakeFiles/os_chankill.so.dir/os_chankill.c.o -.PHONY : os_chankill.c.o - -os_chankill.i: os_chankill.c.i -.PHONY : os_chankill.i - -# target to preprocess a source file -os_chankill.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_chankill.so.dir/build.make src/core/CMakeFiles/os_chankill.so.dir/os_chankill.c.i -.PHONY : os_chankill.c.i - -os_chankill.s: os_chankill.c.s -.PHONY : os_chankill.s - -# target to generate assembly for a file -os_chankill.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_chankill.so.dir/build.make src/core/CMakeFiles/os_chankill.so.dir/os_chankill.c.s -.PHONY : os_chankill.c.s - -os_chanlist.o: os_chanlist.c.o -.PHONY : os_chanlist.o - -# target to build an object file -os_chanlist.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_chanlist.so.dir/build.make src/core/CMakeFiles/os_chanlist.so.dir/os_chanlist.c.o -.PHONY : os_chanlist.c.o - -os_chanlist.i: os_chanlist.c.i -.PHONY : os_chanlist.i - -# target to preprocess a source file -os_chanlist.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_chanlist.so.dir/build.make src/core/CMakeFiles/os_chanlist.so.dir/os_chanlist.c.i -.PHONY : os_chanlist.c.i - -os_chanlist.s: os_chanlist.c.s -.PHONY : os_chanlist.s - -# target to generate assembly for a file -os_chanlist.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_chanlist.so.dir/build.make src/core/CMakeFiles/os_chanlist.so.dir/os_chanlist.c.s -.PHONY : os_chanlist.c.s - -os_clearmodes.o: os_clearmodes.c.o -.PHONY : os_clearmodes.o - -# target to build an object file -os_clearmodes.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_clearmodes.so.dir/build.make src/core/CMakeFiles/os_clearmodes.so.dir/os_clearmodes.c.o -.PHONY : os_clearmodes.c.o - -os_clearmodes.i: os_clearmodes.c.i -.PHONY : os_clearmodes.i - -# target to preprocess a source file -os_clearmodes.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_clearmodes.so.dir/build.make src/core/CMakeFiles/os_clearmodes.so.dir/os_clearmodes.c.i -.PHONY : os_clearmodes.c.i - -os_clearmodes.s: os_clearmodes.c.s -.PHONY : os_clearmodes.s - -# target to generate assembly for a file -os_clearmodes.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_clearmodes.so.dir/build.make src/core/CMakeFiles/os_clearmodes.so.dir/os_clearmodes.c.s -.PHONY : os_clearmodes.c.s - -os_defcon.o: os_defcon.c.o -.PHONY : os_defcon.o - -# target to build an object file -os_defcon.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_defcon.so.dir/build.make src/core/CMakeFiles/os_defcon.so.dir/os_defcon.c.o -.PHONY : os_defcon.c.o - -os_defcon.i: os_defcon.c.i -.PHONY : os_defcon.i - -# target to preprocess a source file -os_defcon.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_defcon.so.dir/build.make src/core/CMakeFiles/os_defcon.so.dir/os_defcon.c.i -.PHONY : os_defcon.c.i - -os_defcon.s: os_defcon.c.s -.PHONY : os_defcon.s - -# target to generate assembly for a file -os_defcon.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_defcon.so.dir/build.make src/core/CMakeFiles/os_defcon.so.dir/os_defcon.c.s -.PHONY : os_defcon.c.s - -os_global.o: os_global.c.o -.PHONY : os_global.o - -# target to build an object file -os_global.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_global.so.dir/build.make src/core/CMakeFiles/os_global.so.dir/os_global.c.o -.PHONY : os_global.c.o - -os_global.i: os_global.c.i -.PHONY : os_global.i - -# target to preprocess a source file -os_global.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_global.so.dir/build.make src/core/CMakeFiles/os_global.so.dir/os_global.c.i -.PHONY : os_global.c.i - -os_global.s: os_global.c.s -.PHONY : os_global.s - -# target to generate assembly for a file -os_global.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_global.so.dir/build.make src/core/CMakeFiles/os_global.so.dir/os_global.c.s -.PHONY : os_global.c.s - -os_help.o: os_help.c.o -.PHONY : os_help.o - -# target to build an object file -os_help.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_help.so.dir/build.make src/core/CMakeFiles/os_help.so.dir/os_help.c.o -.PHONY : os_help.c.o - -os_help.i: os_help.c.i -.PHONY : os_help.i - -# target to preprocess a source file -os_help.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_help.so.dir/build.make src/core/CMakeFiles/os_help.so.dir/os_help.c.i -.PHONY : os_help.c.i - -os_help.s: os_help.c.s -.PHONY : os_help.s - -# target to generate assembly for a file -os_help.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_help.so.dir/build.make src/core/CMakeFiles/os_help.so.dir/os_help.c.s -.PHONY : os_help.c.s - -os_ignore.o: os_ignore.c.o -.PHONY : os_ignore.o - -# target to build an object file -os_ignore.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_ignore.so.dir/build.make src/core/CMakeFiles/os_ignore.so.dir/os_ignore.c.o -.PHONY : os_ignore.c.o - -os_ignore.i: os_ignore.c.i -.PHONY : os_ignore.i - -# target to preprocess a source file -os_ignore.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_ignore.so.dir/build.make src/core/CMakeFiles/os_ignore.so.dir/os_ignore.c.i -.PHONY : os_ignore.c.i - -os_ignore.s: os_ignore.c.s -.PHONY : os_ignore.s - -# target to generate assembly for a file -os_ignore.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_ignore.so.dir/build.make src/core/CMakeFiles/os_ignore.so.dir/os_ignore.c.s -.PHONY : os_ignore.c.s - -os_jupe.o: os_jupe.c.o -.PHONY : os_jupe.o - -# target to build an object file -os_jupe.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_jupe.so.dir/build.make src/core/CMakeFiles/os_jupe.so.dir/os_jupe.c.o -.PHONY : os_jupe.c.o - -os_jupe.i: os_jupe.c.i -.PHONY : os_jupe.i - -# target to preprocess a source file -os_jupe.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_jupe.so.dir/build.make src/core/CMakeFiles/os_jupe.so.dir/os_jupe.c.i -.PHONY : os_jupe.c.i - -os_jupe.s: os_jupe.c.s -.PHONY : os_jupe.s - -# target to generate assembly for a file -os_jupe.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_jupe.so.dir/build.make src/core/CMakeFiles/os_jupe.so.dir/os_jupe.c.s -.PHONY : os_jupe.c.s - -os_kick.o: os_kick.c.o -.PHONY : os_kick.o - -# target to build an object file -os_kick.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_kick.so.dir/build.make src/core/CMakeFiles/os_kick.so.dir/os_kick.c.o -.PHONY : os_kick.c.o - -os_kick.i: os_kick.c.i -.PHONY : os_kick.i - -# target to preprocess a source file -os_kick.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_kick.so.dir/build.make src/core/CMakeFiles/os_kick.so.dir/os_kick.c.i -.PHONY : os_kick.c.i - -os_kick.s: os_kick.c.s -.PHONY : os_kick.s - -# target to generate assembly for a file -os_kick.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_kick.so.dir/build.make src/core/CMakeFiles/os_kick.so.dir/os_kick.c.s -.PHONY : os_kick.c.s - -os_logonnews.o: os_logonnews.c.o -.PHONY : os_logonnews.o - -# target to build an object file -os_logonnews.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_logonnews.so.dir/build.make src/core/CMakeFiles/os_logonnews.so.dir/os_logonnews.c.o -.PHONY : os_logonnews.c.o - -os_logonnews.i: os_logonnews.c.i -.PHONY : os_logonnews.i - -# target to preprocess a source file -os_logonnews.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_logonnews.so.dir/build.make src/core/CMakeFiles/os_logonnews.so.dir/os_logonnews.c.i -.PHONY : os_logonnews.c.i - -os_logonnews.s: os_logonnews.c.s -.PHONY : os_logonnews.s - -# target to generate assembly for a file -os_logonnews.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_logonnews.so.dir/build.make src/core/CMakeFiles/os_logonnews.so.dir/os_logonnews.c.s -.PHONY : os_logonnews.c.s - -os_mode.o: os_mode.c.o -.PHONY : os_mode.o - -# target to build an object file -os_mode.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_mode.so.dir/build.make src/core/CMakeFiles/os_mode.so.dir/os_mode.c.o -.PHONY : os_mode.c.o - -os_mode.i: os_mode.c.i -.PHONY : os_mode.i - -# target to preprocess a source file -os_mode.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_mode.so.dir/build.make src/core/CMakeFiles/os_mode.so.dir/os_mode.c.i -.PHONY : os_mode.c.i - -os_mode.s: os_mode.c.s -.PHONY : os_mode.s - -# target to generate assembly for a file -os_mode.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_mode.so.dir/build.make src/core/CMakeFiles/os_mode.so.dir/os_mode.c.s -.PHONY : os_mode.c.s - -os_modinfo.o: os_modinfo.c.o -.PHONY : os_modinfo.o - -# target to build an object file -os_modinfo.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modinfo.so.dir/build.make src/core/CMakeFiles/os_modinfo.so.dir/os_modinfo.c.o -.PHONY : os_modinfo.c.o - -os_modinfo.i: os_modinfo.c.i -.PHONY : os_modinfo.i - -# target to preprocess a source file -os_modinfo.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modinfo.so.dir/build.make src/core/CMakeFiles/os_modinfo.so.dir/os_modinfo.c.i -.PHONY : os_modinfo.c.i - -os_modinfo.s: os_modinfo.c.s -.PHONY : os_modinfo.s - -# target to generate assembly for a file -os_modinfo.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modinfo.so.dir/build.make src/core/CMakeFiles/os_modinfo.so.dir/os_modinfo.c.s -.PHONY : os_modinfo.c.s - -os_modlist.o: os_modlist.c.o -.PHONY : os_modlist.o - -# target to build an object file -os_modlist.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modlist.so.dir/build.make src/core/CMakeFiles/os_modlist.so.dir/os_modlist.c.o -.PHONY : os_modlist.c.o - -os_modlist.i: os_modlist.c.i -.PHONY : os_modlist.i - -# target to preprocess a source file -os_modlist.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modlist.so.dir/build.make src/core/CMakeFiles/os_modlist.so.dir/os_modlist.c.i -.PHONY : os_modlist.c.i - -os_modlist.s: os_modlist.c.s -.PHONY : os_modlist.s - -# target to generate assembly for a file -os_modlist.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modlist.so.dir/build.make src/core/CMakeFiles/os_modlist.so.dir/os_modlist.c.s -.PHONY : os_modlist.c.s - -os_modload.o: os_modload.c.o -.PHONY : os_modload.o - -# target to build an object file -os_modload.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modload.so.dir/build.make src/core/CMakeFiles/os_modload.so.dir/os_modload.c.o -.PHONY : os_modload.c.o - -os_modload.i: os_modload.c.i -.PHONY : os_modload.i - -# target to preprocess a source file -os_modload.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modload.so.dir/build.make src/core/CMakeFiles/os_modload.so.dir/os_modload.c.i -.PHONY : os_modload.c.i - -os_modload.s: os_modload.c.s -.PHONY : os_modload.s - -# target to generate assembly for a file -os_modload.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modload.so.dir/build.make src/core/CMakeFiles/os_modload.so.dir/os_modload.c.s -.PHONY : os_modload.c.s - -os_modunload.o: os_modunload.c.o -.PHONY : os_modunload.o - -# target to build an object file -os_modunload.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modunload.so.dir/build.make src/core/CMakeFiles/os_modunload.so.dir/os_modunload.c.o -.PHONY : os_modunload.c.o - -os_modunload.i: os_modunload.c.i -.PHONY : os_modunload.i - -# target to preprocess a source file -os_modunload.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modunload.so.dir/build.make src/core/CMakeFiles/os_modunload.so.dir/os_modunload.c.i -.PHONY : os_modunload.c.i - -os_modunload.s: os_modunload.c.s -.PHONY : os_modunload.s - -# target to generate assembly for a file -os_modunload.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_modunload.so.dir/build.make src/core/CMakeFiles/os_modunload.so.dir/os_modunload.c.s -.PHONY : os_modunload.c.s - -os_noop.o: os_noop.c.o -.PHONY : os_noop.o - -# target to build an object file -os_noop.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_noop.so.dir/build.make src/core/CMakeFiles/os_noop.so.dir/os_noop.c.o -.PHONY : os_noop.c.o - -os_noop.i: os_noop.c.i -.PHONY : os_noop.i - -# target to preprocess a source file -os_noop.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_noop.so.dir/build.make src/core/CMakeFiles/os_noop.so.dir/os_noop.c.i -.PHONY : os_noop.c.i - -os_noop.s: os_noop.c.s -.PHONY : os_noop.s - -# target to generate assembly for a file -os_noop.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_noop.so.dir/build.make src/core/CMakeFiles/os_noop.so.dir/os_noop.c.s -.PHONY : os_noop.c.s - -os_oline.o: os_oline.c.o -.PHONY : os_oline.o - -# target to build an object file -os_oline.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_oline.so.dir/build.make src/core/CMakeFiles/os_oline.so.dir/os_oline.c.o -.PHONY : os_oline.c.o - -os_oline.i: os_oline.c.i -.PHONY : os_oline.i - -# target to preprocess a source file -os_oline.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_oline.so.dir/build.make src/core/CMakeFiles/os_oline.so.dir/os_oline.c.i -.PHONY : os_oline.c.i - -os_oline.s: os_oline.c.s -.PHONY : os_oline.s - -# target to generate assembly for a file -os_oline.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_oline.so.dir/build.make src/core/CMakeFiles/os_oline.so.dir/os_oline.c.s -.PHONY : os_oline.c.s - -os_oper.o: os_oper.c.o -.PHONY : os_oper.o - -# target to build an object file -os_oper.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_oper.so.dir/build.make src/core/CMakeFiles/os_oper.so.dir/os_oper.c.o -.PHONY : os_oper.c.o - -os_oper.i: os_oper.c.i -.PHONY : os_oper.i - -# target to preprocess a source file -os_oper.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_oper.so.dir/build.make src/core/CMakeFiles/os_oper.so.dir/os_oper.c.i -.PHONY : os_oper.c.i - -os_oper.s: os_oper.c.s -.PHONY : os_oper.s - -# target to generate assembly for a file -os_oper.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_oper.so.dir/build.make src/core/CMakeFiles/os_oper.so.dir/os_oper.c.s -.PHONY : os_oper.c.s - -os_opernews.o: os_opernews.c.o -.PHONY : os_opernews.o - -# target to build an object file -os_opernews.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_opernews.so.dir/build.make src/core/CMakeFiles/os_opernews.so.dir/os_opernews.c.o -.PHONY : os_opernews.c.o - -os_opernews.i: os_opernews.c.i -.PHONY : os_opernews.i - -# target to preprocess a source file -os_opernews.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_opernews.so.dir/build.make src/core/CMakeFiles/os_opernews.so.dir/os_opernews.c.i -.PHONY : os_opernews.c.i - -os_opernews.s: os_opernews.c.s -.PHONY : os_opernews.s - -# target to generate assembly for a file -os_opernews.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_opernews.so.dir/build.make src/core/CMakeFiles/os_opernews.so.dir/os_opernews.c.s -.PHONY : os_opernews.c.s - -os_quit.o: os_quit.c.o -.PHONY : os_quit.o - -# target to build an object file -os_quit.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_quit.so.dir/build.make src/core/CMakeFiles/os_quit.so.dir/os_quit.c.o -.PHONY : os_quit.c.o - -os_quit.i: os_quit.c.i -.PHONY : os_quit.i - -# target to preprocess a source file -os_quit.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_quit.so.dir/build.make src/core/CMakeFiles/os_quit.so.dir/os_quit.c.i -.PHONY : os_quit.c.i - -os_quit.s: os_quit.c.s -.PHONY : os_quit.s - -# target to generate assembly for a file -os_quit.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_quit.so.dir/build.make src/core/CMakeFiles/os_quit.so.dir/os_quit.c.s -.PHONY : os_quit.c.s - -os_randomnews.o: os_randomnews.c.o -.PHONY : os_randomnews.o - -# target to build an object file -os_randomnews.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_randomnews.so.dir/build.make src/core/CMakeFiles/os_randomnews.so.dir/os_randomnews.c.o -.PHONY : os_randomnews.c.o - -os_randomnews.i: os_randomnews.c.i -.PHONY : os_randomnews.i - -# target to preprocess a source file -os_randomnews.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_randomnews.so.dir/build.make src/core/CMakeFiles/os_randomnews.so.dir/os_randomnews.c.i -.PHONY : os_randomnews.c.i - -os_randomnews.s: os_randomnews.c.s -.PHONY : os_randomnews.s - -# target to generate assembly for a file -os_randomnews.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_randomnews.so.dir/build.make src/core/CMakeFiles/os_randomnews.so.dir/os_randomnews.c.s -.PHONY : os_randomnews.c.s - -os_raw.o: os_raw.c.o -.PHONY : os_raw.o - -# target to build an object file -os_raw.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_raw.so.dir/build.make src/core/CMakeFiles/os_raw.so.dir/os_raw.c.o -.PHONY : os_raw.c.o - -os_raw.i: os_raw.c.i -.PHONY : os_raw.i - -# target to preprocess a source file -os_raw.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_raw.so.dir/build.make src/core/CMakeFiles/os_raw.so.dir/os_raw.c.i -.PHONY : os_raw.c.i - -os_raw.s: os_raw.c.s -.PHONY : os_raw.s - -# target to generate assembly for a file -os_raw.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_raw.so.dir/build.make src/core/CMakeFiles/os_raw.so.dir/os_raw.c.s -.PHONY : os_raw.c.s - -os_reload.o: os_reload.c.o -.PHONY : os_reload.o - -# target to build an object file -os_reload.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_reload.so.dir/build.make src/core/CMakeFiles/os_reload.so.dir/os_reload.c.o -.PHONY : os_reload.c.o - -os_reload.i: os_reload.c.i -.PHONY : os_reload.i - -# target to preprocess a source file -os_reload.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_reload.so.dir/build.make src/core/CMakeFiles/os_reload.so.dir/os_reload.c.i -.PHONY : os_reload.c.i - -os_reload.s: os_reload.c.s -.PHONY : os_reload.s - -# target to generate assembly for a file -os_reload.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_reload.so.dir/build.make src/core/CMakeFiles/os_reload.so.dir/os_reload.c.s -.PHONY : os_reload.c.s - -os_restart.o: os_restart.c.o -.PHONY : os_restart.o - -# target to build an object file -os_restart.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_restart.so.dir/build.make src/core/CMakeFiles/os_restart.so.dir/os_restart.c.o -.PHONY : os_restart.c.o - -os_restart.i: os_restart.c.i -.PHONY : os_restart.i - -# target to preprocess a source file -os_restart.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_restart.so.dir/build.make src/core/CMakeFiles/os_restart.so.dir/os_restart.c.i -.PHONY : os_restart.c.i - -os_restart.s: os_restart.c.s -.PHONY : os_restart.s - -# target to generate assembly for a file -os_restart.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_restart.so.dir/build.make src/core/CMakeFiles/os_restart.so.dir/os_restart.c.s -.PHONY : os_restart.c.s - -os_session.o: os_session.c.o -.PHONY : os_session.o - -# target to build an object file -os_session.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_session.so.dir/build.make src/core/CMakeFiles/os_session.so.dir/os_session.c.o -.PHONY : os_session.c.o - -os_session.i: os_session.c.i -.PHONY : os_session.i - -# target to preprocess a source file -os_session.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_session.so.dir/build.make src/core/CMakeFiles/os_session.so.dir/os_session.c.i -.PHONY : os_session.c.i - -os_session.s: os_session.c.s -.PHONY : os_session.s - -# target to generate assembly for a file -os_session.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_session.so.dir/build.make src/core/CMakeFiles/os_session.so.dir/os_session.c.s -.PHONY : os_session.c.s - -os_set.o: os_set.c.o -.PHONY : os_set.o - -# target to build an object file -os_set.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_set.so.dir/build.make src/core/CMakeFiles/os_set.so.dir/os_set.c.o -.PHONY : os_set.c.o - -os_set.i: os_set.c.i -.PHONY : os_set.i - -# target to preprocess a source file -os_set.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_set.so.dir/build.make src/core/CMakeFiles/os_set.so.dir/os_set.c.i -.PHONY : os_set.c.i - -os_set.s: os_set.c.s -.PHONY : os_set.s - -# target to generate assembly for a file -os_set.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_set.so.dir/build.make src/core/CMakeFiles/os_set.so.dir/os_set.c.s -.PHONY : os_set.c.s - -os_sgline.o: os_sgline.c.o -.PHONY : os_sgline.o - -# target to build an object file -os_sgline.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_sgline.so.dir/build.make src/core/CMakeFiles/os_sgline.so.dir/os_sgline.c.o -.PHONY : os_sgline.c.o - -os_sgline.i: os_sgline.c.i -.PHONY : os_sgline.i - -# target to preprocess a source file -os_sgline.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_sgline.so.dir/build.make src/core/CMakeFiles/os_sgline.so.dir/os_sgline.c.i -.PHONY : os_sgline.c.i - -os_sgline.s: os_sgline.c.s -.PHONY : os_sgline.s - -# target to generate assembly for a file -os_sgline.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_sgline.so.dir/build.make src/core/CMakeFiles/os_sgline.so.dir/os_sgline.c.s -.PHONY : os_sgline.c.s - -os_shutdown.o: os_shutdown.c.o -.PHONY : os_shutdown.o - -# target to build an object file -os_shutdown.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_shutdown.so.dir/build.make src/core/CMakeFiles/os_shutdown.so.dir/os_shutdown.c.o -.PHONY : os_shutdown.c.o - -os_shutdown.i: os_shutdown.c.i -.PHONY : os_shutdown.i - -# target to preprocess a source file -os_shutdown.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_shutdown.so.dir/build.make src/core/CMakeFiles/os_shutdown.so.dir/os_shutdown.c.i -.PHONY : os_shutdown.c.i - -os_shutdown.s: os_shutdown.c.s -.PHONY : os_shutdown.s - -# target to generate assembly for a file -os_shutdown.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_shutdown.so.dir/build.make src/core/CMakeFiles/os_shutdown.so.dir/os_shutdown.c.s -.PHONY : os_shutdown.c.s - -os_sqline.o: os_sqline.c.o -.PHONY : os_sqline.o - -# target to build an object file -os_sqline.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_sqline.so.dir/build.make src/core/CMakeFiles/os_sqline.so.dir/os_sqline.c.o -.PHONY : os_sqline.c.o - -os_sqline.i: os_sqline.c.i -.PHONY : os_sqline.i - -# target to preprocess a source file -os_sqline.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_sqline.so.dir/build.make src/core/CMakeFiles/os_sqline.so.dir/os_sqline.c.i -.PHONY : os_sqline.c.i - -os_sqline.s: os_sqline.c.s -.PHONY : os_sqline.s - -# target to generate assembly for a file -os_sqline.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_sqline.so.dir/build.make src/core/CMakeFiles/os_sqline.so.dir/os_sqline.c.s -.PHONY : os_sqline.c.s - -os_staff.o: os_staff.c.o -.PHONY : os_staff.o - -# target to build an object file -os_staff.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_staff.so.dir/build.make src/core/CMakeFiles/os_staff.so.dir/os_staff.c.o -.PHONY : os_staff.c.o - -os_staff.i: os_staff.c.i -.PHONY : os_staff.i - -# target to preprocess a source file -os_staff.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_staff.so.dir/build.make src/core/CMakeFiles/os_staff.so.dir/os_staff.c.i -.PHONY : os_staff.c.i - -os_staff.s: os_staff.c.s -.PHONY : os_staff.s - -# target to generate assembly for a file -os_staff.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_staff.so.dir/build.make src/core/CMakeFiles/os_staff.so.dir/os_staff.c.s -.PHONY : os_staff.c.s - -os_stats.o: os_stats.c.o -.PHONY : os_stats.o - -# target to build an object file -os_stats.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_stats.so.dir/build.make src/core/CMakeFiles/os_stats.so.dir/os_stats.c.o -.PHONY : os_stats.c.o - -os_stats.i: os_stats.c.i -.PHONY : os_stats.i - -# target to preprocess a source file -os_stats.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_stats.so.dir/build.make src/core/CMakeFiles/os_stats.so.dir/os_stats.c.i -.PHONY : os_stats.c.i - -os_stats.s: os_stats.c.s -.PHONY : os_stats.s - -# target to generate assembly for a file -os_stats.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_stats.so.dir/build.make src/core/CMakeFiles/os_stats.so.dir/os_stats.c.s -.PHONY : os_stats.c.s - -os_svsnick.o: os_svsnick.c.o -.PHONY : os_svsnick.o - -# target to build an object file -os_svsnick.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_svsnick.so.dir/build.make src/core/CMakeFiles/os_svsnick.so.dir/os_svsnick.c.o -.PHONY : os_svsnick.c.o - -os_svsnick.i: os_svsnick.c.i -.PHONY : os_svsnick.i - -# target to preprocess a source file -os_svsnick.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_svsnick.so.dir/build.make src/core/CMakeFiles/os_svsnick.so.dir/os_svsnick.c.i -.PHONY : os_svsnick.c.i - -os_svsnick.s: os_svsnick.c.s -.PHONY : os_svsnick.s - -# target to generate assembly for a file -os_svsnick.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_svsnick.so.dir/build.make src/core/CMakeFiles/os_svsnick.so.dir/os_svsnick.c.s -.PHONY : os_svsnick.c.s - -os_szline.o: os_szline.c.o -.PHONY : os_szline.o - -# target to build an object file -os_szline.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_szline.so.dir/build.make src/core/CMakeFiles/os_szline.so.dir/os_szline.c.o -.PHONY : os_szline.c.o - -os_szline.i: os_szline.c.i -.PHONY : os_szline.i - -# target to preprocess a source file -os_szline.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_szline.so.dir/build.make src/core/CMakeFiles/os_szline.so.dir/os_szline.c.i -.PHONY : os_szline.c.i - -os_szline.s: os_szline.c.s -.PHONY : os_szline.s - -# target to generate assembly for a file -os_szline.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_szline.so.dir/build.make src/core/CMakeFiles/os_szline.so.dir/os_szline.c.s -.PHONY : os_szline.c.s - -os_umode.o: os_umode.c.o -.PHONY : os_umode.o - -# target to build an object file -os_umode.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_umode.so.dir/build.make src/core/CMakeFiles/os_umode.so.dir/os_umode.c.o -.PHONY : os_umode.c.o - -os_umode.i: os_umode.c.i -.PHONY : os_umode.i - -# target to preprocess a source file -os_umode.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_umode.so.dir/build.make src/core/CMakeFiles/os_umode.so.dir/os_umode.c.i -.PHONY : os_umode.c.i - -os_umode.s: os_umode.c.s -.PHONY : os_umode.s - -# target to generate assembly for a file -os_umode.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_umode.so.dir/build.make src/core/CMakeFiles/os_umode.so.dir/os_umode.c.s -.PHONY : os_umode.c.s - -os_update.o: os_update.c.o -.PHONY : os_update.o - -# target to build an object file -os_update.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_update.so.dir/build.make src/core/CMakeFiles/os_update.so.dir/os_update.c.o -.PHONY : os_update.c.o - -os_update.i: os_update.c.i -.PHONY : os_update.i - -# target to preprocess a source file -os_update.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_update.so.dir/build.make src/core/CMakeFiles/os_update.so.dir/os_update.c.i -.PHONY : os_update.c.i - -os_update.s: os_update.c.s -.PHONY : os_update.s - -# target to generate assembly for a file -os_update.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_update.so.dir/build.make src/core/CMakeFiles/os_update.so.dir/os_update.c.s -.PHONY : os_update.c.s - -os_userlist.o: os_userlist.c.o -.PHONY : os_userlist.o - -# target to build an object file -os_userlist.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_userlist.so.dir/build.make src/core/CMakeFiles/os_userlist.so.dir/os_userlist.c.o -.PHONY : os_userlist.c.o - -os_userlist.i: os_userlist.c.i -.PHONY : os_userlist.i - -# target to preprocess a source file -os_userlist.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_userlist.so.dir/build.make src/core/CMakeFiles/os_userlist.so.dir/os_userlist.c.i -.PHONY : os_userlist.c.i - -os_userlist.s: os_userlist.c.s -.PHONY : os_userlist.s - -# target to generate assembly for a file -os_userlist.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/os_userlist.so.dir/build.make src/core/CMakeFiles/os_userlist.so.dir/os_userlist.c.s -.PHONY : os_userlist.c.s - -ss_main.o: ss_main.c.o -.PHONY : ss_main.o - -# target to build an object file -ss_main.c.o: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ss_main.so.dir/build.make src/core/CMakeFiles/ss_main.so.dir/ss_main.c.o -.PHONY : ss_main.c.o - -ss_main.i: ss_main.c.i -.PHONY : ss_main.i - -# target to preprocess a source file -ss_main.c.i: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ss_main.so.dir/build.make src/core/CMakeFiles/ss_main.so.dir/ss_main.c.i -.PHONY : ss_main.c.i - -ss_main.s: ss_main.c.s -.PHONY : ss_main.s - -# target to generate assembly for a file -ss_main.c.s: - cd /celes/anope && $(MAKE) -f src/core/CMakeFiles/ss_main.so.dir/build.make src/core/CMakeFiles/ss_main.so.dir/ss_main.c.s -.PHONY : ss_main.c.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... bs_act.so" - @echo "... bs_assign.so" - @echo "... bs_badwords.so" - @echo "... bs_bot.so" - @echo "... bs_botlist.so" - @echo "... bs_fantasy.so" - @echo "... bs_fantasy_kick.so" - @echo "... bs_fantasy_kickban.so" - @echo "... bs_fantasy_owner.so" - @echo "... bs_fantasy_seen.so" - @echo "... bs_help.so" - @echo "... bs_info.so" - @echo "... bs_kick.so" - @echo "... bs_say.so" - @echo "... bs_set.so" - @echo "... bs_unassign.so" - @echo "... cs_access.so" - @echo "... cs_akick.so" - @echo "... cs_ban.so" - @echo "... cs_clear.so" - @echo "... cs_drop.so" - @echo "... cs_forbid.so" - @echo "... cs_getkey.so" - @echo "... cs_getpass.so" - @echo "... cs_help.so" - @echo "... cs_identify.so" - @echo "... cs_info.so" - @echo "... cs_invite.so" - @echo "... cs_kick.so" - @echo "... cs_list.so" - @echo "... cs_logout.so" - @echo "... cs_modes.so" - @echo "... cs_register.so" - @echo "... cs_sendpass.so" - @echo "... cs_set.so" - @echo "... cs_status.so" - @echo "... cs_suspend.so" - @echo "... cs_topic.so" - @echo "... cs_xop.so" - @echo "... edit_cache" - @echo "... enc_md5.so" - @echo "... enc_none.so" - @echo "... enc_old.so" - @echo "... enc_sha1.so" - @echo "... he_help.so" - @echo "... hs_del.so" - @echo "... hs_delall.so" - @echo "... hs_group.so" - @echo "... hs_help.so" - @echo "... hs_list.so" - @echo "... hs_off.so" - @echo "... hs_on.so" - @echo "... hs_set.so" - @echo "... hs_setall.so" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... ms_cancel.so" - @echo "... ms_check.so" - @echo "... ms_del.so" - @echo "... ms_help.so" - @echo "... ms_info.so" - @echo "... ms_list.so" - @echo "... ms_read.so" - @echo "... ms_rsend.so" - @echo "... ms_send.so" - @echo "... ms_sendall.so" - @echo "... ms_set.so" - @echo "... ms_staff.so" - @echo "... ns_access.so" - @echo "... ns_alist.so" - @echo "... ns_drop.so" - @echo "... ns_forbid.so" - @echo "... ns_getemail.so" - @echo "... ns_getpass.so" - @echo "... ns_ghost.so" - @echo "... ns_group.so" - @echo "... ns_help.so" - @echo "... ns_identify.so" - @echo "... ns_info.so" - @echo "... ns_list.so" - @echo "... ns_logout.so" - @echo "... ns_recover.so" - @echo "... ns_register.so" - @echo "... ns_release.so" - @echo "... ns_saset.so" - @echo "... ns_sendpass.so" - @echo "... ns_set.so" - @echo "... ns_status.so" - @echo "... ns_suspend.so" - @echo "... ns_update.so" - @echo "... os_admin.so" - @echo "... os_akill.so" - @echo "... os_chankill.so" - @echo "... os_chanlist.so" - @echo "... os_clearmodes.so" - @echo "... os_defcon.so" - @echo "... os_global.so" - @echo "... os_help.so" - @echo "... os_ignore.so" - @echo "... os_jupe.so" - @echo "... os_kick.so" - @echo "... os_logonnews.so" - @echo "... os_mode.so" - @echo "... os_modinfo.so" - @echo "... os_modlist.so" - @echo "... os_modload.so" - @echo "... os_modunload.so" - @echo "... os_noop.so" - @echo "... os_oline.so" - @echo "... os_oper.so" - @echo "... os_opernews.so" - @echo "... os_quit.so" - @echo "... os_randomnews.so" - @echo "... os_raw.so" - @echo "... os_reload.so" - @echo "... os_restart.so" - @echo "... os_session.so" - @echo "... os_set.so" - @echo "... os_sgline.so" - @echo "... os_shutdown.so" - @echo "... os_sqline.so" - @echo "... os_staff.so" - @echo "... os_stats.so" - @echo "... os_svsnick.so" - @echo "... os_szline.so" - @echo "... os_umode.so" - @echo "... os_update.so" - @echo "... os_userlist.so" - @echo "... rebuild_cache" - @echo "... ss_main.so" - @echo "... bs_act.o" - @echo "... bs_act.i" - @echo "... bs_act.s" - @echo "... bs_assign.o" - @echo "... bs_assign.i" - @echo "... bs_assign.s" - @echo "... bs_badwords.o" - @echo "... bs_badwords.i" - @echo "... bs_badwords.s" - @echo "... bs_bot.o" - @echo "... bs_bot.i" - @echo "... bs_bot.s" - @echo "... bs_botlist.o" - @echo "... bs_botlist.i" - @echo "... bs_botlist.s" - @echo "... bs_fantasy.o" - @echo "... bs_fantasy.i" - @echo "... bs_fantasy.s" - @echo "... bs_fantasy_kick.o" - @echo "... bs_fantasy_kick.i" - @echo "... bs_fantasy_kick.s" - @echo "... bs_fantasy_kickban.o" - @echo "... bs_fantasy_kickban.i" - @echo "... bs_fantasy_kickban.s" - @echo "... bs_fantasy_owner.o" - @echo "... bs_fantasy_owner.i" - @echo "... bs_fantasy_owner.s" - @echo "... bs_fantasy_seen.o" - @echo "... bs_fantasy_seen.i" - @echo "... bs_fantasy_seen.s" - @echo "... bs_help.o" - @echo "... bs_help.i" - @echo "... bs_help.s" - @echo "... bs_info.o" - @echo "... bs_info.i" - @echo "... bs_info.s" - @echo "... bs_kick.o" - @echo "... bs_kick.i" - @echo "... bs_kick.s" - @echo "... bs_say.o" - @echo "... bs_say.i" - @echo "... bs_say.s" - @echo "... bs_set.o" - @echo "... bs_set.i" - @echo "... bs_set.s" - @echo "... bs_unassign.o" - @echo "... bs_unassign.i" - @echo "... bs_unassign.s" - @echo "... cs_access.o" - @echo "... cs_access.i" - @echo "... cs_access.s" - @echo "... cs_akick.o" - @echo "... cs_akick.i" - @echo "... cs_akick.s" - @echo "... cs_ban.o" - @echo "... cs_ban.i" - @echo "... cs_ban.s" - @echo "... cs_clear.o" - @echo "... cs_clear.i" - @echo "... cs_clear.s" - @echo "... cs_drop.o" - @echo "... cs_drop.i" - @echo "... cs_drop.s" - @echo "... cs_forbid.o" - @echo "... cs_forbid.i" - @echo "... cs_forbid.s" - @echo "... cs_getkey.o" - @echo "... cs_getkey.i" - @echo "... cs_getkey.s" - @echo "... cs_getpass.o" - @echo "... cs_getpass.i" - @echo "... cs_getpass.s" - @echo "... cs_help.o" - @echo "... cs_help.i" - @echo "... cs_help.s" - @echo "... cs_identify.o" - @echo "... cs_identify.i" - @echo "... cs_identify.s" - @echo "... cs_info.o" - @echo "... cs_info.i" - @echo "... cs_info.s" - @echo "... cs_invite.o" - @echo "... cs_invite.i" - @echo "... cs_invite.s" - @echo "... cs_kick.o" - @echo "... cs_kick.i" - @echo "... cs_kick.s" - @echo "... cs_list.o" - @echo "... cs_list.i" - @echo "... cs_list.s" - @echo "... cs_logout.o" - @echo "... cs_logout.i" - @echo "... cs_logout.s" - @echo "... cs_modes.o" - @echo "... cs_modes.i" - @echo "... cs_modes.s" - @echo "... cs_register.o" - @echo "... cs_register.i" - @echo "... cs_register.s" - @echo "... cs_sendpass.o" - @echo "... cs_sendpass.i" - @echo "... cs_sendpass.s" - @echo "... cs_set.o" - @echo "... cs_set.i" - @echo "... cs_set.s" - @echo "... cs_status.o" - @echo "... cs_status.i" - @echo "... cs_status.s" - @echo "... cs_suspend.o" - @echo "... cs_suspend.i" - @echo "... cs_suspend.s" - @echo "... cs_topic.o" - @echo "... cs_topic.i" - @echo "... cs_topic.s" - @echo "... cs_xop.o" - @echo "... cs_xop.i" - @echo "... cs_xop.s" - @echo "... enc_md5.o" - @echo "... enc_md5.i" - @echo "... enc_md5.s" - @echo "... enc_none.o" - @echo "... enc_none.i" - @echo "... enc_none.s" - @echo "... enc_old.o" - @echo "... enc_old.i" - @echo "... enc_old.s" - @echo "... enc_sha1.o" - @echo "... enc_sha1.i" - @echo "... enc_sha1.s" - @echo "... he_help.o" - @echo "... he_help.i" - @echo "... he_help.s" - @echo "... hs_del.o" - @echo "... hs_del.i" - @echo "... hs_del.s" - @echo "... hs_delall.o" - @echo "... hs_delall.i" - @echo "... hs_delall.s" - @echo "... hs_group.o" - @echo "... hs_group.i" - @echo "... hs_group.s" - @echo "... hs_help.o" - @echo "... hs_help.i" - @echo "... hs_help.s" - @echo "... hs_list.o" - @echo "... hs_list.i" - @echo "... hs_list.s" - @echo "... hs_off.o" - @echo "... hs_off.i" - @echo "... hs_off.s" - @echo "... hs_on.o" - @echo "... hs_on.i" - @echo "... hs_on.s" - @echo "... hs_set.o" - @echo "... hs_set.i" - @echo "... hs_set.s" - @echo "... hs_setall.o" - @echo "... hs_setall.i" - @echo "... hs_setall.s" - @echo "... ms_cancel.o" - @echo "... ms_cancel.i" - @echo "... ms_cancel.s" - @echo "... ms_check.o" - @echo "... ms_check.i" - @echo "... ms_check.s" - @echo "... ms_del.o" - @echo "... ms_del.i" - @echo "... ms_del.s" - @echo "... ms_help.o" - @echo "... ms_help.i" - @echo "... ms_help.s" - @echo "... ms_info.o" - @echo "... ms_info.i" - @echo "... ms_info.s" - @echo "... ms_list.o" - @echo "... ms_list.i" - @echo "... ms_list.s" - @echo "... ms_read.o" - @echo "... ms_read.i" - @echo "... ms_read.s" - @echo "... ms_rsend.o" - @echo "... ms_rsend.i" - @echo "... ms_rsend.s" - @echo "... ms_send.o" - @echo "... ms_send.i" - @echo "... ms_send.s" - @echo "... ms_sendall.o" - @echo "... ms_sendall.i" - @echo "... ms_sendall.s" - @echo "... ms_set.o" - @echo "... ms_set.i" - @echo "... ms_set.s" - @echo "... ms_staff.o" - @echo "... ms_staff.i" - @echo "... ms_staff.s" - @echo "... ns_access.o" - @echo "... ns_access.i" - @echo "... ns_access.s" - @echo "... ns_alist.o" - @echo "... ns_alist.i" - @echo "... ns_alist.s" - @echo "... ns_drop.o" - @echo "... ns_drop.i" - @echo "... ns_drop.s" - @echo "... ns_forbid.o" - @echo "... ns_forbid.i" - @echo "... ns_forbid.s" - @echo "... ns_getemail.o" - @echo "... ns_getemail.i" - @echo "... ns_getemail.s" - @echo "... ns_getpass.o" - @echo "... ns_getpass.i" - @echo "... ns_getpass.s" - @echo "... ns_ghost.o" - @echo "... ns_ghost.i" - @echo "... ns_ghost.s" - @echo "... ns_group.o" - @echo "... ns_group.i" - @echo "... ns_group.s" - @echo "... ns_help.o" - @echo "... ns_help.i" - @echo "... ns_help.s" - @echo "... ns_identify.o" - @echo "... ns_identify.i" - @echo "... ns_identify.s" - @echo "... ns_info.o" - @echo "... ns_info.i" - @echo "... ns_info.s" - @echo "... ns_list.o" - @echo "... ns_list.i" - @echo "... ns_list.s" - @echo "... ns_logout.o" - @echo "... ns_logout.i" - @echo "... ns_logout.s" - @echo "... ns_recover.o" - @echo "... ns_recover.i" - @echo "... ns_recover.s" - @echo "... ns_register.o" - @echo "... ns_register.i" - @echo "... ns_register.s" - @echo "... ns_release.o" - @echo "... ns_release.i" - @echo "... ns_release.s" - @echo "... ns_saset.o" - @echo "... ns_saset.i" - @echo "... ns_saset.s" - @echo "... ns_sendpass.o" - @echo "... ns_sendpass.i" - @echo "... ns_sendpass.s" - @echo "... ns_set.o" - @echo "... ns_set.i" - @echo "... ns_set.s" - @echo "... ns_status.o" - @echo "... ns_status.i" - @echo "... ns_status.s" - @echo "... ns_suspend.o" - @echo "... ns_suspend.i" - @echo "... ns_suspend.s" - @echo "... ns_update.o" - @echo "... ns_update.i" - @echo "... ns_update.s" - @echo "... os_admin.o" - @echo "... os_admin.i" - @echo "... os_admin.s" - @echo "... os_akill.o" - @echo "... os_akill.i" - @echo "... os_akill.s" - @echo "... os_chankill.o" - @echo "... os_chankill.i" - @echo "... os_chankill.s" - @echo "... os_chanlist.o" - @echo "... os_chanlist.i" - @echo "... os_chanlist.s" - @echo "... os_clearmodes.o" - @echo "... os_clearmodes.i" - @echo "... os_clearmodes.s" - @echo "... os_defcon.o" - @echo "... os_defcon.i" - @echo "... os_defcon.s" - @echo "... os_global.o" - @echo "... os_global.i" - @echo "... os_global.s" - @echo "... os_help.o" - @echo "... os_help.i" - @echo "... os_help.s" - @echo "... os_ignore.o" - @echo "... os_ignore.i" - @echo "... os_ignore.s" - @echo "... os_jupe.o" - @echo "... os_jupe.i" - @echo "... os_jupe.s" - @echo "... os_kick.o" - @echo "... os_kick.i" - @echo "... os_kick.s" - @echo "... os_logonnews.o" - @echo "... os_logonnews.i" - @echo "... os_logonnews.s" - @echo "... os_mode.o" - @echo "... os_mode.i" - @echo "... os_mode.s" - @echo "... os_modinfo.o" - @echo "... os_modinfo.i" - @echo "... os_modinfo.s" - @echo "... os_modlist.o" - @echo "... os_modlist.i" - @echo "... os_modlist.s" - @echo "... os_modload.o" - @echo "... os_modload.i" - @echo "... os_modload.s" - @echo "... os_modunload.o" - @echo "... os_modunload.i" - @echo "... os_modunload.s" - @echo "... os_noop.o" - @echo "... os_noop.i" - @echo "... os_noop.s" - @echo "... os_oline.o" - @echo "... os_oline.i" - @echo "... os_oline.s" - @echo "... os_oper.o" - @echo "... os_oper.i" - @echo "... os_oper.s" - @echo "... os_opernews.o" - @echo "... os_opernews.i" - @echo "... os_opernews.s" - @echo "... os_quit.o" - @echo "... os_quit.i" - @echo "... os_quit.s" - @echo "... os_randomnews.o" - @echo "... os_randomnews.i" - @echo "... os_randomnews.s" - @echo "... os_raw.o" - @echo "... os_raw.i" - @echo "... os_raw.s" - @echo "... os_reload.o" - @echo "... os_reload.i" - @echo "... os_reload.s" - @echo "... os_restart.o" - @echo "... os_restart.i" - @echo "... os_restart.s" - @echo "... os_session.o" - @echo "... os_session.i" - @echo "... os_session.s" - @echo "... os_set.o" - @echo "... os_set.i" - @echo "... os_set.s" - @echo "... os_sgline.o" - @echo "... os_sgline.i" - @echo "... os_sgline.s" - @echo "... os_shutdown.o" - @echo "... os_shutdown.i" - @echo "... os_shutdown.s" - @echo "... os_sqline.o" - @echo "... os_sqline.i" - @echo "... os_sqline.s" - @echo "... os_staff.o" - @echo "... os_staff.i" - @echo "... os_staff.s" - @echo "... os_stats.o" - @echo "... os_stats.i" - @echo "... os_stats.s" - @echo "... os_svsnick.o" - @echo "... os_svsnick.i" - @echo "... os_svsnick.s" - @echo "... os_szline.o" - @echo "... os_szline.i" - @echo "... os_szline.s" - @echo "... os_umode.o" - @echo "... os_umode.i" - @echo "... os_umode.s" - @echo "... os_update.o" - @echo "... os_update.i" - @echo "... os_update.s" - @echo "... os_userlist.o" - @echo "... os_userlist.i" - @echo "... os_userlist.s" - @echo "... ss_main.o" - @echo "... ss_main.i" - @echo "... ss_main.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /celes/anope && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/src/core/Makefile.sub b/src/core/Makefile.sub deleted file mode 100644 index 9fbadf3b0..000000000 --- a/src/core/Makefile.sub +++ /dev/null @@ -1,29 +0,0 @@ -MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'ANOPELIBS=${ANOPELIBS}' \ - 'LDFLAGS=${LDFLAGS}' 'BINDEST=${BINDEST}' 'INSTALL=${INSTALL}' \ - 'INCLUDEDIR=${INCLUDEDIR}' 'RM=${RM}' 'CP=${CP}' \ - 'TOUCH=${TOUCH}' 'SHELL=${SHELL}' 'DATDEST=${DATDEST}' \ - 'RUNGROUP=${RUNGROUP}' 'MODULE_PATH=${MODULE_PATH}' \ - 'PROFILE=${PROFILE}' 'SHARED=${SHARED}' 'MODULEFLAGS=${MODULEFLAGS}' - -OBJECTS= $(SRCS:.c=.o) -SO_FILES=$(OBJECTS:.o=.s) -CDEFS= -rdynamic -Wall - -all: module - -module: $(OBJECTS) so - -distclean: spotless - -.c.o: - $(CC) $(CC) ${CFLAGS} ${CDEFS} ${MODULEFLAGS} -I../ -I../../${INCLUDEDIR} -c $< - -so: - $(CC) ${SHARED} $(OBJECTS) -o ../$(TARGET).so ${PROFILE} - -clean: - rm -f *.o *.so *.c~ core - -spotless: clean - rm -f *~ *.o *.so *.c~ core - diff --git a/src/core/Makefile.win32 b/src/core/Makefile.win32 deleted file mode 100644 index 75e629b8d..000000000 --- a/src/core/Makefile.win32 +++ /dev/null @@ -1,24 +0,0 @@ -include ../../Makefile.inc.win32 - -SRCS=bs_act.c bs_assign.c bs_badwords.c bs_bot.c bs_botlist.c bs_fantasy.c bs_fantasy_kick.c bs_fantasy_kickban.c bs_fantasy_owner.c bs_fantasy_seen.c bs_help.c bs_info.c bs_kick.c bs_say.c bs_set.c bs_unassign.c cs_access.c cs_akick.c cs_ban.c cs_clear.c cs_drop.c cs_forbid.c cs_getkey.c cs_getpass.c cs_help.c cs_identify.c cs_info.c cs_invite.c cs_kick.c cs_list.c cs_logout.c cs_modes.c cs_register.c cs_sendpass.c cs_set.c cs_status.c cs_suspend.c cs_topic.c cs_xop.c enc_none.c enc_md5.c enc_old.c he_help.c hs_del.c hs_delall.c hs_group.c hs_help.c hs_list.c hs_off.c hs_on.c hs_set.c hs_setall.c ms_cancel.c ms_check.c ms_del.c ms_help.c ms_info.c ms_list.c ms_read.c ms_rsend.c ms_send.c ms_sendall.c ms_set.c ms_staff.c ns_access.c ns_alist.c ns_drop.c ns_forbid.c ns_getemail.c ns_getpass.c ns_ghost.c ns_group.c ns_help.c ns_identify.c ns_info.c ns_list.c ns_logout.c ns_recover.c ns_register.c ns_release.c ns_sendpass.c ns_set.c ns_saset.c ns_status.c ns_suspend.c ns_update.c os_admin.c os_akill.c os_chankill.c os_chanlist.c os_clearmodes.c os_defcon.c os_global.c os_help.c os_ignore.c os_jupe.c os_kick.c os_logonnews.c os_mode.c os_modinfo.c os_modlist.c os_modload.c os_modunload.c os_noop.c os_oline.c os_oper.c os_opernews.c os_quit.c os_randomnews.c os_raw.c os_reload.c os_restart.c os_session.c os_set.c os_sgline.c os_shutdown.c os_sqline.c os_staff.c os_stats.c os_svsnick.c os_szline.c os_umode.c os_update.c os_userlist.c ss_main.c -OBJECTS= $(SRCS:.c=.dll) -CFLAGS=/LD /MD /D MODULE_COMPILE $(CFLAGS) /I"../../include" -LFLAGS=/link ../anope.lib wsock32.lib $(LIBS) $(LFLAGS) $(MYSQL_LIB_PATH) /export:init_module /export:destroy_module /VERSION:$(VERSION) - -all: $(OBJECTS) - -distclean: clean spotless - -.c.dll: - $(CC) $(CFLAGS) $< ..\mod_version.c $(LFLAGS) - -clean: - -@del *.obj - -spotless: clean - -@del *.dll *.lib *.exp *.manifest - -install: - -@mkdir ..\..\$(DATDEST)\modules - -@mkdir ..\..\$(DATDEST)\modules\runtime - -@copy *.dll ..\..\$(DATDEST)\modules diff --git a/src/core/configure b/src/core/configure deleted file mode 100755 index 92efecd41..000000000 --- a/src/core/configure +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh - -oldpath=`pwd` - -if [ $1 ]; then - cd $1 -fi - -echo2 () { - $ECHO2 "$*$ECHO2SUF" # these are defined later -} - -ECHO2SUF='' -if [ "`echo -n a ; echo -n b`" = "ab" ] ; then - ECHO2='echo -n' -elif [ "`echo 'a\c' ; echo 'b\c'`" = "ab" ] ; then - ECHO2='echo' ; ECHO2SUF='\c' -elif [ "`printf 'a' 2>&1 ; printf 'b' 2>&1`" = "ab" ] ; then - ECHO2='printf "%s"' -else - # oh well... - ECHO2='echo' -fi -export ECHO2 ECHO2SUF - - -echo2 "SRCS=" > ./Makefile.inc -FIRST=1 -for oldfile in *.c -do - if [ "$FIRST" = 1 ] ; then - echo2 " "$oldfile >> ./Makefile.inc - else - echo "\\" >> ./Makefile.inc - echo2 " " $oldfile >> ./Makefile.inc - fi - FIRST=0 -done -echo "" >> ./Makefile.inc - -echo2 "SUBS=" >> ./Makefile.inc -FIRST=1 -for dir in * -do - if [ -d $dir ] ; then - if [ -f $dir/Makefile ] ; then - if [ "$FIRST" = 1 ] ; then - echo2 " "$dir >> ./Makefile.inc - else - echo "\\" >> ./Makefile.inc - echo2 " " $dir >> ./Makefile.inc - fi - FIRST=0 - fi - fi -done - -cd $oldpath - -exit 0 diff --git a/src/core/dummy/Makefile b/src/core/dummy/Makefile deleted file mode 100644 index ec93af36d..000000000 --- a/src/core/dummy/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -all: DUMMY - -DUMMY: -clean: -distclean: -install: diff --git a/src/makefile.win32 b/src/makefile.win32 deleted file mode 100644 index 7558c1ad6..000000000 --- a/src/makefile.win32 +++ /dev/null @@ -1,117 +0,0 @@ -# Make file for Win32 -# -# (C) 2003-2008 Anope Team -# Contact us at info@anope.org -# -# Please read COPYING and README for further details. -# -# Based on the original code of Epona by Lara. -# Based on the original code of Services by Andy Church. -# -# $Id:$ -# - -# Source Makefile - -include ../Makefile.inc.win32 - -########################################################################### - -OBJS = actions.obj base64.obj bots.obj botserv.obj channels.obj chanserv.obj commands.obj compat.obj \ - config.obj datafiles.obj encrypt.obj events.obj helpserv.obj hostserv.obj \ - init.obj ircd.obj language.obj log.obj mail.obj main.obj memory.obj \ - memoserv.obj messages.obj misc.obj modules.obj mod_version.obj news.obj nickserv.obj operserv.obj \ - process.obj send.obj servers.obj sessions.obj slist.obj sockutil.obj \ - timeout.obj users.obj module.obj modulemanager.obj hashcomp.obj configreader.obj - -SRCS = actions.c base64.c botserv.c bots.cpp channels.c chanserv.c commands.c compat.c \ - config.c datafiles.c encrypt.c events.c helpserv.c hostserv.c init.c ircd.c \ - language.c log.c mail.c main.c memory.c memoserv.c messages.c misc.c \ - modules.c mod_version.c news.c nickserv.c operserv.c process.c send.c servers.obj sessions.c \ - slist.c sockutil.c timeout.c users.c module.cpp modulemanager.cpp hashcomp.cpp configreader.cpp - -########################################################################### - -.c.obj: - $(CC) $(CFLAGS) -c $< - -.cpp.obj: - $(CC) $(CFLAGS) -c $< - - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) win32.res - $(CC) $(OBJS) win32.res /link /debug /out:$(PROGRAM) /implib:anope.lib $(LIBS) $(LFLAGS) $(MLIBS) $(ELIBS) - -spotless: - -@erase *.obj *.exe *.exp *.lib tools\*.exe *.res win32.rc *.manifest - -install: - -@copy anope.exe ..\anope.exe - -@mkdir ..\$(DATDEST)\bin - -@copy bin\* ..\$(DATDEST)\bin - -@copy anope.exe.manifest ..\anope.exe.manifest - -win32.res: win32.rc - $(RC) /l 0x409 $(RC_FLAGS) /fowin32.res win32.rc - - -########################################################################### - -# Catch any changes in compilation options at the top of this file -$(OBJS): - -actions.obj: actions.c ..\include\services.h -base64.obj: base64.c ..\include\services.h -bots.obj: bots.cpp ..\include\services.h -botserv.obj: botserv.c ..\include\services.h ..\include\pseudo.h ..\include\language.h -channels.obj: channels.c ..\include\services.h -chanserv.obj: chanserv.c ..\include\services.h ..\include\pseudo.h -commands.obj: commands.c ..\include\services.h ..\include\commands.h ..\include\language.h -compat.obj: compat.c ..\include\services.h -config.obj: config.c ..\include\services.h -datafiles.obj: datafiles.c ..\include\services.h ..\include\datafiles.h -encrypt.obj: encrypt.c ..\include\encrypt.h ..\include\sysconf.h -events.obj: events.c ..\include\modules.h ..\include\language.h ..\include\version.h -init.obj: init.c ..\include\services.h -ircd.obj: ircd.c ..\include\services.h -hashcomp.obj: hashcomp.cpp ..\include\services.h ..\include\hashcomp.h -hostserv.obj: hostserv.c ..\include\services.h ..\include\pseudo.h -language.obj: language.c ..\include\services.h ..\include\language.h -list.obj: list.c ..\include\services.h -log.obj: log.c ..\include\services.h ..\include\pseudo.h -mail.obj: mail.c ..\include\services.h ..\include\language.h -main.obj: main.c ..\include\services.h ..\include\timeout.h ..\include\version.h -memory.obj: memory.c ..\include\services.h -memoserv.obj: memoserv.c ..\include\services.h ..\include\pseudo.h -messages.obj: messages.c ..\include\services.h ..\include\messages.h ..\include\language.h -modules.obj: modules.c ..\include\modules.h ..\include\language.h ..\include\version.h -module.obj: module.cpp ..\include\modules.h ..\include\language.h ..\include\version.h -modulemanager.obj: modulemanager.cpp ..\include\modules.h ..\include\language.h ..\include\version.h -mod_version.obj: mod_version.c ..\include\modules.h ..\include\version.h -misc.obj: misc.c ..\include\services.h ..\include\language.h -news.obj: news.c ..\include\services.h ..\include\pseudo.h -nickserv.obj: nickserv.c ..\include\services.h ..\include\pseudo.h -operserv.obj: operserv.c ..\include\services.h ..\include\pseudo.h -process.obj: process.c ..\include\services.h ..\include\messages.h -send.obj: send.c ..\include\services.h -servers.obj: servers.c ..\include\services.h -sessions.obj: sessions.c ..\include\services.h ..\include\pseudo.h -slist.obj: slist.c ..\include\services.h ..\include\slist.h -sockutil.obj: sockutil.c ..\include\services.h -timeout.obj: timeout.c ..\include\services.h ..\include\timeout.h -users.obj: users.c ..\include\services.h -vsnprintf.obj: vsnprintf.c - -########################################################################### - -..\include\services.h: ..\include\sysconf.h ..\include\config.h ..\include\extern.h - -..\include\extern.h: ..\include\slist.h - -..\include\pseudo.h: ..\include\commands.h ..\include\language.h ..\include\timeout.h ..\include\encrypt.h ..\include\datafiles.h ..\include\slist.h - -########################################################################### - -FRC: diff --git a/src/modules/Makefile b/src/modules/Makefile deleted file mode 100644 index bc285989c..000000000 --- a/src/modules/Makefile +++ /dev/null @@ -1,545 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.6 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/local/bin/cmake - -# The command to remove a file. -RM = /usr/local/bin/cmake -E remove -f - -# The program to use to edit the cache. -CMAKE_EDIT_COMMAND = /usr/local/bin/ccmake - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /celes/anope - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /celes/anope - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." - cd /celes/anope/src/modules && /usr/local/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - cd /celes/anope/src/modules && /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - cd /celes/anope/src/modules && /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." - cd /celes/anope/src/modules && /usr/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." - cd /celes/anope/src/modules && /usr/local/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." - cd /celes/anope/src/modules && /usr/local/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# The main all target -all: cmake_check_build_system - cd /celes/anope && $(CMAKE_COMMAND) -E cmake_progress_start /celes/anope/CMakeFiles /celes/anope/src/modules/CMakeFiles/progress.make - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/modules/all - $(CMAKE_COMMAND) -E cmake_progress_start /celes/anope/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/modules/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/modules/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/modules/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /celes/anope && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -src/modules/CMakeFiles/bs_fantasy_unban.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/modules/CMakeFiles/bs_fantasy_unban.so.dir/rule -.PHONY : src/modules/CMakeFiles/bs_fantasy_unban.so.dir/rule - -# Convenience name for target. -bs_fantasy_unban.so: src/modules/CMakeFiles/bs_fantasy_unban.so.dir/rule -.PHONY : bs_fantasy_unban.so - -# fast build rule for target. -bs_fantasy_unban.so/fast: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/bs_fantasy_unban.so.dir/build.make src/modules/CMakeFiles/bs_fantasy_unban.so.dir/build -.PHONY : bs_fantasy_unban.so/fast - -# Convenience name for target. -src/modules/CMakeFiles/cs_appendtopic.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/modules/CMakeFiles/cs_appendtopic.so.dir/rule -.PHONY : src/modules/CMakeFiles/cs_appendtopic.so.dir/rule - -# Convenience name for target. -cs_appendtopic.so: src/modules/CMakeFiles/cs_appendtopic.so.dir/rule -.PHONY : cs_appendtopic.so - -# fast build rule for target. -cs_appendtopic.so/fast: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/cs_appendtopic.so.dir/build.make src/modules/CMakeFiles/cs_appendtopic.so.dir/build -.PHONY : cs_appendtopic.so/fast - -# Convenience name for target. -src/modules/CMakeFiles/cs_enforce.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/modules/CMakeFiles/cs_enforce.so.dir/rule -.PHONY : src/modules/CMakeFiles/cs_enforce.so.dir/rule - -# Convenience name for target. -cs_enforce.so: src/modules/CMakeFiles/cs_enforce.so.dir/rule -.PHONY : cs_enforce.so - -# fast build rule for target. -cs_enforce.so/fast: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/cs_enforce.so.dir/build.make src/modules/CMakeFiles/cs_enforce.so.dir/build -.PHONY : cs_enforce.so/fast - -# Convenience name for target. -src/modules/CMakeFiles/cs_tban.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/modules/CMakeFiles/cs_tban.so.dir/rule -.PHONY : src/modules/CMakeFiles/cs_tban.so.dir/rule - -# Convenience name for target. -cs_tban.so: src/modules/CMakeFiles/cs_tban.so.dir/rule -.PHONY : cs_tban.so - -# fast build rule for target. -cs_tban.so/fast: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/cs_tban.so.dir/build.make src/modules/CMakeFiles/cs_tban.so.dir/build -.PHONY : cs_tban.so/fast - -# Convenience name for target. -src/modules/CMakeFiles/hs_request.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/modules/CMakeFiles/hs_request.so.dir/rule -.PHONY : src/modules/CMakeFiles/hs_request.so.dir/rule - -# Convenience name for target. -hs_request.so: src/modules/CMakeFiles/hs_request.so.dir/rule -.PHONY : hs_request.so - -# fast build rule for target. -hs_request.so/fast: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/hs_request.so.dir/build.make src/modules/CMakeFiles/hs_request.so.dir/build -.PHONY : hs_request.so/fast - -# Convenience name for target. -src/modules/CMakeFiles/ns_maxemail.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/modules/CMakeFiles/ns_maxemail.so.dir/rule -.PHONY : src/modules/CMakeFiles/ns_maxemail.so.dir/rule - -# Convenience name for target. -ns_maxemail.so: src/modules/CMakeFiles/ns_maxemail.so.dir/rule -.PHONY : ns_maxemail.so - -# fast build rule for target. -ns_maxemail.so/fast: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/ns_maxemail.so.dir/build.make src/modules/CMakeFiles/ns_maxemail.so.dir/build -.PHONY : ns_maxemail.so/fast - -# Convenience name for target. -src/modules/CMakeFiles/ns_noop_convert.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/modules/CMakeFiles/ns_noop_convert.so.dir/rule -.PHONY : src/modules/CMakeFiles/ns_noop_convert.so.dir/rule - -# Convenience name for target. -ns_noop_convert.so: src/modules/CMakeFiles/ns_noop_convert.so.dir/rule -.PHONY : ns_noop_convert.so - -# fast build rule for target. -ns_noop_convert.so/fast: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/ns_noop_convert.so.dir/build.make src/modules/CMakeFiles/ns_noop_convert.so.dir/build -.PHONY : ns_noop_convert.so/fast - -# Convenience name for target. -src/modules/CMakeFiles/os_ignore_db.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/modules/CMakeFiles/os_ignore_db.so.dir/rule -.PHONY : src/modules/CMakeFiles/os_ignore_db.so.dir/rule - -# Convenience name for target. -os_ignore_db.so: src/modules/CMakeFiles/os_ignore_db.so.dir/rule -.PHONY : os_ignore_db.so - -# fast build rule for target. -os_ignore_db.so/fast: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/os_ignore_db.so.dir/build.make src/modules/CMakeFiles/os_ignore_db.so.dir/build -.PHONY : os_ignore_db.so/fast - -# Convenience name for target. -src/modules/CMakeFiles/os_info.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/modules/CMakeFiles/os_info.so.dir/rule -.PHONY : src/modules/CMakeFiles/os_info.so.dir/rule - -# Convenience name for target. -os_info.so: src/modules/CMakeFiles/os_info.so.dir/rule -.PHONY : os_info.so - -# fast build rule for target. -os_info.so/fast: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/os_info.so.dir/build.make src/modules/CMakeFiles/os_info.so.dir/build -.PHONY : os_info.so/fast - -bs_fantasy_unban.o: bs_fantasy_unban.c.o -.PHONY : bs_fantasy_unban.o - -# target to build an object file -bs_fantasy_unban.c.o: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/bs_fantasy_unban.so.dir/build.make src/modules/CMakeFiles/bs_fantasy_unban.so.dir/bs_fantasy_unban.c.o -.PHONY : bs_fantasy_unban.c.o - -bs_fantasy_unban.i: bs_fantasy_unban.c.i -.PHONY : bs_fantasy_unban.i - -# target to preprocess a source file -bs_fantasy_unban.c.i: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/bs_fantasy_unban.so.dir/build.make src/modules/CMakeFiles/bs_fantasy_unban.so.dir/bs_fantasy_unban.c.i -.PHONY : bs_fantasy_unban.c.i - -bs_fantasy_unban.s: bs_fantasy_unban.c.s -.PHONY : bs_fantasy_unban.s - -# target to generate assembly for a file -bs_fantasy_unban.c.s: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/bs_fantasy_unban.so.dir/build.make src/modules/CMakeFiles/bs_fantasy_unban.so.dir/bs_fantasy_unban.c.s -.PHONY : bs_fantasy_unban.c.s - -cs_appendtopic.o: cs_appendtopic.c.o -.PHONY : cs_appendtopic.o - -# target to build an object file -cs_appendtopic.c.o: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/cs_appendtopic.so.dir/build.make src/modules/CMakeFiles/cs_appendtopic.so.dir/cs_appendtopic.c.o -.PHONY : cs_appendtopic.c.o - -cs_appendtopic.i: cs_appendtopic.c.i -.PHONY : cs_appendtopic.i - -# target to preprocess a source file -cs_appendtopic.c.i: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/cs_appendtopic.so.dir/build.make src/modules/CMakeFiles/cs_appendtopic.so.dir/cs_appendtopic.c.i -.PHONY : cs_appendtopic.c.i - -cs_appendtopic.s: cs_appendtopic.c.s -.PHONY : cs_appendtopic.s - -# target to generate assembly for a file -cs_appendtopic.c.s: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/cs_appendtopic.so.dir/build.make src/modules/CMakeFiles/cs_appendtopic.so.dir/cs_appendtopic.c.s -.PHONY : cs_appendtopic.c.s - -cs_enforce.o: cs_enforce.c.o -.PHONY : cs_enforce.o - -# target to build an object file -cs_enforce.c.o: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/cs_enforce.so.dir/build.make src/modules/CMakeFiles/cs_enforce.so.dir/cs_enforce.c.o -.PHONY : cs_enforce.c.o - -cs_enforce.i: cs_enforce.c.i -.PHONY : cs_enforce.i - -# target to preprocess a source file -cs_enforce.c.i: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/cs_enforce.so.dir/build.make src/modules/CMakeFiles/cs_enforce.so.dir/cs_enforce.c.i -.PHONY : cs_enforce.c.i - -cs_enforce.s: cs_enforce.c.s -.PHONY : cs_enforce.s - -# target to generate assembly for a file -cs_enforce.c.s: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/cs_enforce.so.dir/build.make src/modules/CMakeFiles/cs_enforce.so.dir/cs_enforce.c.s -.PHONY : cs_enforce.c.s - -cs_tban.o: cs_tban.c.o -.PHONY : cs_tban.o - -# target to build an object file -cs_tban.c.o: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/cs_tban.so.dir/build.make src/modules/CMakeFiles/cs_tban.so.dir/cs_tban.c.o -.PHONY : cs_tban.c.o - -cs_tban.i: cs_tban.c.i -.PHONY : cs_tban.i - -# target to preprocess a source file -cs_tban.c.i: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/cs_tban.so.dir/build.make src/modules/CMakeFiles/cs_tban.so.dir/cs_tban.c.i -.PHONY : cs_tban.c.i - -cs_tban.s: cs_tban.c.s -.PHONY : cs_tban.s - -# target to generate assembly for a file -cs_tban.c.s: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/cs_tban.so.dir/build.make src/modules/CMakeFiles/cs_tban.so.dir/cs_tban.c.s -.PHONY : cs_tban.c.s - -hs_request.o: hs_request.c.o -.PHONY : hs_request.o - -# target to build an object file -hs_request.c.o: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/hs_request.so.dir/build.make src/modules/CMakeFiles/hs_request.so.dir/hs_request.c.o -.PHONY : hs_request.c.o - -hs_request.i: hs_request.c.i -.PHONY : hs_request.i - -# target to preprocess a source file -hs_request.c.i: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/hs_request.so.dir/build.make src/modules/CMakeFiles/hs_request.so.dir/hs_request.c.i -.PHONY : hs_request.c.i - -hs_request.s: hs_request.c.s -.PHONY : hs_request.s - -# target to generate assembly for a file -hs_request.c.s: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/hs_request.so.dir/build.make src/modules/CMakeFiles/hs_request.so.dir/hs_request.c.s -.PHONY : hs_request.c.s - -ns_maxemail.o: ns_maxemail.c.o -.PHONY : ns_maxemail.o - -# target to build an object file -ns_maxemail.c.o: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/ns_maxemail.so.dir/build.make src/modules/CMakeFiles/ns_maxemail.so.dir/ns_maxemail.c.o -.PHONY : ns_maxemail.c.o - -ns_maxemail.i: ns_maxemail.c.i -.PHONY : ns_maxemail.i - -# target to preprocess a source file -ns_maxemail.c.i: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/ns_maxemail.so.dir/build.make src/modules/CMakeFiles/ns_maxemail.so.dir/ns_maxemail.c.i -.PHONY : ns_maxemail.c.i - -ns_maxemail.s: ns_maxemail.c.s -.PHONY : ns_maxemail.s - -# target to generate assembly for a file -ns_maxemail.c.s: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/ns_maxemail.so.dir/build.make src/modules/CMakeFiles/ns_maxemail.so.dir/ns_maxemail.c.s -.PHONY : ns_maxemail.c.s - -ns_noop_convert.o: ns_noop_convert.c.o -.PHONY : ns_noop_convert.o - -# target to build an object file -ns_noop_convert.c.o: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/ns_noop_convert.so.dir/build.make src/modules/CMakeFiles/ns_noop_convert.so.dir/ns_noop_convert.c.o -.PHONY : ns_noop_convert.c.o - -ns_noop_convert.i: ns_noop_convert.c.i -.PHONY : ns_noop_convert.i - -# target to preprocess a source file -ns_noop_convert.c.i: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/ns_noop_convert.so.dir/build.make src/modules/CMakeFiles/ns_noop_convert.so.dir/ns_noop_convert.c.i -.PHONY : ns_noop_convert.c.i - -ns_noop_convert.s: ns_noop_convert.c.s -.PHONY : ns_noop_convert.s - -# target to generate assembly for a file -ns_noop_convert.c.s: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/ns_noop_convert.so.dir/build.make src/modules/CMakeFiles/ns_noop_convert.so.dir/ns_noop_convert.c.s -.PHONY : ns_noop_convert.c.s - -os_ignore_db.o: os_ignore_db.c.o -.PHONY : os_ignore_db.o - -# target to build an object file -os_ignore_db.c.o: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/os_ignore_db.so.dir/build.make src/modules/CMakeFiles/os_ignore_db.so.dir/os_ignore_db.c.o -.PHONY : os_ignore_db.c.o - -os_ignore_db.i: os_ignore_db.c.i -.PHONY : os_ignore_db.i - -# target to preprocess a source file -os_ignore_db.c.i: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/os_ignore_db.so.dir/build.make src/modules/CMakeFiles/os_ignore_db.so.dir/os_ignore_db.c.i -.PHONY : os_ignore_db.c.i - -os_ignore_db.s: os_ignore_db.c.s -.PHONY : os_ignore_db.s - -# target to generate assembly for a file -os_ignore_db.c.s: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/os_ignore_db.so.dir/build.make src/modules/CMakeFiles/os_ignore_db.so.dir/os_ignore_db.c.s -.PHONY : os_ignore_db.c.s - -os_info.o: os_info.c.o -.PHONY : os_info.o - -# target to build an object file -os_info.c.o: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/os_info.so.dir/build.make src/modules/CMakeFiles/os_info.so.dir/os_info.c.o -.PHONY : os_info.c.o - -os_info.i: os_info.c.i -.PHONY : os_info.i - -# target to preprocess a source file -os_info.c.i: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/os_info.so.dir/build.make src/modules/CMakeFiles/os_info.so.dir/os_info.c.i -.PHONY : os_info.c.i - -os_info.s: os_info.c.s -.PHONY : os_info.s - -# target to generate assembly for a file -os_info.c.s: - cd /celes/anope && $(MAKE) -f src/modules/CMakeFiles/os_info.so.dir/build.make src/modules/CMakeFiles/os_info.so.dir/os_info.c.s -.PHONY : os_info.c.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... bs_fantasy_unban.so" - @echo "... cs_appendtopic.so" - @echo "... cs_enforce.so" - @echo "... cs_tban.so" - @echo "... edit_cache" - @echo "... hs_request.so" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... ns_maxemail.so" - @echo "... ns_noop_convert.so" - @echo "... os_ignore_db.so" - @echo "... os_info.so" - @echo "... rebuild_cache" - @echo "... bs_fantasy_unban.o" - @echo "... bs_fantasy_unban.i" - @echo "... bs_fantasy_unban.s" - @echo "... cs_appendtopic.o" - @echo "... cs_appendtopic.i" - @echo "... cs_appendtopic.s" - @echo "... cs_enforce.o" - @echo "... cs_enforce.i" - @echo "... cs_enforce.s" - @echo "... cs_tban.o" - @echo "... cs_tban.i" - @echo "... cs_tban.s" - @echo "... hs_request.o" - @echo "... hs_request.i" - @echo "... hs_request.s" - @echo "... ns_maxemail.o" - @echo "... ns_maxemail.i" - @echo "... ns_maxemail.s" - @echo "... ns_noop_convert.o" - @echo "... ns_noop_convert.i" - @echo "... ns_noop_convert.s" - @echo "... os_ignore_db.o" - @echo "... os_ignore_db.i" - @echo "... os_ignore_db.s" - @echo "... os_info.o" - @echo "... os_info.i" - @echo "... os_info.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /celes/anope && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/src/modules/Makefile.sub b/src/modules/Makefile.sub deleted file mode 100644 index 7697249bf..000000000 --- a/src/modules/Makefile.sub +++ /dev/null @@ -1,28 +0,0 @@ -MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'ANOPELIBS=${ANOPELIBS}' \ - 'LDFLAGS=${LDFLAGS}' 'BINDEST=${BINDEST}' 'INSTALL=${INSTALL}' \ - 'INCLUDEDIR=${INCLUDEDIR}' 'RM=${RM}' 'CP=${CP}' \ - 'TOUCH=${TOUCH}' 'SHELL=${SHELL}' 'DATDEST=${DATDEST}' \ - 'RUNGROUP=${RUNGROUP}' 'MODULE_PATH=${MODULE_PATH}' \ - 'PROFILE=${PROFILE}' 'SHARED=${SHARED}' 'MODULEFLAGS=${MODULEFLAGS}' - -OBJECTS= $(SRCS:.c=.o) -SO_FILES=$(OBJECTS:.o=.s) -CDEFS= -rdynamic -Wall - -all: module - -module: $(OBJECTS) so - -distclean: spotless - -.c.o: - $(CC) ${CFLAGS} ${CDEFS} ${MODULEFLAGS} -I../ -I../../${INCLUDEDIR} -c $< - -so: - $(CC) ${SHARED} ../../mod_version.o $(OBJECTS) -o ../$(TARGET).so ${PROFILE} - -clean: - rm -f *.o *.so *.c~ core - -spotless: - rm -f *~ *.o *.so *.c~ core diff --git a/src/modules/configure b/src/modules/configure deleted file mode 100755 index 53a745592..000000000 --- a/src/modules/configure +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/sh - -oldpath=`pwd` - -if [ $1 ]; then - cd $1 -fi - -echo2 () { - $ECHO2 "$*$ECHO2SUF" # these are defined later -} - -ECHO2SUF='' -if [ "`echo -n a ; echo -n b`" = "ab" ] ; then - ECHO2='echo -n' -elif [ "`echo 'a\c' ; echo 'b\c'`" = "ab" ] ; then - ECHO2='echo' ; ECHO2SUF='\c' -elif [ "`printf 'a' 2>&1 ; printf 'b' 2>&1`" = "ab" ] ; then - ECHO2='printf "%s"' -else - # oh well... - ECHO2='echo' -fi -export ECHO2 ECHO2SUF - - -echo2 "SRCS=" > ./Makefile.inc -FIRST=1 -for oldfile in *.c -do - if [ "$FIRST" = 1 ] ; then - echo2 " "$oldfile >> ./Makefile.inc - else - echo "\\" >> ./Makefile.inc - echo2 " " $oldfile >> ./Makefile.inc - fi - FIRST=0 -done -echo "" >> ./Makefile.inc - -echo2 "SUBS=" >> ./Makefile.inc -FIRST=1 -for dir in * -do - if [ -d $dir ] ; then - if [ -f $dir/configure ] ; then - cd $dir - ./configure - cd .. - fi - if [ -f $dir/Makefile ] ; then - if [ "$FIRST" = 1 ] ; then - echo2 " "$dir >> ./Makefile.inc - else - echo "\\" >> ./Makefile.inc - echo2 " " $dir >> ./Makefile.inc - fi - FIRST=0 - fi - fi -done - -cd $oldpath - -exit 0 diff --git a/src/modules/dummy/Makefile b/src/modules/dummy/Makefile deleted file mode 100644 index ec93af36d..000000000 --- a/src/modules/dummy/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -all: DUMMY - -DUMMY: -clean: -distclean: -install: diff --git a/src/modules/makefile.inc.win32 b/src/modules/makefile.inc.win32 deleted file mode 100644 index f6a646329..000000000 --- a/src/modules/makefile.inc.win32 +++ /dev/null @@ -1,2 +0,0 @@ -SRCS=cs_appendtopic.c cs_enforce.c cs_tban.c ns_maxemail.c hs_request.c os_info.c bs_fantasy_unban.c -SUBS=test diff --git a/src/modules/makefile.sub.win32 b/src/modules/makefile.sub.win32 deleted file mode 100644 index 4a811622e..000000000 --- a/src/modules/makefile.sub.win32 +++ /dev/null @@ -1,19 +0,0 @@ -include ../../../Makefile.inc.win32 - -OBJECTS= $(SRCS:.c=.obj) -CFLAGS=/nologo /LD /MD /D MODULE_COMPILE $(CFLAGS) /I"../../../include" /I "../" -LFLAGS=/nologo ../../anope.lib wsock32.lib $(LIBS) $(LFLAGS) $(MYSQL_LIB_PATH) /export:AnopeInit /export:AnopeFini /OUT:$(TARGET) - -all: - $(CC) $(SRCS) $(CFLAGS) ..\..\mod_version.c /link $(LFLAGS) - -distclean: clean spotless - -clean: - -@del *.obj - -spotless: clean - -@del *.dll *.lib *.exp *.manifest - -install: - -@copy *.dll ..\..\..\$(DATDEST)\modules diff --git a/src/modules/makefile.win32 b/src/modules/makefile.win32 deleted file mode 100644 index fffa51d74..000000000 --- a/src/modules/makefile.win32 +++ /dev/null @@ -1,41 +0,0 @@ -include ../../Makefile.inc.win32 -include ./Makefile.inc.win32 - -OBJECTS= $(SRCS:.c=.dll) -CFLAGS=/LD /MD /D MODULE_COMPILE $(CFLAGS) /I"../../include" -LFLAGS=/link ../anope.lib wsock32.lib $(LIBS) $(LFLAGS) $(MYSQL_LIB_PATH) /export:init_module /export:destroy_module - -all: $(OBJECTS) subs - -distclean: clean spotless - -.c.dll: - $(CC) $(CFLAGS) $(IRCTYPE) $< ..\mod_version.c $(LFLAGS) - -subs: - @for %i in ( $(SUBS) ); do \ - @if exist %i; @cd %i && $(MAKE) $(MAKEARGS) && cd .. - -clean: subs-clean - -@del *.obj - -subs-clean: - @for %i in ( $(SUBS) ); do \ - @if exist %i; @cd %i && $(MAKE) $(MAKEARGS) clean && cd .. - -spotless: clean subs-spotless - -@del *.dll *.lib *.exp *.manifest - -subs-spotless: - @for %i in ( $(SUBS) ); do \ - @if exist %i; @cd %i && $(MAKE) $(MAKEARGS) spotless && cd .. - -install: - -@mkdir ..\..\$(DATDEST)\modules - -@mkdir ..\..\$(DATDEST)\modules\runtime - -@copy *.dll ..\..\$(DATDEST)\modules - -subs-install: install - @for %i in ( $(SUBS) ); do \ - @if exist %i; @cd %i && $(MAKE) $(MAKEARGS) install && cd .. - diff --git a/src/protocol/Makefile b/src/protocol/Makefile deleted file mode 100644 index 13f67e9c1..000000000 --- a/src/protocol/Makefile +++ /dev/null @@ -1,377 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.6 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/local/bin/cmake - -# The command to remove a file. -RM = /usr/local/bin/cmake -E remove -f - -# The program to use to edit the cache. -CMAKE_EDIT_COMMAND = /usr/local/bin/ccmake - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /celes/anope - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /celes/anope - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." - cd /celes/anope/src/protocol && /usr/local/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - cd /celes/anope/src/protocol && /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - cd /celes/anope/src/protocol && /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." - cd /celes/anope/src/protocol && /usr/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." - cd /celes/anope/src/protocol && /usr/local/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." - cd /celes/anope/src/protocol && /usr/local/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# The main all target -all: cmake_check_build_system - cd /celes/anope && $(CMAKE_COMMAND) -E cmake_progress_start /celes/anope/CMakeFiles /celes/anope/src/protocol/CMakeFiles/progress.make - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/protocol/all - $(CMAKE_COMMAND) -E cmake_progress_start /celes/anope/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/protocol/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/protocol/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/protocol/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /celes/anope && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -src/protocol/CMakeFiles/bahamut.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/protocol/CMakeFiles/bahamut.so.dir/rule -.PHONY : src/protocol/CMakeFiles/bahamut.so.dir/rule - -# Convenience name for target. -bahamut.so: src/protocol/CMakeFiles/bahamut.so.dir/rule -.PHONY : bahamut.so - -# fast build rule for target. -bahamut.so/fast: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/bahamut.so.dir/build.make src/protocol/CMakeFiles/bahamut.so.dir/build -.PHONY : bahamut.so/fast - -# Convenience name for target. -src/protocol/CMakeFiles/inspircd11.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/protocol/CMakeFiles/inspircd11.so.dir/rule -.PHONY : src/protocol/CMakeFiles/inspircd11.so.dir/rule - -# Convenience name for target. -inspircd11.so: src/protocol/CMakeFiles/inspircd11.so.dir/rule -.PHONY : inspircd11.so - -# fast build rule for target. -inspircd11.so/fast: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/inspircd11.so.dir/build.make src/protocol/CMakeFiles/inspircd11.so.dir/build -.PHONY : inspircd11.so/fast - -# Convenience name for target. -src/protocol/CMakeFiles/inspircd12.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/protocol/CMakeFiles/inspircd12.so.dir/rule -.PHONY : src/protocol/CMakeFiles/inspircd12.so.dir/rule - -# Convenience name for target. -inspircd12.so: src/protocol/CMakeFiles/inspircd12.so.dir/rule -.PHONY : inspircd12.so - -# fast build rule for target. -inspircd12.so/fast: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/inspircd12.so.dir/build.make src/protocol/CMakeFiles/inspircd12.so.dir/build -.PHONY : inspircd12.so/fast - -# Convenience name for target. -src/protocol/CMakeFiles/ratbox.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/protocol/CMakeFiles/ratbox.so.dir/rule -.PHONY : src/protocol/CMakeFiles/ratbox.so.dir/rule - -# Convenience name for target. -ratbox.so: src/protocol/CMakeFiles/ratbox.so.dir/rule -.PHONY : ratbox.so - -# fast build rule for target. -ratbox.so/fast: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/ratbox.so.dir/build.make src/protocol/CMakeFiles/ratbox.so.dir/build -.PHONY : ratbox.so/fast - -# Convenience name for target. -src/protocol/CMakeFiles/unreal32.so.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/protocol/CMakeFiles/unreal32.so.dir/rule -.PHONY : src/protocol/CMakeFiles/unreal32.so.dir/rule - -# Convenience name for target. -unreal32.so: src/protocol/CMakeFiles/unreal32.so.dir/rule -.PHONY : unreal32.so - -# fast build rule for target. -unreal32.so/fast: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/unreal32.so.dir/build.make src/protocol/CMakeFiles/unreal32.so.dir/build -.PHONY : unreal32.so/fast - -bahamut.o: bahamut.c.o -.PHONY : bahamut.o - -# target to build an object file -bahamut.c.o: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/bahamut.so.dir/build.make src/protocol/CMakeFiles/bahamut.so.dir/bahamut.c.o -.PHONY : bahamut.c.o - -bahamut.i: bahamut.c.i -.PHONY : bahamut.i - -# target to preprocess a source file -bahamut.c.i: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/bahamut.so.dir/build.make src/protocol/CMakeFiles/bahamut.so.dir/bahamut.c.i -.PHONY : bahamut.c.i - -bahamut.s: bahamut.c.s -.PHONY : bahamut.s - -# target to generate assembly for a file -bahamut.c.s: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/bahamut.so.dir/build.make src/protocol/CMakeFiles/bahamut.so.dir/bahamut.c.s -.PHONY : bahamut.c.s - -inspircd11.o: inspircd11.c.o -.PHONY : inspircd11.o - -# target to build an object file -inspircd11.c.o: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/inspircd11.so.dir/build.make src/protocol/CMakeFiles/inspircd11.so.dir/inspircd11.c.o -.PHONY : inspircd11.c.o - -inspircd11.i: inspircd11.c.i -.PHONY : inspircd11.i - -# target to preprocess a source file -inspircd11.c.i: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/inspircd11.so.dir/build.make src/protocol/CMakeFiles/inspircd11.so.dir/inspircd11.c.i -.PHONY : inspircd11.c.i - -inspircd11.s: inspircd11.c.s -.PHONY : inspircd11.s - -# target to generate assembly for a file -inspircd11.c.s: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/inspircd11.so.dir/build.make src/protocol/CMakeFiles/inspircd11.so.dir/inspircd11.c.s -.PHONY : inspircd11.c.s - -inspircd12.o: inspircd12.cpp.o -.PHONY : inspircd12.o - -# target to build an object file -inspircd12.cpp.o: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/inspircd12.so.dir/build.make src/protocol/CMakeFiles/inspircd12.so.dir/inspircd12.cpp.o -.PHONY : inspircd12.cpp.o - -inspircd12.i: inspircd12.cpp.i -.PHONY : inspircd12.i - -# target to preprocess a source file -inspircd12.cpp.i: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/inspircd12.so.dir/build.make src/protocol/CMakeFiles/inspircd12.so.dir/inspircd12.cpp.i -.PHONY : inspircd12.cpp.i - -inspircd12.s: inspircd12.cpp.s -.PHONY : inspircd12.s - -# target to generate assembly for a file -inspircd12.cpp.s: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/inspircd12.so.dir/build.make src/protocol/CMakeFiles/inspircd12.so.dir/inspircd12.cpp.s -.PHONY : inspircd12.cpp.s - -ratbox.o: ratbox.c.o -.PHONY : ratbox.o - -# target to build an object file -ratbox.c.o: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/ratbox.so.dir/build.make src/protocol/CMakeFiles/ratbox.so.dir/ratbox.c.o -.PHONY : ratbox.c.o - -ratbox.i: ratbox.c.i -.PHONY : ratbox.i - -# target to preprocess a source file -ratbox.c.i: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/ratbox.so.dir/build.make src/protocol/CMakeFiles/ratbox.so.dir/ratbox.c.i -.PHONY : ratbox.c.i - -ratbox.s: ratbox.c.s -.PHONY : ratbox.s - -# target to generate assembly for a file -ratbox.c.s: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/ratbox.so.dir/build.make src/protocol/CMakeFiles/ratbox.so.dir/ratbox.c.s -.PHONY : ratbox.c.s - -unreal32.o: unreal32.c.o -.PHONY : unreal32.o - -# target to build an object file -unreal32.c.o: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/unreal32.so.dir/build.make src/protocol/CMakeFiles/unreal32.so.dir/unreal32.c.o -.PHONY : unreal32.c.o - -unreal32.i: unreal32.c.i -.PHONY : unreal32.i - -# target to preprocess a source file -unreal32.c.i: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/unreal32.so.dir/build.make src/protocol/CMakeFiles/unreal32.so.dir/unreal32.c.i -.PHONY : unreal32.c.i - -unreal32.s: unreal32.c.s -.PHONY : unreal32.s - -# target to generate assembly for a file -unreal32.c.s: - cd /celes/anope && $(MAKE) -f src/protocol/CMakeFiles/unreal32.so.dir/build.make src/protocol/CMakeFiles/unreal32.so.dir/unreal32.c.s -.PHONY : unreal32.c.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... bahamut.so" - @echo "... edit_cache" - @echo "... inspircd11.so" - @echo "... inspircd12.so" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... ratbox.so" - @echo "... rebuild_cache" - @echo "... unreal32.so" - @echo "... bahamut.o" - @echo "... bahamut.i" - @echo "... bahamut.s" - @echo "... inspircd11.o" - @echo "... inspircd11.i" - @echo "... inspircd11.s" - @echo "... inspircd12.o" - @echo "... inspircd12.i" - @echo "... inspircd12.s" - @echo "... ratbox.o" - @echo "... ratbox.i" - @echo "... ratbox.s" - @echo "... unreal32.o" - @echo "... unreal32.i" - @echo "... unreal32.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /celes/anope && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/src/protocol/Makefile.sub b/src/protocol/Makefile.sub deleted file mode 100644 index 9fd25dc0c..000000000 --- a/src/protocol/Makefile.sub +++ /dev/null @@ -1,32 +0,0 @@ -MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'ANOPELIBS=${ANOPELIBS}' \ - 'LDFLAGS=${LDFLAGS}' 'BINDEST=${BINDEST}' 'INSTALL=${INSTALL}' \ - 'INCLUDEDIR=${INCLUDEDIR}' 'RM=${RM}' 'CP=${CP}' \ - 'TOUCH=${TOUCH}' 'SHELL=${SHELL}' 'DATDEST=${DATDEST}' \ - 'RUNGROUP=${RUNGROUP}' 'MODULE_PATH=${MODULE_PATH}' \ - 'PROFILE=${PROFILE}' 'SHARED=${SHARED}' 'MODULEFLAGS=${MODULEFLAGS}' - -OBJECTS= $(SRCS:.c=.o) -SO_FILES=$(OBJECTS:.o=.s) -CDEFS= -rdynamic -Wall - -all: module - -module: $(OBJECTS) so - -distclean: spotless - -.c.o: - $(CC) ${CFLAGS} ${CDEFS} ${MODULEFLAGS} -I../ -I../../${INCLUDEDIR} -c $< - -.cpp.o: - $(CC) ${CFLAGS} ${CDEFS} ${MODULEFLAGS} -I../ -I../../${INCLUDEDIR} -c $< - -so: - $(CC) ${SHARED} $(OBJECTS) -o ../$(TARGET).so ${PROFILE} - -clean: - rm -f *.o *.so *.c~ core - -spotless: clean - rm -f *~ *.o *.so *.c~ core - diff --git a/src/protocol/Makefile.win32 b/src/protocol/Makefile.win32 deleted file mode 100644 index aec850976..000000000 --- a/src/protocol/Makefile.win32 +++ /dev/null @@ -1,29 +0,0 @@ -include ../../Makefile.inc.win32 - -SRCS=bahamut.c inspircd11.c inspircd12.cpp \ - ratbox.c unreal32.c -OBJECTS=bahamut.dll inspircd11.dll inspircd12.dll ratbox.dll unreal32.dll - -CFLAGS=/LD /MD /D MODULE_COMPILE $(CFLAGS) /I"../../include" -LFLAGS=/link ../anope.lib wsock32.lib $(LIBS) $(LFLAGS) $(MYSQL_LIB_PATH) /export:init_module /export:destroy_module /VERSION:$(VERSION) - -all: $(OBJECTS) - -distclean: clean spotless - -.c.dll: - $(CC) $(CFLAGS) $< ..\mod_version.c $(LFLAGS) - -.cpp.dll: - $(CC) $(CFLAGS) $< ..\mod_version.c $(LFLAGS) - -clean: - -@del *.obj - -spotless: clean - -@del *.dll *.lib *.exp *.manifest - -install: - -@mkdir ..\..\$(DATDEST)\modules - -@mkdir ..\..\$(DATDEST)\modules\runtime - -@copy *.dll ..\..\$(DATDEST)\modules diff --git a/src/protocol/configure b/src/protocol/configure deleted file mode 100755 index 63f522d38..000000000 --- a/src/protocol/configure +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh - -oldpath=`pwd` - -if [ $1 ]; then - cd $1 -fi - -echo2 () { - $ECHO2 "$*$ECHO2SUF" # these are defined later -} - -ECHO2SUF='' -if [ "`echo -n a ; echo -n b`" = "ab" ] ; then - ECHO2='echo -n' -elif [ "`echo 'a\c' ; echo 'b\c'`" = "ab" ] ; then - ECHO2='echo' ; ECHO2SUF='\c' -elif [ "`printf 'a' 2>&1 ; printf 'b' 2>&1`" = "ab" ] ; then - ECHO2='printf "%s"' -else - # oh well... - ECHO2='echo' -fi -export ECHO2 ECHO2SUF - - -echo2 "SRCS=" > ./Makefile.inc -FIRST=1 -for oldfile in `ls -1 *.c *.cpp` -do - if [ "$FIRST" = 1 ] ; then - echo2 " "$oldfile >> ./Makefile.inc - else - echo "\\" >> ./Makefile.inc - echo2 " " $oldfile >> ./Makefile.inc - fi - FIRST=0 -done -echo "" >> ./Makefile.inc - -echo2 "SUBS=" >> ./Makefile.inc -FIRST=1 -for dir in * -do - if [ -d $dir ] ; then - if [ -f $dir/Makefile ] ; then - if [ "$FIRST" = 1 ] ; then - echo2 " "$dir >> ./Makefile.inc - else - echo "\\" >> ./Makefile.inc - echo2 " " $dir >> ./Makefile.inc - fi - FIRST=0 - fi - fi -done - -cd $oldpath - -exit 0 diff --git a/src/protocol/dummy/Makefile b/src/protocol/dummy/Makefile deleted file mode 100644 index ec93af36d..000000000 --- a/src/protocol/dummy/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -all: DUMMY - -DUMMY: -clean: -distclean: -install: diff --git a/src/tools/Makefile b/src/tools/Makefile deleted file mode 100644 index 5d33ff801..000000000 --- a/src/tools/Makefile +++ /dev/null @@ -1,293 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 2.6 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canoncical targets will work. -.SUFFIXES: - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/local/bin/cmake - -# The command to remove a file. -RM = /usr/local/bin/cmake -E remove -f - -# The program to use to edit the cache. -CMAKE_EDIT_COMMAND = /usr/local/bin/ccmake - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /celes/anope - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /celes/anope - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." - cd /celes/anope/src/tools && /usr/local/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - cd /celes/anope/src/tools && /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." - cd /celes/anope/src/tools && /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." - cd /celes/anope/src/tools && /usr/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: install/local -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." - cd /celes/anope/src/tools && /usr/local/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: install/strip -.PHONY : install/strip/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." - cd /celes/anope/src/tools && /usr/local/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# The main all target -all: cmake_check_build_system - cd /celes/anope && $(CMAKE_COMMAND) -E cmake_progress_start /celes/anope/CMakeFiles /celes/anope/src/tools/CMakeFiles/progress.make - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/tools/all - $(CMAKE_COMMAND) -E cmake_progress_start /celes/anope/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/tools/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/tools/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/tools/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /celes/anope && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Convenience name for target. -src/tools/CMakeFiles/anopesmtp.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/tools/CMakeFiles/anopesmtp.dir/rule -.PHONY : src/tools/CMakeFiles/anopesmtp.dir/rule - -# Convenience name for target. -anopesmtp: src/tools/CMakeFiles/anopesmtp.dir/rule -.PHONY : anopesmtp - -# fast build rule for target. -anopesmtp/fast: - cd /celes/anope && $(MAKE) -f src/tools/CMakeFiles/anopesmtp.dir/build.make src/tools/CMakeFiles/anopesmtp.dir/build -.PHONY : anopesmtp/fast - -# Convenience name for target. -src/tools/CMakeFiles/db-convert.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/tools/CMakeFiles/db-convert.dir/rule -.PHONY : src/tools/CMakeFiles/db-convert.dir/rule - -# Convenience name for target. -db-convert: src/tools/CMakeFiles/db-convert.dir/rule -.PHONY : db-convert - -# fast build rule for target. -db-convert/fast: - cd /celes/anope && $(MAKE) -f src/tools/CMakeFiles/db-convert.dir/build.make src/tools/CMakeFiles/db-convert.dir/build -.PHONY : db-convert/fast - -# Convenience name for target. -src/tools/CMakeFiles/db-merger.dir/rule: - cd /celes/anope && $(MAKE) -f CMakeFiles/Makefile2 src/tools/CMakeFiles/db-merger.dir/rule -.PHONY : src/tools/CMakeFiles/db-merger.dir/rule - -# Convenience name for target. -db-merger: src/tools/CMakeFiles/db-merger.dir/rule -.PHONY : db-merger - -# fast build rule for target. -db-merger/fast: - cd /celes/anope && $(MAKE) -f src/tools/CMakeFiles/db-merger.dir/build.make src/tools/CMakeFiles/db-merger.dir/build -.PHONY : db-merger/fast - -anopesmtp.o: anopesmtp.c.o -.PHONY : anopesmtp.o - -# target to build an object file -anopesmtp.c.o: - cd /celes/anope && $(MAKE) -f src/tools/CMakeFiles/anopesmtp.dir/build.make src/tools/CMakeFiles/anopesmtp.dir/anopesmtp.c.o -.PHONY : anopesmtp.c.o - -anopesmtp.i: anopesmtp.c.i -.PHONY : anopesmtp.i - -# target to preprocess a source file -anopesmtp.c.i: - cd /celes/anope && $(MAKE) -f src/tools/CMakeFiles/anopesmtp.dir/build.make src/tools/CMakeFiles/anopesmtp.dir/anopesmtp.c.i -.PHONY : anopesmtp.c.i - -anopesmtp.s: anopesmtp.c.s -.PHONY : anopesmtp.s - -# target to generate assembly for a file -anopesmtp.c.s: - cd /celes/anope && $(MAKE) -f src/tools/CMakeFiles/anopesmtp.dir/build.make src/tools/CMakeFiles/anopesmtp.dir/anopesmtp.c.s -.PHONY : anopesmtp.c.s - -db-convert.o: db-convert.c.o -.PHONY : db-convert.o - -# target to build an object file -db-convert.c.o: - cd /celes/anope && $(MAKE) -f src/tools/CMakeFiles/db-convert.dir/build.make src/tools/CMakeFiles/db-convert.dir/db-convert.c.o -.PHONY : db-convert.c.o - -db-convert.i: db-convert.c.i -.PHONY : db-convert.i - -# target to preprocess a source file -db-convert.c.i: - cd /celes/anope && $(MAKE) -f src/tools/CMakeFiles/db-convert.dir/build.make src/tools/CMakeFiles/db-convert.dir/db-convert.c.i -.PHONY : db-convert.c.i - -db-convert.s: db-convert.c.s -.PHONY : db-convert.s - -# target to generate assembly for a file -db-convert.c.s: - cd /celes/anope && $(MAKE) -f src/tools/CMakeFiles/db-convert.dir/build.make src/tools/CMakeFiles/db-convert.dir/db-convert.c.s -.PHONY : db-convert.c.s - -db-merger.o: db-merger.c.o -.PHONY : db-merger.o - -# target to build an object file -db-merger.c.o: - cd /celes/anope && $(MAKE) -f src/tools/CMakeFiles/db-merger.dir/build.make src/tools/CMakeFiles/db-merger.dir/db-merger.c.o -.PHONY : db-merger.c.o - -db-merger.i: db-merger.c.i -.PHONY : db-merger.i - -# target to preprocess a source file -db-merger.c.i: - cd /celes/anope && $(MAKE) -f src/tools/CMakeFiles/db-merger.dir/build.make src/tools/CMakeFiles/db-merger.dir/db-merger.c.i -.PHONY : db-merger.c.i - -db-merger.s: db-merger.c.s -.PHONY : db-merger.s - -# target to generate assembly for a file -db-merger.c.s: - cd /celes/anope && $(MAKE) -f src/tools/CMakeFiles/db-merger.dir/build.make src/tools/CMakeFiles/db-merger.dir/db-merger.c.s -.PHONY : db-merger.c.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... anopesmtp" - @echo "... db-convert" - @echo "... db-merger" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... anopesmtp.o" - @echo "... anopesmtp.i" - @echo "... anopesmtp.s" - @echo "... db-convert.o" - @echo "... db-convert.i" - @echo "... db-convert.s" - @echo "... db-merger.o" - @echo "... db-merger.i" - @echo "... db-merger.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /celes/anope && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/src/tools/Makefile.win32 b/src/tools/Makefile.win32 deleted file mode 100644 index 49cd6b032..000000000 --- a/src/tools/Makefile.win32 +++ /dev/null @@ -1,29 +0,0 @@ -include ../../Makefile.inc.win32
-
-SRCS=anopesmtp.c db-merger.c db-convert.c
-OBJECTS= $(SRCS:.c=.exe)
-CFLAGS=$(CFLAGS) /I"../../include"
-LFLAGS=/link wsock32.lib $(LIBS) $(LFLAGS)
-
-all: $(OBJECTS)
-
-distclean: clean spotless
-
-.c.exe:
- $(CC) $(CFLAGS) $< $(LFLAGS)
-
-clean:
- -@del *.obj
-
-spotless: clean
- -@del *.exe *.lib *.exp
-
-install: exe_install manifest_install
-
-exe_install: FRC
- -@copy *.exe ..\..\$(DATDEST)\
-
-manifest_install: FRC
- -@copy *.manifest ..\..\$(DATDEST)\
-
-FRC:
diff --git a/src/win32.rc.template b/src/win32.rc.template deleted file mode 100644 index 7f1ee7e32..000000000 --- a/src/win32.rc.template +++ /dev/null @@ -1,90 +0,0 @@ -///Microsoft Developer Studio generated resource script. -// -#include "../include/resource.h" - -#define APSTUDIO_READONLY_SYMBOLS -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 2 resource. -// -#define APSTUDIO_HIDDEN_SYMBOLS -#include "windows.h" -#undef APSTUDIO_HIDDEN_SYMBOLS -#include "../include/resource.h" - -///////////////////////////////////////////////////////////////////////////// -#undef APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -// English (U.S.) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) -#ifdef _WIN32 -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US -#pragma code_page(1252) -#endif //_WIN32 - -#ifndef _MAC - -///////////////////////////////////////////////////////////////////////////// -// -// Version -// - -VER_ANOPE VERSIONINFO - FILEVERSION VERSION_COMMA - PRODUCTVERSION VERSION_COMMA - FILEFLAGSMASK 0x17L10 -#ifdef _DEBUG - FILEFLAGS 0x1L -#else - FILEFLAGS 0x0L -#endif - FILEOS 0x4L - FILETYPE 0x1L - FILESUBTYPE 0x0L -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904b0" - BEGIN - VALUE "CompanyName", "Anope Team" - VALUE "FileDescription", "Anope IRC Services" - VALUE "FileVersion", "VERSION_FULL" - VALUE "InternalName", "Anope" - VALUE "LegalCopyright", "Copyright (C) 2003-2008 Anope Team" - VALUE "OriginalFilename", "anope.exe" - VALUE "ProductName", "Anope" - VALUE "ProductVersion", "VERSION_DOTTED" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1200 - END -END - -#endif // !_MAC - -///////////////////////////////////////////////////////////////////////////// -// -// Icon -// - -// Icon with lowest ID value placed first to ensure application icon -// remains consistent on all systems. -ICON_APP ICON "anope-icon.ico" -#endif // English (U.S.) resources -///////////////////////////////////////////////////////////////////////////// - - - -#ifndef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 3 resource. -// - - -///////////////////////////////////////////////////////////////////////////// -#endif // not APSTUDIO_INVOKED |