Skip to content

Commit 20560cf

Browse files
committed
build: remove unused C/C++ stuff
1 parent 123db9c commit 20560cf

File tree

8 files changed

+4
-706
lines changed

8 files changed

+4
-706
lines changed

.gitignore

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,14 @@
11
aclocal.m4
22
autom4te.cache/
3-
config.guess
4-
config.log
5-
config.sub
6-
config.status
3+
config.*
74
configure
8-
depcomp
9-
enigma2-plugins-config.h
10-
enigma2-plugins-config.h.in
11-
enigma2-plugins-config.h.in~
125
index-enigma2-plugins.xml
136
install-sh
14-
libtool
15-
ltmain.sh
167
Makefile
178
Makefile.in
18-
m4/libtool.m4
19-
m4/lt~obsolete.m4
20-
m4/ltoptions.m4
21-
m4/ltsugar.m4
22-
m4/ltversion.m4
23-
mipsel-oe-linux-libtool
249
missing
2510
py-compile
26-
stamp-h1
27-
.deps/
28-
.libs/
2911
.settings/
30-
*.la
31-
*.lo
32-
*.mo
33-
*.o
3412
*.bak
3513
*.*~
3614
.kdev4/

Makefile.am

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
ACLOCAL_AMFLAGS = -I m4
2-
31
SUBDIRS = \
42
3dsettings \
53
aihdcontroler \

Rules-cpp.mak

Lines changed: 0 additions & 20 deletions
This file was deleted.

Rules-po.mak

Lines changed: 0 additions & 25 deletions
This file was deleted.

configure.ac

Lines changed: 2 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,9 @@
1-
AC_INIT([enigma2-plugins],[4.2.0],[[email protected]])
2-
AM_INIT_AUTOMAKE([dist-bzip2 foreign no-define tar-pax])
3-
AC_CONFIG_HEADERS([enigma2-plugins-config.h])
4-
5-
# Silent rules are available since 1.11, but older versions
6-
# are still in use. So don't use them unconditionally.
7-
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
8-
9-
AC_USE_SYSTEM_EXTENSIONS
10-
AC_SYS_LARGEFILE
11-
12-
AC_PROG_CC
13-
AC_PROG_CXX
14-
m4_ifdef([LT_INIT], [LT_INIT], [AC_PROG_LIBTOOL])
15-
AC_CONFIG_MACRO_DIR([m4])
1+
AC_INIT([enigma2-plugins],[4.3.0],[https://github.com/opendreambox/enigma2-plugins/issues])
2+
AM_INIT_AUTOMAKE([foreign])
163

174
AC_PATH_PROG(MSGFMT, msgfmt, AC_MSG_ERROR(Could not find msgfmt))
185

196
AM_PATH_PYTHON
20-
AX_PYTHON_DEVEL
21-
AX_PTHREAD
22-
23-
PKG_CHECK_MODULES(ENIGMA2, enigma2)
24-
25-
AC_ARG_WITH(debug,
26-
AS_HELP_STRING([--without-debug],[disable debugging code]),
27-
[with_debug="$withval"],[with_debug="yes"])
28-
if test "$with_debug" = "yes"; then
29-
DEBUG_CFLAGS="-ggdb3"
30-
AC_DEFINE([DEBUG],[1],[Define to 1 to enable debugging code])
31-
fi
32-
AC_SUBST(DEBUG_CFLAGS)
337

348
AC_CONFIG_FILES([
359
Makefile

0 commit comments

Comments
 (0)