1Description: 2A dummy replacement for libtextstyle. 3 4Files: 5lib/textstyle.in.h 6 7Depends-on: 8stdbool 9unistd 10fsync 11 12configure.ac: 13AC_REQUIRE([AC_C_INLINE]) 14AC_CHECK_FUNCS_ONCE([tcdrain]) 15 16Makefile.am: 17BUILT_SOURCES += textstyle.h 18 19# We need the following in order to create a dummy placeholder for 20# <textstyle.h>. 21textstyle.h: textstyle.in.h $(top_builddir)/config.status 22 $(AM_V_GEN)rm -f $@-t $@ && \ 23 { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ 24 cat $(srcdir)/textstyle.in.h; \ 25 } > $@-t && \ 26 mv $@-t $@ 27MOSTLYCLEANFILES += textstyle.h textstyle.h-t 28 29Include: 30#include <textstyle.h> 31 32License: 33GPL 34