You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
389 B
15 lines
389 B
echo "Creating $LOCATION_ROOT/configure.in.in...";
|
|
cat << EOF > $LOCATION_ROOT/configure.in.in
|
|
#MIN_CONFIG
|
|
|
|
AM_INIT_AUTOMAKE(${APP_NAME_LC}, ${APP_VERSION})
|
|
|
|
dnl These are common macros that you might or might not want to use
|
|
|
|
dnl Checks for header files.
|
|
AC_HEADER_DIRENT
|
|
AC_HEADER_STDC
|
|
AC_HEADER_TIME
|
|
AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h stdlib.h paths.h)
|
|
AC_CHECK_FUNCS(usleep)
|