summaryrefslogtreecommitdiffstats
path: root/configure.in.in
diff options
context:
space:
mode:
authorgregory guy <[email protected]>2019-10-04 11:45:25 +0200
committergregory guy <[email protected]>2019-10-04 11:45:25 +0200
commit9d0564a276704047b945bc292ed372f7fd60074a (patch)
treed37db5dd575a3b7dd716394eecf973c1834ebc73 /configure.in.in
parente820e13dfc0d160b1210c175d11e539c2d1ebfc2 (diff)
downloadkbarcode-9d0564a276704047b945bc292ed372f7fd60074a.tar.gz
kbarcode-9d0564a276704047b945bc292ed372f7fd60074a.zip
Drop automake build support.
Add basic build instructions with cmake. Deleted empty file NEWS. Deleted obsolete kbarcode.spec file.
Diffstat (limited to 'configure.in.in')
-rw-r--r--configure.in.in41
1 files changed, 0 insertions, 41 deletions
diff --git a/configure.in.in b/configure.in.in
deleted file mode 100644
index 70485d4..0000000
--- a/configure.in.in
+++ /dev/null
@@ -1,41 +0,0 @@
-#MIN_CONFIG(3.0.0)
-KDE_ENABLE_HIDDEN_VISIBILITY
-
-AM_INIT_AUTOMAKE(kbarcode, 2.0.7)
-AC_C_BIGENDIAN
-AC_CHECK_KDEMAXPATHLEN
-
-AC_ARG_WITH(native-gnu-barcode,
- AC_HELP_STRING([--without-native-gnu-barcode],[disable build with GNU Barcode [default=auto]]),
- [with_native_gnu_barcode=$withval],
- [with_native_gnu_barcode=auto]
-)
-if test "$with_native_gnu_barcode" != "no"; then
- KDE_CHECK_HEADERS([barcode.h], [have_gnu_barcode="yes"], [have_gnu_barcode=no])
- if test "$have_gnu_barcode" = "yes"; then
- AC_DEFINE(_ENABLE_NATIVE_GNU_BARCODE, 1, [Define to 1 if you have <barcode.h> header file.])
- else
- if test "$with_native_gnu_barcode" = "yes"; then
- echo "Barcode is requested, but GNU Barcode header was not found on your system"
- exit
- fi
- fi
-fi
-
-AC_ARG_WITH(javascript,
- AC_HELP_STRING([--without-javascript],[build KBarcode without javascript interpreter [default=auto]]),
- [with_javascript=$withval],
- [with_javascript=auto]
-)
-if test "$with_javascript" != "no"; then
- KDE_CHECK_HEADERS([kjs/interpreter.h], [have_javascript="yes"], [have_javascript=no])
- if test "$have_javascript" = "yes"; then
- AC_DEFINE(USE_JAVASCRIPT, 1, [Define to 1 if you have <kjs/interpreter.h> header file.])
- AC_DEFINE(NO_KJS_EMBED, 1, [Define to 1 for use tdelibs javascript interpreter])
- else
- if test "$with_javascript" = "yes"; then
- echo "Javascript interpreter is requested, but tdelibs Javascript header (kjs) was not found on your system"
- exit
- fi
- fi
-fi