forked from mia/Aegisub
s/AM_CPPFLAGS/AM_CXXFLAGS/, CXXFLAGS are sent to every file including libraries.
(This was a typo on my part that I didn't notice until now.) Originally committed to SVN as r1887.
This commit is contained in:
parent
3ec3b42c3d
commit
8798ebd38f
1 changed files with 3 additions and 2 deletions
|
@ -4,13 +4,14 @@ noinst_LIBRARIES=
|
||||||
|
|
||||||
SUBDIRS = bitmaps posix
|
SUBDIRS = bitmaps posix
|
||||||
|
|
||||||
AM_CPPFLAGS = -DAEGISUB -Iposix -include posix/defines.h @WX_CPPFLAGS@
|
AM_CXXFLAGS = -DAEGISUB -Iposix -include posix/defines.h @WX_CPPFLAGS@
|
||||||
|
|
||||||
bin_PROGRAMS = aegisub
|
bin_PROGRAMS = aegisub
|
||||||
aegisub_LDADD = posix/libposix.a
|
aegisub_LDADD = posix/libposix.a
|
||||||
aegisub_CPPFLAGS = @FREETYPE_CFLAGS@ -DAEGISUB -Iposix -include posix/defines.h @WX_CPPFLAGS@
|
aegisub_CPPFLAGS = @FREETYPE_CFLAGS@
|
||||||
aegisub_LDFLAGS = @GL_LIBS@ @FREETYPE_LIBS@ @PTHREAD_LIBS@ @WX_LIBS@
|
aegisub_LDFLAGS = @GL_LIBS@ @FREETYPE_LIBS@ @PTHREAD_LIBS@ @WX_LIBS@
|
||||||
|
|
||||||
|
|
||||||
#XXX: fix this so it's generated by configure and put into acconf.h
|
#XXX: fix this so it's generated by configure and put into acconf.h
|
||||||
#BUILDINFO := -DBUILD_CREDIT=verm -DBUILD_SVN_REVISION=0
|
#BUILDINFO := -DBUILD_CREDIT=verm -DBUILD_SVN_REVISION=0
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue