summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2021-09-01 16:10:10 +0200
committergregory guy <gregory-tde@laposte.net>2021-09-01 16:10:10 +0200
commitbd26f6f0c967b28041687287962540dfe53035d7 (patch)
treeec0ba313e10808a14f73e5feaab8bf2340704938 /configure.in
parent00c3b9471fd3feee21547125e7327defe15f33c2 (diff)
downloadkaffeine-mozilla-bd26f6f0c967b28041687287962540dfe53035d7.tar.gz
kaffeine-mozilla-bd26f6f0c967b28041687287962540dfe53035d7.zip
Drop automake build support.
Add basic cmake build instructions. Rework of the README file. Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in28
1 files changed, 0 insertions, 28 deletions
diff --git a/configure.in b/configure.in
deleted file mode 100644
index 5f9591e..0000000
--- a/configure.in
+++ /dev/null
@@ -1,28 +0,0 @@
-AC_INIT(configure.in)
-
-AC_CONFIG_HEADER(config.h)
-AM_INIT_AUTOMAKE(kaffeine_mozilla, 0.2)
-
-AC_LANG_C
-AC_PROG_CC
-AM_PROG_LIBTOOL
-
-dnl ---------------------------------------------
-dnl Checks for X11
-dnl ---------------------------------------------
-AC_PATH_XTRA
-
-dnl ---------------------------------------------
-dnl Check for Xaw headers
-dnl ---------------------------------------------
-AC_CHECK_HEADER(X11/Xaw/Form.h,,
- [AC_MSG_ERROR([you need to install libxaw header files (-dev package)])])
-
-dnl ---------------------------------------------
-dnl Check for NSPR include directory
-dnl ---------------------------------------------
-AC_CHECK_PROG(PKGCONFIGFOUND, pkg-config,[yes])
-PKG_CHECK_MODULES(NSPR, nspr, have_nspr=yes,
- [ AC_MSG_ERROR([nspr library not found on your system]) ])
-
-AC_OUTPUT(Makefile src/Makefile)