This is my first time using autoconf and i am a little confused with the
docs on this option.
The documentation states:
AC_SYS_RESTARTABLE_SYSCALLS
If the system automatically restarts a system call that is interrupted
by a signal, define HAVE_RESTARTABLE_SYSCALLS.
the macro, so you needn't
so i want to do something like this
configure.in:
PROGNAME = "foo"
DIR = "${bindir}/${PROG}"
AC_SUBST(DIR)
myfile.h.in:
#define DIR "@DIR@"
when things resolve out to myfile.h i get
#define CONF_DIR "${exec_prefix}/foo"
this is because $bindir = ${exec_prefix}/bin
i.e. we only get one level of