diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-05-05 10:30:24 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-05-05 10:30:24 +0300 |
commit | 05826b51ec41ae091756087bc734931c071e9221 (patch) | |
tree | 0be59e97d7c4ec065f75199736e5e80b832d9b3c /.gitignore | |
parent | 68c1ec34aaf54aa04429c14e45d7664c4de335ee (diff) | |
download | videoteco-fork-05826b51ec41ae091756087bc734931c071e9221.tar.gz |
reconstructed Autotools build system (closes #1)
The resulting config.h.in is similar to the one from the CVS repo.
However, I removed checks that apparently weren't referenced in the code base.
Also, I fixed the terminfo check. Previously, it was actually building against
termcap on my system. Terminfo should always be preferred.
Currently, it does not check against ncurses itself. If it turns out there are
systems with an ncurses pkg-config file, but without tinfo, we might have to check
for ncurses as well.
It adds both -Wall and -Wsign-compare, which turned out to be useful to
debug the DOS version.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,7 +1,7 @@ # Autotools -#/configure +/configure /config.h -#/config.h.in +/config.h.in /config.log /config.status /config @@ -14,8 +14,9 @@ *.lo *.a *.o -makefile -#makefile.in +Makefile +Makefile.in +doc/Doxyfile /teco # OpenWatcom build system |