diff options
author | gregory guy <[email protected]> | 2019-10-17 14:22:44 +0200 |
---|---|---|
committer | gregory guy <[email protected]> | 2019-10-17 14:22:44 +0200 |
commit | 9d191894a587d67cacceb69b868160250820cfa7 (patch) | |
tree | 3111db0ed259e295a586bf845a0a2e2f151eec03 /configure.in.in | |
parent | 8a53bde7e8e5ca828f1908ff4228ee58c34f4177 (diff) | |
download | kkbswitch-9d191894a587d67cacceb69b868160250820cfa7.tar.gz kkbswitch-9d191894a587d67cacceb69b868160250820cfa7.zip |
Drop automake build support.
Add basic cmake build instructions in the INSTALL file.
Deleted empty file: NEWS.
Deleted obsolete file: kkbswitch.spec .
Some cleanup in the README, the "man" page and the "help" page files.
The man page as well as the icons have moved in their own folder.
Signed-off-by: gregory guy <[email protected]>
Diffstat (limited to 'configure.in.in')
-rw-r--r-- | configure.in.in | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/configure.in.in b/configure.in.in deleted file mode 100644 index d2b544b..0000000 --- a/configure.in.in +++ /dev/null @@ -1,27 +0,0 @@ -#MIN_CONFIG(3.0.0) - -AM_INIT_AUTOMAKE(kkbswitch, 1.4.3) -AC_C_BIGENDIAN -AC_CHECK_KDEMAXPATHLEN - -AC_CHECK_HEADERS([X11/extensions/XKBrules.h], [], [], [ - #include <stdio.h> - #include <X11/XKBlib.h>]) - -save_LDFLAGS="$LDFLAGS" -LDFLAGS="$LDFLAGS $all_libraries" -AC_CHECK_LIB(xkbfile, XkbRF_GetNamesProp) -LDFLAGS="$save_LDFLAGS" - -AC_ARG_ENABLE(ru-ua-layout, - [ --enable-ru-ua-layout Install Russian/Ukrainian layout file - (default: don't install)], - enable_ru_ua_layout="$enableval", - enable_ru_ua_layout="no") - -AM_CONDITIONAL(ENABLE_RU_UA_LAYOUT, test "x$enable_ru_ua_layout" = "xyes") - -dnl set prefix according to installed KDE. Strange that KDE build scripts -dnl don't do it by default -AC_PREFIX_DEFAULT(`tde-config --prefix`) - |