/* scconfig - mawk lib detection Copyright (C) 2009 Tibor Palinkas This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Project page: http://repo.hu/projects/scconfig Contact via email: scconfig [at] igor2.repo.hu */ #include "scripts.h" #include int find_script_mawk(const char *name, int logdepth, int fatal) { char *test_c = NL "#include " NL "#include " NL "#include " NL "int main() {" NL " int argc = 1;" NL " char *argv[] = {" NL " \"mawk\"," NL " NULL" NL " };" NL " libmawk_initialize(argc, argv);" NL " puts(\"OK\");" NL " return 0;" NL "}" NL; require("cc/cc", logdepth, fatal); report("Checking for mawk... "); logprintf(logdepth, "find_mawk: trying to find mawk...\n"); logdepth++; /* Look at the standard place */ if (try_icl(logdepth, "libs/script/mawk", test_c, NULL, NULL, "-lmawk")) return 0; return try_fail(logdepth, "libs/script/mawk"); }