frontends/qconf/qconf
frontends/qconf/qconf.moc
+libs/images/images.c
+libs/images/images.h
libs/parser/?conf.c
libs/*/.libs
frontends/*/.libs
[need_lxdialog=yes],
[need_lxdialog=no])
+#----------------------------------------
+# Check if the images library should be built
+AS_IF(
+ [test "$enable_gconf" = "yes" -o "$enable_qconf" = "yes"],
+ [need_images=yes],
+ [need_images=no])
+
#----------------------------------------
# Setup automake conditional build
AM_CONDITIONAL(
AM_CONDITIONAL(
[COND_lxdialog],
[test "$need_lxdialog" = "yes"])
+AM_CONDITIONAL(
+ [COND_images],
+ [test "$need_images" = "yes"])
#----------------------------------------
# Get the version to apply to the parser shared library
gconf_CPPFLAGS = $(AM_CPPFLAGS) \
$(GETTEXT) \
-I$(top_srcdir)/libs/parser \
- -I$(top_srcdir)/libs/images \
+ -I$(top_builddir)/libs/images \
-DGUI_PATH='"$(pkgdatadir)/gconf.glade"'
gconf_CFLAGS = $(AM_CFLAGS) \
$(kf_CFLAGS) \
$(gtk_CFLAGS)
gconf_LDADD = $(top_builddir)/libs/parser/libkconfigparser.la \
+ $(top_builddir)/libs/images/libimages.a \
$(gtk_LIBS) $(gconf_EXTRA_LIBS)
gconfdir = $(pkgdatadir)
gconf_DATA = gconf.glade
#endif
#include "lkc.h"
-#define WANTS_xpm_single_view
-#define WANTS_xpm_split_view
-#define WANTS_xpm_tree_view
-#define WANTS_xpm_menu
-#define WANTS_xpm_void
#include "images.h"
#include <glade/glade.h>
diff --git a/frontends/gconf/gconf.c b/frontends/gconf/gconf.c
--- a/frontends/gconf/gconf.c
+++ b/frontends/gconf/gconf.c
-@@ -11,7 +11,12 @@
+@@ -11,7 +11,7 @@
#endif
#include "lkc.h"
-#include "images.c"
-+#define WANTS_xpm_single_view
-+#define WANTS_xpm_split_view
-+#define WANTS_xpm_tree_view
-+#define WANTS_xpm_menu
-+#define WANTS_xpm_void
+#include "images.h"
#include <glade/glade.h>
#include <gtk/gtk.h>
-@@ -1468,8 +1473,10 @@
+@@ -1468,8 +1468,10 @@
int main(int ac, char *av[])
{
const char *name;
bindtextdomain(PACKAGE, LOCALEDIR);
bind_textdomain_codeset(PACKAGE, "UTF-8");
-@@ -1483,6 +1490,7 @@
+@@ -1483,6 +1485,7 @@
//add_pixmap_directory (PACKAGE_DATA_DIR "/" PACKAGE "/pixmaps");
//add_pixmap_directory (PACKAGE_SOURCE_DIR "/pixmaps");
/* Determine GUI path */
env = getenv(SRCTREE);
if (env)
-@@ -1491,6 +1499,7 @@
+@@ -1491,6 +1494,7 @@
glade_file = g_strconcat(av[0], ".glade", NULL);
else
glade_file = g_strconcat(g_get_current_dir(), "/", av[0], ".glade", NULL);
qconf_CPPFLAGS = $(AM_CPPFLAGS) \
$(GETTEXT) \
-I$(top_srcdir)/libs/parser \
- -I$(top_srcdir)/libs/images
+ -I$(top_builddir)/libs/images
qconf_CXXFLAGS = $(AM_CXXFLAGS) \
$(kf_CFLAGS) \
$(qt4_CFLAGS)
qconf_LDADD = $(top_builddir)/libs/parser/libkconfigparser.la \
+ $(top_builddir)/libs/images/libimages.a \
$(qt4_LIBS) $(qconf_EXTRA_LIBS)
.h.moc:
#include "qconf.h"
#include "qconf.moc"
-#define WANTS_xpm_symbol_yes
-#define WANTS_xpm_symbol_mod
-#define WANTS_xpm_symbol_no
-#define WANTS_xpm_choice_yes
-#define WANTS_xpm_choice_no
-#define WANTS_xpm_menu
-#define WANTS_xpm_menu_inv
-#define WANTS_xpm_menuback
-#define WANTS_xpm_void
-#define WANTS_xpm_back
-#define WANTS_xpm_load
-#define WANTS_xpm_save
-#define WANTS_xpm_single_view
-#define WANTS_xpm_split_view
-#define WANTS_xpm_tree_view
#include "images.h"
#ifdef _
diff --git a/frontends/qconf/qconf.cc b/frontends/qconf/qconf.cc
--- a/frontends/qconf/qconf.cc
+++ b/frontends/qconf/qconf.cc
-@@ -46,7 +46,22 @@
+@@ -46,7 +46,7 @@
#include "qconf.h"
#include "qconf.moc"
-#include "images.c"
-+#define WANTS_xpm_symbol_yes
-+#define WANTS_xpm_symbol_mod
-+#define WANTS_xpm_symbol_no
-+#define WANTS_xpm_choice_yes
-+#define WANTS_xpm_choice_no
-+#define WANTS_xpm_menu
-+#define WANTS_xpm_menu_inv
-+#define WANTS_xpm_menuback
-+#define WANTS_xpm_void
-+#define WANTS_xpm_back
-+#define WANTS_xpm_load
-+#define WANTS_xpm_save
-+#define WANTS_xpm_single_view
-+#define WANTS_xpm_split_view
-+#define WANTS_xpm_tree_view
+#include "images.h"
#ifdef _
if COND_lxdialog
MAYBE_lxdialog = lxdialog
endif
-SUBDIRS = parser images $(MAYBE_lxdialog)
+if COND_images
+ MAYBE_images = images
+endif
+SUBDIRS = parser $(MAYBE_images) $(MAYBE_lxdialog)
-EXTRA_DIST = images.h
+noinst_LIBRARIES = libimages.a
+
+libimages_a_SOURCES = images.c_orig
+nodist_libimages_a_SOURCES = images.c
+BUILT_SOURCES = images.c images.h
+CLEANFILES = images.c images.h
+
+images.c: images.c_orig
+ $(SED) -r -e 's/^static //' $< >$@
+
+images.h: images.c_orig
+ $(SED) -r -e '/^static (const char \*xpm_(.+)\[\]) = \{/!d; s//extern \1;/' \
+ $< >$@
--- /dev/null
+/*
+ * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
+ * Released under the terms of the GNU GPL v2.0.
+ */
+
+static const char *xpm_load[] = {
+"22 22 5 1",
+". c None",
+"# c #000000",
+"c c #838100",
+"a c #ffff00",
+"b c #ffffff",
+"......................",
+"......................",
+"......................",
+"............####....#.",
+"...........#....##.##.",
+"..................###.",
+".................####.",
+".####...........#####.",
+"#abab##########.......",
+"#babababababab#.......",
+"#ababababababa#.......",
+"#babababababab#.......",
+"#ababab###############",
+"#babab##cccccccccccc##",
+"#abab##cccccccccccc##.",
+"#bab##cccccccccccc##..",
+"#ab##cccccccccccc##...",
+"#b##cccccccccccc##....",
+"###cccccccccccc##.....",
+"##cccccccccccc##......",
+"###############.......",
+"......................"};
+
+static const char *xpm_save[] = {
+"22 22 5 1",
+". c None",
+"# c #000000",
+"a c #838100",
+"b c #c5c2c5",
+"c c #cdb6d5",
+"......................",
+".####################.",
+".#aa#bbbbbbbbbbbb#bb#.",
+".#aa#bbbbbbbbbbbb#bb#.",
+".#aa#bbbbbbbbbcbb####.",
+".#aa#bbbccbbbbbbb#aa#.",
+".#aa#bbbccbbbbbbb#aa#.",
+".#aa#bbbbbbbbbbbb#aa#.",
+".#aa#bbbbbbbbbbbb#aa#.",
+".#aa#bbbbbbbbbbbb#aa#.",
+".#aa#bbbbbbbbbbbb#aa#.",
+".#aaa############aaa#.",
+".#aaaaaaaaaaaaaaaaaa#.",
+".#aaaaaaaaaaaaaaaaaa#.",
+".#aaa#############aa#.",
+".#aaa#########bbb#aa#.",
+".#aaa#########bbb#aa#.",
+".#aaa#########bbb#aa#.",
+".#aaa#########bbb#aa#.",
+".#aaa#########bbb#aa#.",
+"..##################..",
+"......................"};
+
+static const char *xpm_back[] = {
+"22 22 3 1",
+". c None",
+"# c #000083",
+"a c #838183",
+"......................",
+"......................",
+"......................",
+"......................",
+"......................",
+"...........######a....",
+"..#......##########...",
+"..##...####......##a..",
+"..###.###.........##..",
+"..######..........##..",
+"..#####...........##..",
+"..######..........##..",
+"..#######.........##..",
+"..########.......##a..",
+"...............a###...",
+"...............###....",
+"......................",
+"......................",
+"......................",
+"......................",
+"......................",
+"......................"};
+
+static const char *xpm_tree_view[] = {
+"22 22 2 1",
+". c None",
+"# c #000000",
+"......................",
+"......................",
+"......#...............",
+"......#...............",
+"......#...............",
+"......#...............",
+"......#...............",
+"......########........",
+"......#...............",
+"......#...............",
+"......#...............",
+"......#...............",
+"......#...............",
+"......########........",
+"......#...............",
+"......#...............",
+"......#...............",
+"......#...............",
+"......#...............",
+"......########........",
+"......................",
+"......................"};
+
+static const char *xpm_single_view[] = {
+"22 22 2 1",
+". c None",
+"# c #000000",
+"......................",
+"......................",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"..........#...........",
+"......................",
+"......................"};
+
+static const char *xpm_split_view[] = {
+"22 22 2 1",
+". c None",
+"# c #000000",
+"......................",
+"......................",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......#......#........",
+"......................",
+"......................"};
+
+static const char *xpm_symbol_no[] = {
+"12 12 2 1",
+" c white",
+". c black",
+" ",
+" .......... ",
+" . . ",
+" . . ",
+" . . ",
+" . . ",
+" . . ",
+" . . ",
+" . . ",
+" . . ",
+" .......... ",
+" "};
+
+static const char *xpm_symbol_mod[] = {
+"12 12 2 1",
+" c white",
+". c black",
+" ",
+" .......... ",
+" . . ",
+" . . ",
+" . .. . ",
+" . .... . ",
+" . .... . ",
+" . .. . ",
+" . . ",
+" . . ",
+" .......... ",
+" "};
+
+static const char *xpm_symbol_yes[] = {
+"12 12 2 1",
+" c white",
+". c black",
+" ",
+" .......... ",
+" . . ",
+" . . ",
+" . . . ",
+" . .. . ",
+" . . .. . ",
+" . .... . ",
+" . .. . ",
+" . . ",
+" .......... ",
+" "};
+
+static const char *xpm_choice_no[] = {
+"12 12 2 1",
+" c white",
+". c black",
+" ",
+" .... ",
+" .. .. ",
+" . . ",
+" . . ",
+" . . ",
+" . . ",
+" . . ",
+" . . ",
+" .. .. ",
+" .... ",
+" "};
+
+static const char *xpm_choice_yes[] = {
+"12 12 2 1",
+" c white",
+". c black",
+" ",
+" .... ",
+" .. .. ",
+" . . ",
+" . .. . ",
+" . .... . ",
+" . .... . ",
+" . .. . ",
+" . . ",
+" .. .. ",
+" .... ",
+" "};
+
+static const char *xpm_menu[] = {
+"12 12 2 1",
+" c white",
+". c black",
+" ",
+" .......... ",
+" . . ",
+" . .. . ",
+" . .... . ",
+" . ...... . ",
+" . ...... . ",
+" . .... . ",
+" . .. . ",
+" . . ",
+" .......... ",
+" "};
+
+static const char *xpm_menu_inv[] = {
+"12 12 2 1",
+" c white",
+". c black",
+" ",
+" .......... ",
+" .......... ",
+" .. ...... ",
+" .. .... ",
+" .. .. ",
+" .. .. ",
+" .. .... ",
+" .. ...... ",
+" .......... ",
+" .......... ",
+" "};
+
+static const char *xpm_menuback[] = {
+"12 12 2 1",
+" c white",
+". c black",
+" ",
+" .......... ",
+" . . ",
+" . .. . ",
+" . .... . ",
+" . ...... . ",
+" . ...... . ",
+" . .... . ",
+" . .. . ",
+" . . ",
+" .......... ",
+" "};
+
+static const char *xpm_void[] = {
+"12 12 2 1",
+" c white",
+". c black",
+" ",
+" ",
+" ",
+" ",
+" ",
+" ",
+" ",
+" ",
+" ",
+" ",
+" ",
+" "};
+++ /dev/null
-/*
- * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
- * Released under the terms of the GNU GPL v2.0.
- */
-
-#ifdef WANTS_xpm_load
-static const char *xpm_load[] = {
-"22 22 5 1",
-". c None",
-"# c #000000",
-"c c #838100",
-"a c #ffff00",
-"b c #ffffff",
-"......................",
-"......................",
-"......................",
-"............####....#.",
-"...........#....##.##.",
-"..................###.",
-".................####.",
-".####...........#####.",
-"#abab##########.......",
-"#babababababab#.......",
-"#ababababababa#.......",
-"#babababababab#.......",
-"#ababab###############",
-"#babab##cccccccccccc##",
-"#abab##cccccccccccc##.",
-"#bab##cccccccccccc##..",
-"#ab##cccccccccccc##...",
-"#b##cccccccccccc##....",
-"###cccccccccccc##.....",
-"##cccccccccccc##......",
-"###############.......",
-"......................"};
-#endif
-
-#ifdef WANTS_xpm_save
-static const char *xpm_save[] = {
-"22 22 5 1",
-". c None",
-"# c #000000",
-"a c #838100",
-"b c #c5c2c5",
-"c c #cdb6d5",
-"......................",
-".####################.",
-".#aa#bbbbbbbbbbbb#bb#.",
-".#aa#bbbbbbbbbbbb#bb#.",
-".#aa#bbbbbbbbbcbb####.",
-".#aa#bbbccbbbbbbb#aa#.",
-".#aa#bbbccbbbbbbb#aa#.",
-".#aa#bbbbbbbbbbbb#aa#.",
-".#aa#bbbbbbbbbbbb#aa#.",
-".#aa#bbbbbbbbbbbb#aa#.",
-".#aa#bbbbbbbbbbbb#aa#.",
-".#aaa############aaa#.",
-".#aaaaaaaaaaaaaaaaaa#.",
-".#aaaaaaaaaaaaaaaaaa#.",
-".#aaa#############aa#.",
-".#aaa#########bbb#aa#.",
-".#aaa#########bbb#aa#.",
-".#aaa#########bbb#aa#.",
-".#aaa#########bbb#aa#.",
-".#aaa#########bbb#aa#.",
-"..##################..",
-"......................"};
-#endif
-
-#ifdef WANTS_xpm_back
-static const char *xpm_back[] = {
-"22 22 3 1",
-". c None",
-"# c #000083",
-"a c #838183",
-"......................",
-"......................",
-"......................",
-"......................",
-"......................",
-"...........######a....",
-"..#......##########...",
-"..##...####......##a..",
-"..###.###.........##..",
-"..######..........##..",
-"..#####...........##..",
-"..######..........##..",
-"..#######.........##..",
-"..########.......##a..",
-"...............a###...",
-"...............###....",
-"......................",
-"......................",
-"......................",
-"......................",
-"......................",
-"......................"};
-#endif
-
-#ifdef WANTS_xpm_tree_view
-static const char *xpm_tree_view[] = {
-"22 22 2 1",
-". c None",
-"# c #000000",
-"......................",
-"......................",
-"......#...............",
-"......#...............",
-"......#...............",
-"......#...............",
-"......#...............",
-"......########........",
-"......#...............",
-"......#...............",
-"......#...............",
-"......#...............",
-"......#...............",
-"......########........",
-"......#...............",
-"......#...............",
-"......#...............",
-"......#...............",
-"......#...............",
-"......########........",
-"......................",
-"......................"};
-#endif
-
-#ifdef WANTS_xpm_single_view
-static const char *xpm_single_view[] = {
-"22 22 2 1",
-". c None",
-"# c #000000",
-"......................",
-"......................",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"..........#...........",
-"......................",
-"......................"};
-#endif
-
-#ifdef WANTS_xpm_split_view
-static const char *xpm_split_view[] = {
-"22 22 2 1",
-". c None",
-"# c #000000",
-"......................",
-"......................",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......#......#........",
-"......................",
-"......................"};
-#endif
-
-#ifdef WANTS_xpm_symbol_no
-static const char *xpm_symbol_no[] = {
-"12 12 2 1",
-" c white",
-". c black",
-" ",
-" .......... ",
-" . . ",
-" . . ",
-" . . ",
-" . . ",
-" . . ",
-" . . ",
-" . . ",
-" . . ",
-" .......... ",
-" "};
-#endif
-
-#ifdef WANTS_xpm_symbol_mod
-static const char *xpm_symbol_mod[] = {
-"12 12 2 1",
-" c white",
-". c black",
-" ",
-" .......... ",
-" . . ",
-" . . ",
-" . .. . ",
-" . .... . ",
-" . .... . ",
-" . .. . ",
-" . . ",
-" . . ",
-" .......... ",
-" "};
-#endif
-
-#ifdef WANTS_xpm_symbol_yes
-static const char *xpm_symbol_yes[] = {
-"12 12 2 1",
-" c white",
-". c black",
-" ",
-" .......... ",
-" . . ",
-" . . ",
-" . . . ",
-" . .. . ",
-" . . .. . ",
-" . .... . ",
-" . .. . ",
-" . . ",
-" .......... ",
-" "};
-#endif
-
-#ifdef WANTS_xpm_choice_no
-static const char *xpm_choice_no[] = {
-"12 12 2 1",
-" c white",
-". c black",
-" ",
-" .... ",
-" .. .. ",
-" . . ",
-" . . ",
-" . . ",
-" . . ",
-" . . ",
-" . . ",
-" .. .. ",
-" .... ",
-" "};
-#endif
-
-#ifdef WANTS_xpm_choice_yes
-static const char *xpm_choice_yes[] = {
-"12 12 2 1",
-" c white",
-". c black",
-" ",
-" .... ",
-" .. .. ",
-" . . ",
-" . .. . ",
-" . .... . ",
-" . .... . ",
-" . .. . ",
-" . . ",
-" .. .. ",
-" .... ",
-" "};
-#endif
-
-#ifdef WANTS_xpm_menu
-static const char *xpm_menu[] = {
-"12 12 2 1",
-" c white",
-". c black",
-" ",
-" .......... ",
-" . . ",
-" . .. . ",
-" . .... . ",
-" . ...... . ",
-" . ...... . ",
-" . .... . ",
-" . .. . ",
-" . . ",
-" .......... ",
-" "};
-#endif
-
-#ifdef WANTS_xpm_menu_inv
-static const char *xpm_menu_inv[] = {
-"12 12 2 1",
-" c white",
-". c black",
-" ",
-" .......... ",
-" .......... ",
-" .. ...... ",
-" .. .... ",
-" .. .. ",
-" .. .. ",
-" .. .... ",
-" .. ...... ",
-" .......... ",
-" .......... ",
-" "};
-#endif
-
-#ifdef WANTS_xpm_menuback
-static const char *xpm_menuback[] = {
-"12 12 2 1",
-" c white",
-". c black",
-" ",
-" .......... ",
-" . . ",
-" . .. . ",
-" . .... . ",
-" . ...... . ",
-" . ...... . ",
-" . .... . ",
-" . .. . ",
-" . . ",
-" .......... ",
-" "};
-#endif
-
-#ifdef WANTS_xpm_void
-static const char *xpm_void[] = {
-"12 12 2 1",
-" c white",
-". c black",
-" ",
-" ",
-" ",
-" ",
-" ",
-" ",
-" ",
-" ",
-" ",
-" ",
-" ",
-" "};
-#endif
+++ /dev/null
-diff --git a/libs/images/images.h b/libs/images/images.h
---- a/libs/images/images.h
-+++ b/libs/images/images.h
-@@ -3,6 +3,7 @@
- * Released under the terms of the GNU GPL v2.0.
- */
-
-+#ifdef WANTS_xpm_load
- static const char *xpm_load[] = {
- "22 22 5 1",
- ". c None",
-@@ -32,7 +33,9 @@
- "##cccccccccccc##......",
- "###############.......",
- "......................"};
-+#endif
-
-+#ifdef WANTS_xpm_save
- static const char *xpm_save[] = {
- "22 22 5 1",
- ". c None",
-@@ -62,7 +65,9 @@
- ".#aaa#########bbb#aa#.",
- "..##################..",
- "......................"};
-+#endif
-
-+#ifdef WANTS_xpm_back
- static const char *xpm_back[] = {
- "22 22 3 1",
- ". c None",
-@@ -90,7 +95,9 @@
- "......................",
- "......................",
- "......................"};
-+#endif
-
-+#ifdef WANTS_xpm_tree_view
- static const char *xpm_tree_view[] = {
- "22 22 2 1",
- ". c None",
-@@ -117,7 +124,9 @@
- "......########........",
- "......................",
- "......................"};
-+#endif
-
-+#ifdef WANTS_xpm_single_view
- static const char *xpm_single_view[] = {
- "22 22 2 1",
- ". c None",
-@@ -144,7 +153,9 @@
- "..........#...........",
- "......................",
- "......................"};
-+#endif
-
-+#ifdef WANTS_xpm_split_view
- static const char *xpm_split_view[] = {
- "22 22 2 1",
- ". c None",
-@@ -171,7 +182,9 @@
- "......#......#........",
- "......................",
- "......................"};
-+#endif
-
-+#ifdef WANTS_xpm_symbol_no
- static const char *xpm_symbol_no[] = {
- "12 12 2 1",
- " c white",
-@@ -188,7 +201,9 @@
- " . . ",
- " .......... ",
- " "};
-+#endif
-
-+#ifdef WANTS_xpm_symbol_mod
- static const char *xpm_symbol_mod[] = {
- "12 12 2 1",
- " c white",
-@@ -205,7 +220,9 @@
- " . . ",
- " .......... ",
- " "};
-+#endif
-
-+#ifdef WANTS_xpm_symbol_yes
- static const char *xpm_symbol_yes[] = {
- "12 12 2 1",
- " c white",
-@@ -222,7 +239,9 @@
- " . . ",
- " .......... ",
- " "};
-+#endif
-
-+#ifdef WANTS_xpm_choice_no
- static const char *xpm_choice_no[] = {
- "12 12 2 1",
- " c white",
-@@ -239,7 +258,9 @@
- " .. .. ",
- " .... ",
- " "};
-+#endif
-
-+#ifdef WANTS_xpm_choice_yes
- static const char *xpm_choice_yes[] = {
- "12 12 2 1",
- " c white",
-@@ -256,7 +277,9 @@
- " .. .. ",
- " .... ",
- " "};
-+#endif
-
-+#ifdef WANTS_xpm_menu
- static const char *xpm_menu[] = {
- "12 12 2 1",
- " c white",
-@@ -273,7 +296,9 @@
- " . . ",
- " .......... ",
- " "};
-+#endif
-
-+#ifdef WANTS_xpm_menu_inv
- static const char *xpm_menu_inv[] = {
- "12 12 2 1",
- " c white",
-@@ -290,7 +315,9 @@
- " .......... ",
- " .......... ",
- " "};
-+#endif
-
-+#ifdef WANTS_xpm_menuback
- static const char *xpm_menuback[] = {
- "12 12 2 1",
- " c white",
-@@ -307,7 +334,9 @@
- " . . ",
- " .......... ",
- " "};
-+#endif
-
-+#ifdef WANTS_xpm_void
- static const char *xpm_void[] = {
- "12 12 2 1",
- " c white",
-@@ -324,3 +353,4 @@
- " ",
- " ",
- " "};
-+#endif
scripts/kconfig/nconf.h --> frontends/nconf/nconf.h
scripts/kconfig/qconf.cc --> frontends/qconf/qconf.cc
scripts/kconfig/qconf.h --> frontends/qconf/qconf.h
-scripts/kconfig/images.c --> libs/images/images.h
+scripts/kconfig/images.c --> libs/images/images.c_orig
scripts/kconfig/lxdialog/BIG.FAT.WARNING --> libs/lxdialog/BIG.FAT.WARNING
scripts/kconfig/lxdialog/checklist.c --> libs/lxdialog/checklist.c
scripts/kconfig/lxdialog/dialog.h --> libs/lxdialog/dialog.h