1AC_PREREQ(2.61) 2AC_INIT([open_posix_testsuite], [LTP_VERSION], [[email protected]]) 3AC_CONFIG_FILES([ \ 4 include/mk/config.mk \ 5]) 6 7AC_PROG_CC 8 9AC_PREFIX_DEFAULT(/opt/openposix_testsuite) 10 11AC_ARG_WITH([open-posix-testdir], 12 [AS_HELP_STRING([--with-open-posix-testdir=DIR], [Relative path from $prefix to testdir])], 13 [testdir=$withval], 14 [testdir=] 15) 16AC_SUBST([testdir], [$testdir]) 17 18AC_OUTPUT 19