From 500a0524d94d596b327ed9aaa17fd0a8ce9ebf96 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Wed, 1 Oct 2014 19:52:25 +0100 Subject: Miscellaneous improvements to configure. - Clean up various minor sections of the code. - Remove OpenSSL and GnuTLS detection plumbing. - This will soon be the job of modulemanager. - This did not work in non-interactive mode unlike --enable-extras. - Rework runas user handling. - Add the --gid configure option. - Accept either an id or a name in --gid and --uid. - Rework the question flow in interactive mode. - User is no longer asked detailed questions unless they want them. - Socket engine questions have been removed. - Automatically enable non-interactive mode if STDIN or STDOUT are not a tty. --- make/test/compiler.cpp | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 make/test/compiler.cpp (limited to 'make/test') diff --git a/make/test/compiler.cpp b/make/test/compiler.cpp new file mode 100644 index 000000000..1c3e1d875 --- /dev/null +++ b/make/test/compiler.cpp @@ -0,0 +1,29 @@ +/* + * InspIRCd -- Internet Relay Chat Daemon + * + * + * This file is part of InspIRCd. InspIRCd 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, version 2. + * + * 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, see . + */ + + +#include +#if defined _LIBCPP_VERSION +# include +#else +# include +#endif + +int main() { + std::cout << "Hello, World!" << std::endl; + return 0; +} -- cgit v1.2.3