Bladeren bron

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

tags/v0.99.beta14
Sam Hocevar sam 18 jaren geleden
bovenliggende
commit
1fd3d09e44
1 gewijzigde bestanden met toevoegingen van 7 en 1 verwijderingen
  1. +7
    -1
      test/Makefile.am

+ 7
- 1
test/Makefile.am Bestand weergeven

@@ -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

Laden…
Annuleren
Opslaan