Changeset 977


Ignore:
Timestamp:
05/25/06 21:55:11 (7 years ago)
Author:
sam
Message:
  • Added -I${top_srcdir} to the compilation flags to fix builds configured from an alternate directory (they failed to find common.h).
Location:
libcaca/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • libcaca/trunk/caca/Makefile.am

    r830 r977  
    2727        driver_x11.c \ 
    2828        $(NULL) 
    29 AM_CPPFLAGS = -I$(top_srcdir)/cucul 
     29AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul 
    3030libcaca_la_LDFLAGS = -no-undefined -version-info @LT_VERSION@ 
    3131libcaca_la_LIBADD = ../cucul/libcucul.la @CACA_LIBS@ 
  • libcaca/trunk/cucul/Makefile.am

    r869 r977  
    3232        export.c \ 
    3333        $(NULL) 
     34AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul 
    3435libcucul_la_LDFLAGS = -no-undefined -version-info @LT_VERSION@ 
    3536libcucul_la_LIBADD =  
  • libcaca/trunk/cxx/Makefile.am

    r899 r977  
    11# $Id: Makefile.am 552 2006-04-13 16:10:16Z jylam $ 
    22 
    3 AM_CPPFLAGS = -I$(top_srcdir)/cucul -I$(top_srcdir)/caca 
     3AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul -I$(top_srcdir)/caca 
    44 
    55if USE_CXX 
  • libcaca/trunk/kernel/Makefile.am

    r570 r977  
    1414        $(NULL) 
    1515libkernel_la_LDFLAGS = -no-undefined 
     16AM_CPPFLAGS = -I$(top_srcdir) 
    1617 
  • libcaca/trunk/test/Makefile.am

    r967 r977  
    11# $Id$ 
    22 
    3 AM_CPPFLAGS = -I$(top_srcdir)/cucul -I$(top_srcdir)/caca -DDATADIR=\"$(pkgdatadir)\" 
     3AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul -I$(top_srcdir)/caca -DDATADIR=\"$(pkgdatadir)\" 
    44 
    55noinst_PROGRAMS = colors demo dithering event export font frames gamma hsv input spritedit font2tga text transform truecolor unicode import 
  • libcaca/trunk/tools/Makefile.am

    r929 r977  
    11# $Id$ 
    22 
    3 AM_CPPFLAGS = -I$(top_srcdir)/cucul -I$(top_srcdir)/caca -DDATADIR=\"$(pkgdatadir)\" 
     3AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul -I$(top_srcdir)/caca -DDATADIR=\"$(pkgdatadir)\" 
    44 
    55noinst_PROGRAMS = optipal $(pango_programs) 
Note: See TracChangeset for help on using the changeset viewer.