From: Ran Benita Date: Sun, 22 Jul 2012 21:41:27 +0000 (+0300) Subject: build: drop the include/ directory X-Git-Tag: xkbcommon-0.2.0~401 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e164ff1f9b3539ddf1d3adea8225c1549d343db;p=platform%2Fupstream%2Flibxkbcommon.git build: drop the include/ directory The include/ dir is somewhat redundant and makes it just a bit harder to handle the -I directives from out side of automake; without it the default $(top_buildir) just works. Here's also some further justifications I found: http://smcv.pseudorandom.co.uk/2008/09/pc-uninstalled/ Signed-off-by: Ran Benita --- diff --git a/Makefile.am b/Makefile.am index d5ead73..ca715fe 100644 --- a/Makefile.am +++ b/Makefile.am @@ -19,7 +19,6 @@ dist-hook: ChangeLog INSTALL AM_CPPFLAGS = \ -DDFLT_XKB_CONFIG_ROOT='"$(XKBCONFIGROOT)"' \ - -I$(top_srcdir)/include \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/xkbcomp \ -I$(top_builddir)/src/xkbcomp \ @@ -33,9 +32,9 @@ AM_YFLAGS = -d xkbcommonincludedir = $(includedir)/xkbcommon xkbcommoninclude_HEADERS = \ - include/xkbcommon/xkbcommon.h \ - include/xkbcommon/xkbcommon-names.h \ - include/xkbcommon/xkbcommon-keysyms.h + xkbcommon/xkbcommon.h \ + xkbcommon/xkbcommon-names.h \ + xkbcommon/xkbcommon-keysyms.h lib_LTLIBRARIES = libxkbcommon.la libxkbcommon_la_LDFLAGS = -no-undefined @@ -92,7 +91,7 @@ src/xkbcomp/parser.h: $(top_builddir)/src/$(am__dirstamp) $(top_builddir)/src/xk src/xkbcomp/scanner.c: $(top_builddir)/src/$(am__dirstamp) $(top_builddir)/src/xkbcomp/$(am__dirstamp) src/ks_tables.h: $(top_builddir)/makekeys/makekeys$(EXEEXT) - $(AM_V_GEN)$(top_builddir)/makekeys/makekeys $(top_srcdir)/include/xkbcommon/xkbcommon-keysyms.h > $@ + $(AM_V_GEN)$(top_builddir)/makekeys/makekeys $(top_srcdir)/xkbcommon/xkbcommon-keysyms.h > $@ $(top_builddir)/makekeys/makekeys$(EXEEXT): $(top_srcdir)/makekeys/makekeys.c $(MAKE) -C makekeys @@ -153,4 +152,4 @@ KEYSYMDEFS = \ $(X11_INCLUDEDIR)/DECkeysym.h \ $(X11_INCLUDEDIR)/HPkeysym.h update-keysyms: - sed -e '/XK_Ydiaeresis\s*0x100000ee/d; /#define _/d; s/#define\s*\(\w*\)XK_/#define XKB_KEY_\1/; /\(#ifdef\|#ifndef\|#endif\)/d' $(KEYSYMDEFS) > include/xkbcommon/xkbcommon-keysyms.h + sed -e '/XK_Ydiaeresis\s*0x100000ee/d; /#define _/d; s/#define\s*\(\w*\)XK_/#define XKB_KEY_\1/; /\(#ifdef\|#ifndef\|#endif\)/d' $(KEYSYMDEFS) > xkbcommon/xkbcommon-keysyms.h diff --git a/makekeys/Makefile.am b/makekeys/Makefile.am index bb93777..3c0aadb 100644 --- a/makekeys/Makefile.am +++ b/makekeys/Makefile.am @@ -1,5 +1,4 @@ -AM_CPPFLAGS = -I$(top_srcdir)/include -AM_CFLAGS = $(X11_CFLAGS) $(CWARNFLAGS) +AM_CFLAGS = $(BASE_CFLAGS) # need to use build-native compiler diff --git a/xkbcommon-uninstalled.pc.in b/xkbcommon-uninstalled.pc.in index ca116d2..d4d6a2b 100644 --- a/xkbcommon-uninstalled.pc.in +++ b/xkbcommon-uninstalled.pc.in @@ -1,5 +1,5 @@ libdir=@abs_top_builddir@/.libs -includedir=@abs_top_srcdir@/include +includedir=@abs_top_srcdir@ Name: xkbcommon Description: XKB API common to servers and clients (uninstalled) diff --git a/include/xkbcommon/xkbcommon-keysyms.h b/xkbcommon/xkbcommon-keysyms.h similarity index 100% rename from include/xkbcommon/xkbcommon-keysyms.h rename to xkbcommon/xkbcommon-keysyms.h diff --git a/include/xkbcommon/xkbcommon-names.h b/xkbcommon/xkbcommon-names.h similarity index 100% rename from include/xkbcommon/xkbcommon-names.h rename to xkbcommon/xkbcommon-names.h diff --git a/include/xkbcommon/xkbcommon.h b/xkbcommon/xkbcommon.h similarity index 100% rename from include/xkbcommon/xkbcommon.h rename to xkbcommon/xkbcommon.h