Parcourir la source

* Do not build test/term if fcntl() is not available. Yes, could be improved.

tags/v0.99.beta14
Sam Hocevar sam il y a 18 ans
Parent
révision
1fd3d09e44
1 fichiers modifiés avec 7 ajouts et 1 suppressions
  1. +7
    -1
      test/Makefile.am

+ 7
- 1
test/Makefile.am Voir le fichier

@@ -2,7 +2,7 @@

AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul -I$(top_srcdir)/caca -DDATADIR=\"$(pkgdatadir)\"

noinst_PROGRAMS = blit colors cucul demo demo0 dithering event export font font2tga frames fullwidth gamma hsv input spritedit swallow term text transform truecolor unicode import
noinst_PROGRAMS = blit colors cucul demo demo0 dithering event export font font2tga frames fullwidth gamma hsv input spritedit swallow text transform truecolor unicode import $(fcntl_programs)

blit_SOURCES = blit.c
blit_LDADD = ../caca/libcaca.la ../cucul/libcucul.la
@@ -76,3 +76,9 @@ unicode_LDADD = ../caca/libcaca.la ../cucul/libcucul.la

import_SOURCES = import.c
import_LDADD = ../caca/libcaca.la ../cucul/libcucul.la

if USE_NETWORK
fcntl_programs = term
else
fcntl_programs =
endif

Chargement…
Annuler
Enregistrer