From: Sebastian Dröge Date: Tue, 18 Dec 2007 15:29:07 +0000 (+0000) Subject: glib-gen.mak: Also use #include "header" instead of #include
for the headers... X-Git-Tag: RELEASE-0_10_0_3~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=970759077c95ee4e85650db023ac6f974e2aa5e1;p=platform%2Fupstream%2Fgst-common.git glib-gen.mak: Also use #include "header" instead of #include
for the headers that were used to generate the ... Original commit message from CVS: * glib-gen.mak: Also use #include "header" instead of #include
for the headers that were used to generate the source files for the same reason as below. Remove whitespace before #include. --- diff --git a/ChangeLog b/ChangeLog index 7271b00..fd603e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,15 @@ 2007-12-18 Sebastian Dröge * glib-gen.mak: + Also use #include "header" instead of #include
for the + headers that were used to generate the source files for the same + reason as below. + + Remove whitespace before #include. + +2007-12-18 Sebastian Dröge + + * glib-gen.mak: Use #include "header" instead of #include
for the generated enum C files as the file will always be in the same directory and some compilers seem to be a bit strict about that unless . is added diff --git a/glib-gen.mak b/glib-gen.mak index dcb08b4..f9027da 100644 --- a/glib-gen.mak +++ b/glib-gen.mak @@ -5,7 +5,7 @@ #glib_enum_define=GST_COLOR_BALANCE #glib_enum_prefix=gst_color_balance -enum_headers=$(foreach h,$(glib_enum_headers),\#include <$(h)>\n) +enum_headers=$(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") # these are all the rules generating the relevant files %-marshal.h: %-marshal.list