X-Git-Url: https://git.jankratochvil.net/?p=mdsms.git;a=blobdiff_plain;f=configure.in;h=8eb7cebf2c505fe0111d2c1b0b235238d1395ac4;hp=fc3b1033597d157a66949b2e5de79de738808b4c;hb=3b014e78c3dff6daa5ba9b60fb34aa8d3f1e3e01;hpb=43619e95ac609e47a3c7823524c347062a90e22a diff --git a/configure.in b/configure.in index fc3b103..8eb7ceb 100644 --- a/configure.in +++ b/configure.in @@ -103,8 +103,10 @@ if test "$enable_debug" = yes;then AC_MSG_CHECKING(whether to use included getopt) if test "$with_getopt" = yes -o "$ac_cv_func_getopt_long" != yes ;then - LIBOBJS="$LIBOBJS getopt1.o getopt.o" - AC_MSG_RESULT(yes) + AC_LIBOBJ(getopt) + AC_LIBOBJ(getopt1) + AC_LIBSOURCE(getopt.h) + AC_MSG_RESULT(yes) else AC_MSG_RESULT(no) fi @@ -151,6 +153,18 @@ AC_TRY_COMPILE([ fi ]) +AC_MSG_CHECKING([for _POSIX_VDISABLE]) +AC_TRY_COMPILE([ +#ifdef HAVE_UNISTD_H +#include +#endif +#ifdef HAVE_TERMIOS_H +#include +#endif], [_POSIX_VDISABLE;], + AC_DEFINE(HAVE__POSIX_VDISABLE) AC_MSG_RESULT(yes),[ + AC_DEFINE(_POSIX_VDISABLE, ['\0']) AC_MSG_RESULT(no) + ]) + AC_MSG_CHECKING([for FD_SETSIZE]) AC_TRY_COMPILE([ #ifdef HAVE_SYS_TIME_H @@ -271,9 +285,14 @@ if test "$ACLOCAL" = "aclocal";then ACLOCAL="$ACLOCAL -I ." fi -AC_SUBST(LIBOBJS) - AC_OUTPUT([Makefile mdsms.spec +macros/Makefile po/Makefile.in -intl/Makefile],[sed -e "/POTFILES =/r po/POTFILES" -e "s/ ChangeLog / /" po/Makefile.in > po/Makefile]) +intl/Makefile]) + +dnl FIXME: Why is "po/POTFILES" being substituted? +echo mdsms.c >po/POTFILES.in +make -C po Makefile + +echo done.