Summary: | SDL template (Appwizard) doesn't work properly, I have PATCH | ||
---|---|---|---|
Product: | [Applications] kdevelop | Reporter: | Konrad Materka <materka> |
Component: | general | Assignee: | KDevelop Developers <kdevelop-devel> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 3.0.3 | ||
Target Milestone: | --- | ||
Platform: | Debian testing | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Konrad Materka
2004-05-22 22:30:34 UTC
CVS commit by mattr: Switch INCLUDES to AM_CPPFLAGS since INCLUDES is deprecated and has apparently been so since at least automake 1.7.8 (according the manual) Also, move $(LIBSDL_CFLAGS) to AM_CPPFLAGS. Should fix bug 82028 BUG: 82028 M +1 -2 src-Makefile.am 1.3 --- kdevelop/languages/cpp/app_templates/cppsdlhello/src-Makefile.am #1.2:1.3 @@ -3,8 +3,7 @@ # set the include path found by configure -INCLUDES= $(all_includes) +AM_CPPFLAGS = $(all_includes) $(LIBSDL_CFLAGS) # the library search path. %{APPNAMELC}_LDFLAGS = $(all_libraries) $(LIBSDL_RPATH) -%{APPNAMELC}_CXXFLAGS = $(LIBSDL_CFLAGS) %{APPNAMELC}_LDADD = $(LIBSDL_LIBS) |