diff options
author | Sung-Jin Park <sj76.park@samsung.com> | 2017-10-20 16:41:44 +0900 |
---|---|---|
committer | Jihoon Kim <jihoon48.kim@samsung.com> | 2023-12-22 08:42:49 +0900 |
commit | 6174ee981c22ca26467778f16bd2db2e9e330b7e (patch) | |
tree | 5271dd6a47bfc2f9067ea636bdea26637a5e667b | |
parent | b0cc398406d4161c38f27f00f87ca24f369da3a8 (diff) | |
download | libxkbcommon-6174ee981c22ca26467778f16bd2db2e9e330b7e.tar.gz libxkbcommon-6174ee981c22ca26467778f16bd2db2e9e330b7e.tar.bz2 libxkbcommon-6174ee981c22ca26467778f16bd2db2e9e330b7e.zip |
Remove unnecessary options
Change-Id: I605e843c10f982d20c64d8d6a1049b2c86526143
-rw-r--r-- | meson.build | 6 | ||||
-rw-r--r-- | meson_options.txt | 6 | ||||
-rw-r--r-- | packaging/libxkbcommon.spec | 2 | ||||
-rw-r--r-- | xkbcommon-uninstalled.pc.in | 2 | ||||
-rw-r--r-- | xkbcommon-x11-uninstalled.pc.in | 2 | ||||
-rw-r--r-- | xkbcommon-x11.pc.in | 2 | ||||
-rw-r--r-- | xkbcommon.pc.in | 2 |
7 files changed, 5 insertions, 17 deletions
diff --git a/meson.build b/meson.build index 7317317..2acd5fb 100644 --- a/meson.build +++ b/meson.build @@ -246,12 +246,6 @@ elif cc.get_argument_syntax() == 'msvc' libxkbcommon_link_args += '/DEF:' + libxkbcommon_def.full_path() endif -## For tizen profile ## -tizen_profile = get_option('tizen-profile') -if tizen_profile == 'common' - libxkbcommon_link_args += '-D_F_TIZEN_COMMON_PROFILE_' -endif - libxkbcommon = library( 'xkbcommon', 'include/xkbcommon/xkbcommon.h', diff --git a/meson_options.txt b/meson_options.txt index eb1314b..3186ada 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -90,10 +90,4 @@ option( value: true, description: 'Enable installing bash completion scripts', ) -option( - 'tizen-profile', - type: 'string', - value: 'common', - description: 'Enable support for Wayland utility programs', -) diff --git a/packaging/libxkbcommon.spec b/packaging/libxkbcommon.spec index 24edb6f..bfd781f 100644 --- a/packaging/libxkbcommon.spec +++ b/packaging/libxkbcommon.spec @@ -46,7 +46,7 @@ chmod a+x ./gen_tables.sh ./gen_tables.sh %build -%autogen --disable-static --disable-x11" +%autogen --disable-static --disable-x11 %__make %{?_smp_mflags} V=1; %install diff --git a/xkbcommon-uninstalled.pc.in b/xkbcommon-uninstalled.pc.in index 789c2fe..d4d6a2b 100644 --- a/xkbcommon-uninstalled.pc.in +++ b/xkbcommon-uninstalled.pc.in @@ -4,5 +4,5 @@ includedir=@abs_top_srcdir@ Name: xkbcommon Description: XKB API common to servers and clients (uninstalled) Version: @PACKAGE_VERSION@ -Cflags: -I${includedir} @TIZEN_COMMON_CFLAGS@ +Cflags: -I${includedir} Libs: -L${libdir} -lxkbcommon diff --git a/xkbcommon-x11-uninstalled.pc.in b/xkbcommon-x11-uninstalled.pc.in index 0c64dfe..d99ca49 100644 --- a/xkbcommon-x11-uninstalled.pc.in +++ b/xkbcommon-x11-uninstalled.pc.in @@ -6,5 +6,5 @@ Description: XKB API common to servers and clients - X11 support (uninstalled) Version: @PACKAGE_VERSION@ Requires: xkbcommon Requires.private: xcb xcb-xkb -Cflags: -I${includedir} @TIZEN_COMMON_CFLAGS@ +Cflags: -I${includedir} Libs: -L${libdir} -lxkbcommon-x11 diff --git a/xkbcommon-x11.pc.in b/xkbcommon-x11.pc.in index 922f35a..c4efc43 100644 --- a/xkbcommon-x11.pc.in +++ b/xkbcommon-x11.pc.in @@ -8,5 +8,5 @@ Description: XKB API common to servers and clients - X11 support Version: @PACKAGE_VERSION@ Requires: xkbcommon Requires.private: xcb xcb-xkb -Cflags: -I${includedir} @TIZEN_COMMON_CFLAGS@ +Cflags: -I${includedir} Libs: -L${libdir} -lxkbcommon-x11 diff --git a/xkbcommon.pc.in b/xkbcommon.pc.in index 2e9a8bd..17e1172 100644 --- a/xkbcommon.pc.in +++ b/xkbcommon.pc.in @@ -6,5 +6,5 @@ includedir=@includedir@ Name: xkbcommon Description: XKB API common to servers and clients Version: @PACKAGE_VERSION@ -Cflags: -I${includedir} @TIZEN_COMMON_CFLAGS@ +Cflags: -I${includedir} Libs: -L${libdir} -lxkbcommon |