--- /usr/origsrc/enlightenment-0.16.999.050/./autogen.sh 1970-01-01 01:00:00.000000000 +0100 +++ ./autogen.sh 2008-08-17 09:42:47.000000000 +0200 @@ -0,0 +1,16 @@ +#!/bin/sh + +rm -rf autom4te.cache +rm -f aclocal.m4 ltmain.sh + +touch README + +echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1 +echo "Running autoheader..." ; autoheader || exit 1 +echo "Running autoconf..." ; autoconf || exit 1 +echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1 +echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1 + +if [ -z "$NOCONFIGURE" ]; then + ./configure "$@" +fi --- /usr/origsrc/enlightenment-0.16.999.050/./configure.in 2008-09-25 04:22:10.000000000 +0200 +++ ./configure.in 2008-12-09 11:48:39.149875100 +0100 @@ -20,7 +20,28 @@ AM_ENABLE_SHARED AM_PROG_LIBTOOL AC_FUNC_ALLOCA -AC_C___ATTRIBUTE__ + +AC_DEFINE_UNQUOTED(SHARED_LIB_SUFFIX, "$shrext_cmds", [Suffix for shared objects]) + +lt_e_lib="" +lt_no_undefined="" +lt_enable_auto_import="" +case "$host_os" in + cygwin) + AM_CONDITIONAL(E_LIB_BUILD, true) + AC_DEFINE(E_LIB_BUILD, 1, [Build Enlightenment library]) + lt_e_lib="\$(top_builddir)/src/bin/e_lib/libenlightenment.la" + lt_no_undefined="-no-undefined" + ;; + *) + AM_CONDITIONAL(E_LIB_BUILD, false) + ;; +esac + + +AC_SUBST(lt_e_lib) +AC_SUBST(lt_no_undefined) +AC_SUBST(lt_enable_auto_import) AC_CHECK_FUNCS(setenv) AC_CHECK_FUNCS(unsetenv) @@ -325,6 +346,8 @@ enlightenment.pc src/Makefile src/bin/Makefile +src/bin/e_lib/Makefile +src/bin/e_bin/Makefile src/modules/Makefile src/modules/ibar/Makefile src/modules/ibar/module.desktop --- /usr/origsrc/enlightenment-0.16.999.050/./po/Makefile.in.in 2008-08-17 14:52:26.000000000 +0200 +++ ./po/Makefile.in.in 2008-12-11 14:59:13.408831100 +0100 @@ -27,7 +27,10 @@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ MKINSTALLDIRS = @MKINSTALLDIRS@ -mkinstalldirs = $(SHELL) $(MKINSTALLDIRS) + +# LiP: Cygwin fix MKINSTALLDIRS = @MKINSTALLDIRS@ +# mkinstalldirs = $(SHELL) $(MKINSTALLDIRS) +mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in @*) echo "$(top_builddir)/mkinstalldirs" ;; *) echo "$(MKINSTALLDIRS)" ;; esac` GMSGFMT = @GMSGFMT@ MSGFMT = @MSGFMT@ --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/e_bin/Makefile.am 1970-01-01 01:00:00.000000000 +0100 +++ ./src/bin/e_bin/Makefile.am 2008-12-08 20:32:50.219875900 +0100 @@ -0,0 +1,73 @@ +MAINTAINERCLEANFILES = Makefile.in + +include $(top_srcdir)/src/bin/Makefile.am.inc + +bin_PROGRAMS = \ +enlightenment \ +enlightenment_remote \ +enlightenment_imc \ +enlightenment_start \ +enlightenment_thumb \ +enlightenment_sys \ +enlightenment_fm \ +enlightenment_init \ +enlightenment_fm_op + +enlightenment_SOURCES = \ +$(top_srcdir)/src/bin/e_main.c \ +$(enlightenment_src) + +enlightenment_LDFLAGS = -export-dynamic @e_libs@ @x_libs@ @dlopen_libs@ @cf_libs@ @VALGRIND_LIBS@ @E_DBUS_LIBS@ @lt_enable_auto_import@ + +enlightenment_remote_SOURCES = \ +$(top_srcdir)/src/bin/e.h \ +$(top_srcdir)/src/bin/e_ipc_codec.c \ +$(top_srcdir)/src/bin/e_remote_main.c + +enlightenment_remote_LDFLAGS = @e_libs@ @lt_enable_auto_import@ + +enlightenment_imc_SOURCES = \ +$(top_srcdir)/src/bin/e.h \ +$(top_srcdir)/src/bin/e_intl_data.c \ +$(top_srcdir)/src/bin/e_config_data.c \ +$(top_srcdir)/src/bin/e_imc_main.c + +enlightenment_imc_LDFLAGS = @e_libs@ @dlopen_libs@ @lt_enable_auto_import@ + +enlightenment_start_SOURCES = \ +$(top_srcdir)/src/bin/e_start_main.c + +enlightenment_start_LDFLAGS = @dlopen_libs@ @lt_enable_auto_import@ + +enlightenment_thumb_SOURCES = \ +$(top_srcdir)/src/bin/e_thumb_main.c \ +$(top_srcdir)/src/bin/e_user.c \ +$(top_srcdir)/src/bin/e_sha1.c + +enlightenment_thumb_LDFLAGS = @e_libs@ @lt_enable_auto_import@ + +enlightenment_fm_SOURCES = \ +$(top_srcdir)/src/bin/e_fm_main.c \ +$(top_srcdir)/src/bin/e_user.c \ +$(top_srcdir)/src/bin/e_sha1.c \ +$(top_srcdir)/src/bin/e_prefix.c + +enlightenment_fm_LDFLAGS = @e_libs@ @dlopen_libs@ @E_DBUS_LIBS@ @E_HAL_LIBS@ @lt_enable_auto_import@ +enlightenment_fm_CFLAGS = $(INCLUDES) @E_HAL_CFLAGS@ + +enlightenment_fm_op_SOURCES = \ +$(top_srcdir)/src/bin/e_fm_op.c + +enlightenment_fm_op_LDFLAGS = @e_libs@ @lt_enable_auto_import@ +enlightenment_fm_op_CFLAGS = $(INCLUDES) + +enlightenment_sys_SOURCES = \ +$(top_srcdir)/src/bin/e_sys_main.c + +enlightenment_sys_LDFLAGS = @e_libs@ @lt_enable_auto_import@ + +enlightenment_init_SOURCES = \ +$(top_srcdir)/src/bin/e_init_main.c \ +$(top_srcdir)/src/bin/e_xinerama.c + +enlightenment_init_LDFLAGS = @e_libs@ @lt_enable_auto_import@ --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/e_fm.c 2008-09-25 03:31:14.000000000 +0200 +++ ./src/bin/e_fm.c 2008-12-03 17:33:10.046750600 +0100 @@ -5,6 +5,11 @@ #include "e_fm_hal.h" #include "e_fm_op.h" +/* LiP: CYGWIN patch */ +#ifndef _POSIX_HOST_NAME_MAX +#define _POSIX_HOST_NAME_MAX 255 +#endif + #define OVERCLIP 128 /* FIXME: this is NOT complete. dnd not complete (started). only list view --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/e_fm_main.c 2008-09-25 03:26:37.000000000 +0200 +++ ./src/bin/e_fm_main.c 2008-12-05 13:28:46.829634200 +0100 @@ -1,6 +1,7 @@ /* * vim:cindent:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ + #ifndef _FILE_OFFSET_BITS #define _FILE_OFFSET_BITS 64 #endif --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/e_imc_main.c 2008-08-17 09:43:24.000000000 +0200 +++ ./src/bin/e_imc_main.c 2008-12-05 13:29:00.658113200 +0100 @@ -1,6 +1,7 @@ /* * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ + #include "e.h" static void _e_help(void); --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/e_init_main.c 2008-09-24 12:33:14.000000000 +0200 +++ ./src/bin/e_init_main.c 2008-12-05 13:29:14.783474800 +0100 @@ -1,6 +1,7 @@ /* * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ + #include "config.h" #include #include --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/e_intl.c 2008-08-17 09:43:24.000000000 +0200 +++ ./src/bin/e_intl.c 2008-12-12 15:17:39.010149900 +0100 @@ -864,6 +864,8 @@ static Evas_List * _e_intl_locale_system_locales_get(void) { +// LiP: #ifndef __CYGWIN__ +#ifndef __CYGWIN__ Evas_List *locales; FILE *output; @@ -878,6 +880,9 @@ pclose(output); } return locales; +#else + return NULL; +#endif } /* --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/e_lib/e_lib.c 1970-01-01 01:00:00.000000000 +0100 +++ ./src/bin/e_lib/e_lib.c 2008-12-09 11:42:55.565153400 +0100 @@ -0,0 +1,7 @@ +/* dummy main wrapper for Cygwin */ +extern int e_lib_main(int argc, char** argv); + +int main(int argc, char** argv) +{ + return e_lib_main(argc, argv); +} --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/e_lib/Makefile.am 1970-01-01 01:00:00.000000000 +0100 +++ ./src/bin/e_lib/Makefile.am 2008-12-09 11:59:45.850175500 +0100 @@ -0,0 +1,62 @@ +MAINTAINERCLEANFILES = Makefile.in + +include $(top_srcdir)/src/bin/Makefile.am.inc + +lib_LTLIBRARIES = libenlightenment.la + +bin_PROGRAMS = \ +enlightenment \ +enlightenment_remote \ +enlightenment_imc \ +enlightenment_start \ +enlightenment_thumb \ +enlightenment_sys \ +enlightenment_fm \ +enlightenment_init \ +enlightenment_fm_op + +libenlightenment_la_SOURCES = $(enlightenment_src) $(top_srcdir)/src/bin/e_main.c +libenlightenment_la_LIBADD = @e_libs@ @x_libs@ @cf_libs@ @VALGRIND_LIBS@ @E_DBUS_LIBS@ @E_HAL_LIBS@ +libenlightenment_la_LDFLAGS = @lt_no_undefined@ @lt_enable_auto_import@ -avoid-version +libenlightenment_la_DEPENDENCIES = $(top_builddir)/config.h + +enlightenment_SOURCES = e_lib.c +enlightenment_DEPENDENCIES = @lt_e_lib@ +enlightenment_LDADD = @lt_e_lib@ +enlightenment_LDFLAGS = @lt_enable_auto_import@ + +enlightenment_remote_SOURCES = $(top_srcdir)/src/bin/e_remote_main.c +enlightenment_remote_DEPENDENCIES = @lt_e_lib@ +enlightenment_remote_LDADD = @lt_e_lib@ +enlightenment_remote_LDFLAGS = @lt_enable_auto_import@ + +enlightenment_imc_SOURCES = $(top_srcdir)/src/bin/e_imc_main.c +enlightenment_imc_DEPENDENCIES = @lt_e_lib@ +enlightenment_imc_LDADD = @lt_e_lib@ +enlightenment_imc_LDFLAGS = @lt_enable_auto_import@ + +enlightenment_start_SOURCES = $(top_srcdir)/src/bin/e_start_main.c +enlightenment_start_LDFLAGS = @dlopen_libs@ @lt_enable_auto_import@ + +enlightenment_thumb_SOURCES = $(top_srcdir)/src/bin/e_thumb_main.c +enlightenment_thumb_DEPENDENCIES = @lt_e_lib@ +enlightenment_thumb_LDADD = @lt_e_lib@ +enlightenment_thumb_LDFLAGS = @lt_enable_auto_import@ + +enlightenment_fm_SOURCES = $(top_srcdir)/src/bin/e_fm_main.c +enlightenment_fm_CFLAGS = $(INCLUDES) @E_HAL_CFLAGS@ +enlightenment_fm_DEPENDENCIES = @lt_e_lib@ +enlightenment_fm_LDADD = @lt_e_lib@ @E_DBUS_LIBS@ @E_HAL_LIBS@ +enlightenment_fm_LDFLAGS = @lt_enable_auto_import@ + +enlightenment_fm_op_SOURCES = $(top_srcdir)/src/bin/e_fm_op.c +enlightenment_fm_op_LDFLAGS = @e_libs@ @lt_enable_auto_import@ +enlightenment_fm_op_CFLAGS = $(INCLUDES) + +enlightenment_sys_SOURCES = $(top_srcdir)/src/bin/e_sys_main.c +enlightenment_sys_LDFLAGS = @e_libs@ @lt_enable_auto_import@ + +enlightenment_init_SOURCES = $(top_srcdir)/src/bin/e_init_main.c +enlightenment_init_DEPENDENCIES = @lt_e_lib@ +enlightenment_init_LDADD = @lt_e_lib@ +enlightenment_init_LDFLAGS = @lt_enable_auto_import@ --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/e_main.c 2008-09-24 12:45:53.000000000 +0200 +++ ./src/bin/e_main.c 2008-12-09 12:06:54.577156900 +0100 @@ -1,8 +1,13 @@ /* * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ + #include "e.h" +#ifdef E_LIB_BUILD // LiP: for linking modules on Cygwin +#define main e_lib_main +#endif + #ifdef HAVE_ECORE_IMF #include #endif --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/e_module.c 2008-08-17 09:43:24.000000000 +0200 +++ ./src/bin/e_module.c 2008-12-04 16:05:30.877674500 +0100 @@ -114,7 +114,7 @@ m = E_OBJECT_ALLOC(E_Module, E_MODULE_TYPE, _e_module_free); if (name[0] != '/') { - snprintf(buf, sizeof(buf), "%s/%s/module.so", name, MODULE_ARCH); + snprintf(buf, sizeof(buf), "%s/%s/module" SHARED_LIB_SUFFIX, name, MODULE_ARCH); modpath = e_path_find(path_modules, buf); } else --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/e_remote_main.c 2008-08-31 03:47:55.000000000 +0200 +++ ./src/bin/e_remote_main.c 2008-12-05 13:29:46.284281200 +0100 @@ -1,6 +1,7 @@ /* * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ + #include "e.h" #ifdef USE_IPC --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/e_start_main.c 2008-08-17 09:43:24.000000000 +0200 +++ ./src/bin/e_start_main.c 2008-12-05 13:30:09.331746200 +0100 @@ -1,3 +1,4 @@ + #include "config.h" #include #include --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/e_sys_main.c 2008-08-17 09:43:24.000000000 +0200 +++ ./src/bin/e_sys_main.c 2008-12-12 23:52:40.785590100 +0100 @@ -1,6 +1,7 @@ /* * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ + #include "config.h" #include @@ -66,7 +67,7 @@ gid = getgid(); egid = getegid(); gn = getgroups(1024, gl); - +#ifndef __CYGWIN__ // LiP: if (setuid(0) != 0) { printf("ERROR: UNABLE TO ASSUME ROOT PRIVILEDGES\n"); @@ -77,7 +78,7 @@ printf("ERROR: UNABLE TO ASSUME ROOT GROUP PRIVILEDGES\n"); exit(7); } - +#endif evas_init(); if (!auth_action_ok(action, uid, gid, gl, gn, egid)) --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/e_thumb_main.c 2008-08-17 09:43:24.000000000 +0200 +++ ./src/bin/e_thumb_main.c 2008-12-05 13:30:48.442122400 +0100 @@ -1,6 +1,7 @@ /* * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ + #include #include #include --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/Makefile.am 2008-09-24 11:44:24.000000000 +0200 +++ ./src/bin/Makefile.am 2008-12-09 11:38:45.279098000 +0100 @@ -1,368 +1,14 @@ MAINTAINERCLEANFILES = Makefile.in -INCLUDES = -I$(top_srcdir) \ - -I$(top_srcdir)/src/bin \ - -I$(top_srcdir)/src/lib \ - @e_cflags@ \ - @x_cflags@ \ - @cf_cflags@ \ - @VALGRIND_CFLAGS@ \ - @EDJE_DEF@ \ - -DPACKAGE_BIN_DIR=\"@PACKAGE_BIN_DIR@\" \ - -DPACKAGE_LIB_DIR=\"@PACKAGE_LIB_DIR@\" \ - -DPACKAGE_DATA_DIR=\"@PACKAGE_DATA_DIR@\" \ - -DLOCALE_DIR=\"@LOCALE_DIR@\" \ - -DPACKAGE_SYSCONF_DIR=\"@PACKAGE_SYSCONF_DIR@\" -bin_PROGRAMS = \ -enlightenment \ -enlightenment_remote \ -enlightenment_imc \ -enlightenment_start \ -enlightenment_thumb \ -enlightenment_sys \ -enlightenment_fm \ -enlightenment_init \ -enlightenment_fm_op +include $(top_srcdir)/src/bin/Makefile.am.inc -ENLIGHTENMENTHEADERS = \ -e.h \ -e_includes.h \ -e_mmx.h \ -e_ipc_handlers.h \ -e_ipc_handlers_list.h \ -e_user.h \ -e_manager.h \ -e_path.h \ -e_init.h \ -e_ipc.h \ -e_msgbus.h \ -e_error.h \ -e_container.h \ -e_zone.h \ -e_desk.h \ -e_border.h \ -e_pointer.h \ -e_config.h \ -e_menu.h \ -e_object.h \ -e_icon.h \ -e_box.h \ -e_flowlayout.h \ -e_int_menus.h \ -e_module.h \ -e_atoms.h \ -e_utils.h \ -e_canvas.h \ -e_focus.h \ -e_place.h \ -e_resist.h \ -e_startup.h \ -e_hints.h \ -e_signals.h \ -e_xinerama.h \ -e_table.h \ -e_layout.h \ -e_test.h \ -e_font.h \ -e_intl.h \ -e_theme.h \ -e_dnd.h \ -e_bindings.h \ -e_moveresize.h \ -e_actions.h \ -e_popup.h \ -e_gadcon_popup.h \ -e_ipc_codec.h \ -e_prefix.h \ -e_datastore.h \ -e_msg.h \ -e_alert.h \ -e_maximize.h \ -e_grabinput.h \ -e_bg.h \ -e_remember.h \ -e_win.h \ -e_pan.h \ -e_dialog.h \ -e_about.h \ -e_theme_about.h \ -e_editable.h \ -e_entry.h \ -e_widget.h \ -e_widget_check.h \ -e_widget_radio.h \ -e_widget_framelist.h \ -e_widget_list.h \ -e_widget_button.h \ -e_widget_label.h \ -e_widget_frametable.h \ -e_widget_table.h \ -e_widget_entry.h \ -e_widget_image.h \ -e_config_dialog.h \ -e_configure.h \ -e_int_border_locks.h \ -e_thumb.h \ -e_int_border_remember.h \ -e_eap_editor.h \ -e_scrollframe.h \ -e_int_border_menu.h \ -e_ilist.h \ -e_tlist.h \ -e_livethumb.h \ -e_widget_ilist.h \ -e_widget_tlist.h \ -e_widget_config_list.h \ -e_slider.h \ -e_widget_slider.h \ -e_desklock.h \ -e_screensaver.h \ -e_dpms.h \ -e_int_config_modules.h \ -e_exehist.h \ -e_color_class.h \ -e_widget_textblock.h \ -e_stolen.h \ -e_gadcon.h \ -e_shelf.h \ -e_widget_preview.h \ -e_int_shelf_config.h \ -e_int_gadcon_config.h \ -e_confirm_dialog.h \ -e_int_border_prop.h \ -e_entry_dialog.h \ -e_fm.h \ -e_fm_op.h \ -e_fm_hal.h \ -e_widget_scrollframe.h \ -e_sha1.h \ -e_widget_fsel.h \ -e_fm_mime.h \ -e_color.h \ -e_spectrum.h \ -e_widget_spectrum.h \ -e_widget_cslider.h \ -e_widget_csel.h \ -e_widget_color_well.h \ -e_color_dialog.h \ -e_sys.h \ -e_obj_dialog.h \ -e_widget_aspect.h \ -e_filereg.h \ -e_widget_desk_preview.h \ -e_fm_prop.h \ -e_mouse.h \ -e_order.h \ -e_exec.h \ -e_widget_font_preview.h \ -e_fm_custom.h \ -e_fm_shared.h \ -e_config_data.h \ -e_intl_data.h \ -e_toolbar.h \ -e_int_toolbar_config.h \ -e_powersave.h \ -e_slidesel.h \ -e_slidecore.h \ -e_widget_flist.h \ -e_scale.h +if E_LIB_BUILD + E_SUBDIR = e_lib +else + E_SUBDIR = e_bin +endif -enlightenment_src = \ -e_user.c \ -e_manager.c \ -e_path.c \ -e_init.c \ -e_ipc.c \ -e_msgbus.c \ -e_error.c \ -e_container.c \ -e_zone.c \ -e_desk.c \ -e_border.c \ -e_pointer.c \ -e_config.c \ -e_config_data.c \ -e_menu.c \ -e_object.c \ -e_icon.c \ -e_box.c \ -e_flowlayout.c \ -e_int_menus.c \ -e_module.c \ -e_atoms.c \ -e_utils.c \ -e_canvas.c \ -e_focus.c \ -e_place.c \ -e_resist.c \ -e_startup.c \ -e_hints.c \ -e_signals.c \ -e_xinerama.c \ -e_table.c \ -e_layout.c \ -e_test.c \ -e_font.c \ -e_intl.c \ -e_intl_data.c \ -e_theme.c \ -e_dnd.c \ -e_bindings.c \ -e_moveresize.c \ -e_actions.c \ -e_popup.c \ -e_gadcon_popup.c \ -e_ipc_codec.c \ -e_prefix.c \ -e_datastore.c \ -e_msg.c \ -e_alert.c \ -e_maximize.c \ -e_grabinput.c \ -e_bg.c \ -e_remember.c \ -e_win.c \ -e_pan.c \ -e_dialog.c \ -e_about.c \ -e_theme_about.c \ -e_editable.c \ -e_entry.c \ -e_widget.c \ -e_widget_check.c \ -e_widget_radio.c \ -e_widget_framelist.c \ -e_widget_list.c \ -e_widget_button.c \ -e_widget_label.c \ -e_widget_frametable.c \ -e_widget_table.c \ -e_widget_entry.c \ -e_widget_image.c \ -e_config_dialog.c \ -e_configure.c \ -e_int_border_locks.c \ -e_thumb.c \ -e_int_border_remember.c \ -e_eap_editor.c \ -e_scrollframe.c \ -e_int_border_menu.c \ -e_ilist.c \ -e_tlist.c \ -e_livethumb.c \ -e_widget_ilist.c \ -e_widget_tlist.c \ -e_widget_config_list.c \ -e_slider.c \ -e_widget_slider.c \ -e_desklock.c \ -e_screensaver.c \ -e_dpms.c \ -e_int_config_modules.c \ -e_exehist.c \ -e_color_class.c \ -e_widget_textblock.c \ -e_stolen.c \ -e_gadcon.c \ -e_shelf.c \ -e_widget_preview.c \ -e_int_shelf_config.c \ -e_int_gadcon_config.c \ -e_confirm_dialog.c \ -e_int_border_prop.c \ -e_entry_dialog.c \ -e_fm.c \ -e_fm_hal.c \ -e_widget_scrollframe.c \ -e_sha1.c \ -e_widget_fsel.c \ -e_fm_mime.c \ -e_color.c \ -e_spectrum.c \ -e_widget_spectrum.c \ -e_widget_cslider.c \ -e_widget_csel.c \ -e_widget_color_well.c \ -e_color_dialog.c \ -e_sys.c \ -e_obj_dialog.c \ -e_widget_aspect.c \ -e_widget_desk_preview.c \ -e_filereg.c \ -e_fm_prop.c \ -e_mouse.c \ -e_order.c \ -e_exec.c \ -e_widget_font_preview.c \ -e_fm_custom.c \ -e_toolbar.c \ -e_int_toolbar_config.c \ -e_powersave.c \ -e_slidesel.c \ -e_slidecore.c \ -e_widget_flist.c \ -e_scale.c \ -$(ENLIGHTENMENTHEADERS) - -enlightenment_SOURCES = \ -e_main.c \ -$(enlightenment_src) - -enlightenment_LDFLAGS = -export-dynamic @e_libs@ @x_libs@ @dlopen_libs@ @cf_libs@ @VALGRIND_LIBS@ @E_DBUS_LIBS@ - -enlightenment_remote_SOURCES = \ -e.h \ -e_ipc_codec.c \ -e_remote_main.c - -enlightenment_remote_LDFLAGS = @e_libs@ - -enlightenment_imc_SOURCES = \ -e.h \ -e_intl_data.c \ -e_config_data.c \ -e_imc_main.c -# $(enlightenment_src) - -enlightenment_imc_LDFLAGS = @e_libs@ @dlopen_libs@ - -enlightenment_start_SOURCES = \ -e_start_main.c - -enlightenment_start_LDFLAGS = @dlopen_libs@ - -enlightenment_thumb_SOURCES = \ -e_thumb_main.c \ -e_user.c \ -e_sha1.c - -enlightenment_thumb_LDFLAGS = @e_libs@ - -enlightenment_fm_SOURCES = \ -e_fm_main.c \ -e_user.c \ -e_sha1.c \ -e_prefix.c - -enlightenment_fm_LDFLAGS = @e_libs@ @dlopen_libs@ @E_DBUS_LIBS@ @E_HAL_LIBS@ -enlightenment_fm_CFLAGS = $(INCLUDES) @E_HAL_CFLAGS@ - -enlightenment_fm_op_SOURCES = \ -e_fm_op.c - -enlightenment_fm_op_LDFLAGS = @e_libs@ -enlightenment_fm_op_CFLAGS = $(INCLUDES) - -enlightenment_sys_SOURCES = \ -e_sys_main.c - -enlightenment_sys_LDFLAGS = @e_libs@ - -enlightenment_init_SOURCES = \ -e_init_main.c \ -e_xinerama.c - -enlightenment_init_LDFLAGS = @e_libs@ +SUBDIRS = $(E_SUBDIR) setuid_root_mode = a=rx,u+xs install-exec-hook: --- /usr/origsrc/enlightenment-0.16.999.050/./src/bin/Makefile.am.inc 1970-01-01 01:00:00.000000000 +0100 +++ ./src/bin/Makefile.am.inc 2008-12-08 19:49:39.654513000 +0100 @@ -0,0 +1,293 @@ +INCLUDES = -I$(top_srcdir) \ + -I$(top_srcdir)/src/bin \ + -I$(top_srcdir)/src/lib \ + @e_cflags@ \ + @x_cflags@ \ + @cf_cflags@ \ + @VALGRIND_CFLAGS@ \ + @EDJE_DEF@ \ + -DPACKAGE_BIN_DIR=\"@PACKAGE_BIN_DIR@\" \ + -DPACKAGE_LIB_DIR=\"@PACKAGE_LIB_DIR@\" \ + -DPACKAGE_DATA_DIR=\"@PACKAGE_DATA_DIR@\" \ + -DLOCALE_DIR=\"@LOCALE_DIR@\" \ + -DPACKAGE_SYSCONF_DIR=\"@PACKAGE_SYSCONF_DIR@\" + +ENLIGHTENMENTHEADERS = \ +$(top_srcdir)/src/bin/e.h \ +$(top_srcdir)/src/bin/e_includes.h \ +$(top_srcdir)/src/bin/e_mmx.h \ +$(top_srcdir)/src/bin/e_ipc_handlers.h \ +$(top_srcdir)/src/bin/e_ipc_handlers_list.h \ +$(top_srcdir)/src/bin/e_user.h \ +$(top_srcdir)/src/bin/e_manager.h \ +$(top_srcdir)/src/bin/e_path.h \ +$(top_srcdir)/src/bin/e_init.h \ +$(top_srcdir)/src/bin/e_ipc.h \ +$(top_srcdir)/src/bin/e_msgbus.h \ +$(top_srcdir)/src/bin/e_error.h \ +$(top_srcdir)/src/bin/e_container.h \ +$(top_srcdir)/src/bin/e_zone.h \ +$(top_srcdir)/src/bin/e_desk.h \ +$(top_srcdir)/src/bin/e_border.h \ +$(top_srcdir)/src/bin/e_pointer.h \ +$(top_srcdir)/src/bin/e_config.h \ +$(top_srcdir)/src/bin/e_menu.h \ +$(top_srcdir)/src/bin/e_object.h \ +$(top_srcdir)/src/bin/e_icon.h \ +$(top_srcdir)/src/bin/e_box.h \ +$(top_srcdir)/src/bin/e_flowlayout.h \ +$(top_srcdir)/src/bin/e_int_menus.h \ +$(top_srcdir)/src/bin/e_module.h \ +$(top_srcdir)/src/bin/e_atoms.h \ +$(top_srcdir)/src/bin/e_utils.h \ +$(top_srcdir)/src/bin/e_canvas.h \ +$(top_srcdir)/src/bin/e_focus.h \ +$(top_srcdir)/src/bin/e_place.h \ +$(top_srcdir)/src/bin/e_resist.h \ +$(top_srcdir)/src/bin/e_startup.h \ +$(top_srcdir)/src/bin/e_hints.h \ +$(top_srcdir)/src/bin/e_signals.h \ +$(top_srcdir)/src/bin/e_xinerama.h \ +$(top_srcdir)/src/bin/e_table.h \ +$(top_srcdir)/src/bin/e_layout.h \ +$(top_srcdir)/src/bin/e_test.h \ +$(top_srcdir)/src/bin/e_font.h \ +$(top_srcdir)/src/bin/e_intl.h \ +$(top_srcdir)/src/bin/e_theme.h \ +$(top_srcdir)/src/bin/e_dnd.h \ +$(top_srcdir)/src/bin/e_bindings.h \ +$(top_srcdir)/src/bin/e_moveresize.h \ +$(top_srcdir)/src/bin/e_actions.h \ +$(top_srcdir)/src/bin/e_popup.h \ +$(top_srcdir)/src/bin/e_gadcon_popup.h \ +$(top_srcdir)/src/bin/e_ipc_codec.h \ +$(top_srcdir)/src/bin/e_prefix.h \ +$(top_srcdir)/src/bin/e_datastore.h \ +$(top_srcdir)/src/bin/e_msg.h \ +$(top_srcdir)/src/bin/e_alert.h \ +$(top_srcdir)/src/bin/e_maximize.h \ +$(top_srcdir)/src/bin/e_grabinput.h \ +$(top_srcdir)/src/bin/e_bg.h \ +$(top_srcdir)/src/bin/e_remember.h \ +$(top_srcdir)/src/bin/e_win.h \ +$(top_srcdir)/src/bin/e_pan.h \ +$(top_srcdir)/src/bin/e_dialog.h \ +$(top_srcdir)/src/bin/e_about.h \ +$(top_srcdir)/src/bin/e_theme_about.h \ +$(top_srcdir)/src/bin/e_editable.h \ +$(top_srcdir)/src/bin/e_entry.h \ +$(top_srcdir)/src/bin/e_widget.h \ +$(top_srcdir)/src/bin/e_widget_check.h \ +$(top_srcdir)/src/bin/e_widget_radio.h \ +$(top_srcdir)/src/bin/e_widget_framelist.h \ +$(top_srcdir)/src/bin/e_widget_list.h \ +$(top_srcdir)/src/bin/e_widget_button.h \ +$(top_srcdir)/src/bin/e_widget_label.h \ +$(top_srcdir)/src/bin/e_widget_frametable.h \ +$(top_srcdir)/src/bin/e_widget_table.h \ +$(top_srcdir)/src/bin/e_widget_entry.h \ +$(top_srcdir)/src/bin/e_widget_image.h \ +$(top_srcdir)/src/bin/e_config_dialog.h \ +$(top_srcdir)/src/bin/e_configure.h \ +$(top_srcdir)/src/bin/e_int_border_locks.h \ +$(top_srcdir)/src/bin/e_thumb.h \ +$(top_srcdir)/src/bin/e_int_border_remember.h \ +$(top_srcdir)/src/bin/e_eap_editor.h \ +$(top_srcdir)/src/bin/e_scrollframe.h \ +$(top_srcdir)/src/bin/e_int_border_menu.h \ +$(top_srcdir)/src/bin/e_ilist.h \ +$(top_srcdir)/src/bin/e_tlist.h \ +$(top_srcdir)/src/bin/e_livethumb.h \ +$(top_srcdir)/src/bin/e_widget_ilist.h \ +$(top_srcdir)/src/bin/e_widget_tlist.h \ +$(top_srcdir)/src/bin/e_widget_config_list.h \ +$(top_srcdir)/src/bin/e_slider.h \ +$(top_srcdir)/src/bin/e_widget_slider.h \ +$(top_srcdir)/src/bin/e_desklock.h \ +$(top_srcdir)/src/bin/e_screensaver.h \ +$(top_srcdir)/src/bin/e_dpms.h \ +$(top_srcdir)/src/bin/e_int_config_modules.h \ +$(top_srcdir)/src/bin/e_exehist.h \ +$(top_srcdir)/src/bin/e_color_class.h \ +$(top_srcdir)/src/bin/e_widget_textblock.h \ +$(top_srcdir)/src/bin/e_stolen.h \ +$(top_srcdir)/src/bin/e_gadcon.h \ +$(top_srcdir)/src/bin/e_shelf.h \ +$(top_srcdir)/src/bin/e_widget_preview.h \ +$(top_srcdir)/src/bin/e_int_shelf_config.h \ +$(top_srcdir)/src/bin/e_int_gadcon_config.h \ +$(top_srcdir)/src/bin/e_confirm_dialog.h \ +$(top_srcdir)/src/bin/e_int_border_prop.h \ +$(top_srcdir)/src/bin/e_entry_dialog.h \ +$(top_srcdir)/src/bin/e_fm.h \ +$(top_srcdir)/src/bin/e_fm_op.h \ +$(top_srcdir)/src/bin/e_fm_hal.h \ +$(top_srcdir)/src/bin/e_widget_scrollframe.h \ +$(top_srcdir)/src/bin/e_sha1.h \ +$(top_srcdir)/src/bin/e_widget_fsel.h \ +$(top_srcdir)/src/bin/e_fm_mime.h \ +$(top_srcdir)/src/bin/e_color.h \ +$(top_srcdir)/src/bin/e_spectrum.h \ +$(top_srcdir)/src/bin/e_widget_spectrum.h \ +$(top_srcdir)/src/bin/e_widget_cslider.h \ +$(top_srcdir)/src/bin/e_widget_csel.h \ +$(top_srcdir)/src/bin/e_widget_color_well.h \ +$(top_srcdir)/src/bin/e_color_dialog.h \ +$(top_srcdir)/src/bin/e_sys.h \ +$(top_srcdir)/src/bin/e_obj_dialog.h \ +$(top_srcdir)/src/bin/e_widget_aspect.h \ +$(top_srcdir)/src/bin/e_filereg.h \ +$(top_srcdir)/src/bin/e_widget_desk_preview.h \ +$(top_srcdir)/src/bin/e_fm_prop.h \ +$(top_srcdir)/src/bin/e_mouse.h \ +$(top_srcdir)/src/bin/e_order.h \ +$(top_srcdir)/src/bin/e_exec.h \ +$(top_srcdir)/src/bin/e_widget_font_preview.h \ +$(top_srcdir)/src/bin/e_fm_custom.h \ +$(top_srcdir)/src/bin/e_fm_shared.h \ +$(top_srcdir)/src/bin/e_config_data.h \ +$(top_srcdir)/src/bin/e_intl_data.h \ +$(top_srcdir)/src/bin/e_toolbar.h \ +$(top_srcdir)/src/bin/e_int_toolbar_config.h \ +$(top_srcdir)/src/bin/e_powersave.h \ +$(top_srcdir)/src/bin/e_slidesel.h \ +$(top_srcdir)/src/bin/e_slidecore.h \ +$(top_srcdir)/src/bin/e_widget_flist.h \ +$(top_srcdir)/src/bin/e_scale.h + +enlightenment_src = \ +$(top_srcdir)/src/bin/e_user.c \ +$(top_srcdir)/src/bin/e_manager.c \ +$(top_srcdir)/src/bin/e_path.c \ +$(top_srcdir)/src/bin/e_init.c \ +$(top_srcdir)/src/bin/e_ipc.c \ +$(top_srcdir)/src/bin/e_msgbus.c \ +$(top_srcdir)/src/bin/e_error.c \ +$(top_srcdir)/src/bin/e_container.c \ +$(top_srcdir)/src/bin/e_zone.c \ +$(top_srcdir)/src/bin/e_desk.c \ +$(top_srcdir)/src/bin/e_border.c \ +$(top_srcdir)/src/bin/e_pointer.c \ +$(top_srcdir)/src/bin/e_config.c \ +$(top_srcdir)/src/bin/e_config_data.c \ +$(top_srcdir)/src/bin/e_menu.c \ +$(top_srcdir)/src/bin/e_object.c \ +$(top_srcdir)/src/bin/e_icon.c \ +$(top_srcdir)/src/bin/e_box.c \ +$(top_srcdir)/src/bin/e_flowlayout.c \ +$(top_srcdir)/src/bin/e_int_menus.c \ +$(top_srcdir)/src/bin/e_module.c \ +$(top_srcdir)/src/bin/e_atoms.c \ +$(top_srcdir)/src/bin/e_utils.c \ +$(top_srcdir)/src/bin/e_canvas.c \ +$(top_srcdir)/src/bin/e_focus.c \ +$(top_srcdir)/src/bin/e_place.c \ +$(top_srcdir)/src/bin/e_resist.c \ +$(top_srcdir)/src/bin/e_startup.c \ +$(top_srcdir)/src/bin/e_hints.c \ +$(top_srcdir)/src/bin/e_signals.c \ +$(top_srcdir)/src/bin/e_xinerama.c \ +$(top_srcdir)/src/bin/e_table.c \ +$(top_srcdir)/src/bin/e_layout.c \ +$(top_srcdir)/src/bin/e_test.c \ +$(top_srcdir)/src/bin/e_font.c \ +$(top_srcdir)/src/bin/e_intl.c \ +$(top_srcdir)/src/bin/e_intl_data.c \ +$(top_srcdir)/src/bin/e_theme.c \ +$(top_srcdir)/src/bin/e_dnd.c \ +$(top_srcdir)/src/bin/e_bindings.c \ +$(top_srcdir)/src/bin/e_moveresize.c \ +$(top_srcdir)/src/bin/e_actions.c \ +$(top_srcdir)/src/bin/e_popup.c \ +$(top_srcdir)/src/bin/e_gadcon_popup.c \ +$(top_srcdir)/src/bin/e_ipc_codec.c \ +$(top_srcdir)/src/bin/e_prefix.c \ +$(top_srcdir)/src/bin/e_datastore.c \ +$(top_srcdir)/src/bin/e_msg.c \ +$(top_srcdir)/src/bin/e_alert.c \ +$(top_srcdir)/src/bin/e_maximize.c \ +$(top_srcdir)/src/bin/e_grabinput.c \ +$(top_srcdir)/src/bin/e_bg.c \ +$(top_srcdir)/src/bin/e_remember.c \ +$(top_srcdir)/src/bin/e_win.c \ +$(top_srcdir)/src/bin/e_pan.c \ +$(top_srcdir)/src/bin/e_dialog.c \ +$(top_srcdir)/src/bin/e_about.c \ +$(top_srcdir)/src/bin/e_theme_about.c \ +$(top_srcdir)/src/bin/e_editable.c \ +$(top_srcdir)/src/bin/e_entry.c \ +$(top_srcdir)/src/bin/e_widget.c \ +$(top_srcdir)/src/bin/e_widget_check.c \ +$(top_srcdir)/src/bin/e_widget_radio.c \ +$(top_srcdir)/src/bin/e_widget_framelist.c \ +$(top_srcdir)/src/bin/e_widget_list.c \ +$(top_srcdir)/src/bin/e_widget_button.c \ +$(top_srcdir)/src/bin/e_widget_label.c \ +$(top_srcdir)/src/bin/e_widget_frametable.c \ +$(top_srcdir)/src/bin/e_widget_table.c \ +$(top_srcdir)/src/bin/e_widget_entry.c \ +$(top_srcdir)/src/bin/e_widget_image.c \ +$(top_srcdir)/src/bin/e_config_dialog.c \ +$(top_srcdir)/src/bin/e_configure.c \ +$(top_srcdir)/src/bin/e_int_border_locks.c \ +$(top_srcdir)/src/bin/e_thumb.c \ +$(top_srcdir)/src/bin/e_int_border_remember.c \ +$(top_srcdir)/src/bin/e_eap_editor.c \ +$(top_srcdir)/src/bin/e_scrollframe.c \ +$(top_srcdir)/src/bin/e_int_border_menu.c \ +$(top_srcdir)/src/bin/e_ilist.c \ +$(top_srcdir)/src/bin/e_tlist.c \ +$(top_srcdir)/src/bin/e_livethumb.c \ +$(top_srcdir)/src/bin/e_widget_ilist.c \ +$(top_srcdir)/src/bin/e_widget_tlist.c \ +$(top_srcdir)/src/bin/e_widget_config_list.c \ +$(top_srcdir)/src/bin/e_slider.c \ +$(top_srcdir)/src/bin/e_widget_slider.c \ +$(top_srcdir)/src/bin/e_desklock.c \ +$(top_srcdir)/src/bin/e_screensaver.c \ +$(top_srcdir)/src/bin/e_dpms.c \ +$(top_srcdir)/src/bin/e_int_config_modules.c \ +$(top_srcdir)/src/bin/e_exehist.c \ +$(top_srcdir)/src/bin/e_color_class.c \ +$(top_srcdir)/src/bin/e_widget_textblock.c \ +$(top_srcdir)/src/bin/e_stolen.c \ +$(top_srcdir)/src/bin/e_gadcon.c \ +$(top_srcdir)/src/bin/e_shelf.c \ +$(top_srcdir)/src/bin/e_widget_preview.c \ +$(top_srcdir)/src/bin/e_int_shelf_config.c \ +$(top_srcdir)/src/bin/e_int_gadcon_config.c \ +$(top_srcdir)/src/bin/e_confirm_dialog.c \ +$(top_srcdir)/src/bin/e_int_border_prop.c \ +$(top_srcdir)/src/bin/e_entry_dialog.c \ +$(top_srcdir)/src/bin/e_fm.c \ +$(top_srcdir)/src/bin/e_fm_hal.c \ +$(top_srcdir)/src/bin/e_widget_scrollframe.c \ +$(top_srcdir)/src/bin/e_sha1.c \ +$(top_srcdir)/src/bin/e_widget_fsel.c \ +$(top_srcdir)/src/bin/e_fm_mime.c \ +$(top_srcdir)/src/bin/e_color.c \ +$(top_srcdir)/src/bin/e_spectrum.c \ +$(top_srcdir)/src/bin/e_widget_spectrum.c \ +$(top_srcdir)/src/bin/e_widget_cslider.c \ +$(top_srcdir)/src/bin/e_widget_csel.c \ +$(top_srcdir)/src/bin/e_widget_color_well.c \ +$(top_srcdir)/src/bin/e_color_dialog.c \ +$(top_srcdir)/src/bin/e_sys.c \ +$(top_srcdir)/src/bin/e_obj_dialog.c \ +$(top_srcdir)/src/bin/e_widget_aspect.c \ +$(top_srcdir)/src/bin/e_widget_desk_preview.c \ +$(top_srcdir)/src/bin/e_filereg.c \ +$(top_srcdir)/src/bin/e_fm_prop.c \ +$(top_srcdir)/src/bin/e_mouse.c \ +$(top_srcdir)/src/bin/e_order.c \ +$(top_srcdir)/src/bin/e_exec.c \ +$(top_srcdir)/src/bin/e_widget_font_preview.c \ +$(top_srcdir)/src/bin/e_fm_custom.c \ +$(top_srcdir)/src/bin/e_toolbar.c \ +$(top_srcdir)/src/bin/e_int_toolbar_config.c \ +$(top_srcdir)/src/bin/e_powersave.c \ +$(top_srcdir)/src/bin/e_slidesel.c \ +$(top_srcdir)/src/bin/e_slidecore.c \ +$(top_srcdir)/src/bin/e_widget_flist.c \ +$(top_srcdir)/src/bin/e_scale.c \ +$(ENLIGHTENMENTHEADERS) --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/battery/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/battery/Makefile.am 2008-12-08 20:33:58.143055000 +0100 @@ -22,15 +22,15 @@ module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ e_mod_config.c -module_la_LIBADD = @e_libs@ @cf_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @cf_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h batgetdir = $(pkgdir) batget_PROGRAMS = batget batget_SOURCES = batget.c -batget_LDFLAGS = @BATTERY_LIBS@ +batget_LDFLAGS = @BATTERY_LIBS@ @lt_enable_auto_import@ uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/clock/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/clock/Makefile.am 2008-12-08 20:34:12.783961100 +0100 @@ -20,8 +20,8 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf/Makefile.am 2008-12-08 20:34:21.471627900 +0100 @@ -23,8 +23,8 @@ e_conf.c \ e_conf.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_applications/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_applications/Makefile.am 2008-12-08 20:34:30.143669400 +0100 @@ -23,8 +23,8 @@ e_int_config_apps.c \ e_int_config_apps.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_borders/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_borders/Makefile.am 2008-12-08 20:34:46.581485000 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_borders.c \ + e_int_config_borders.c \ e_int_config_borders.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_clientlist/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_clientlist/Makefile.am 2008-12-08 20:34:58.503588900 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_clientlist.c \ + e_int_config_clientlist.c \ e_int_config_clientlist.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_colors/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_colors/Makefile.am 2008-12-08 20:35:11.738218000 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_color_classes.c \ - e_int_config_color_classes.h + e_int_config_color_classes.c \ + e_int_config_color_classes.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_desk/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_desk/Makefile.am 2008-12-08 20:35:21.129023300 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_desk.c \ + e_int_config_desk.c \ e_int_config_desk.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_desklock/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_desklock/Makefile.am 2008-12-08 20:35:31.254217700 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_desklock.c \ - e_int_config_desklock.h + e_int_config_desklock.c \ + e_int_config_desklock.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_desks/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_desks/Makefile.am 2008-12-08 20:35:41.098156700 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_desks.c \ + e_int_config_desks.c \ e_int_config_desks.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_dialogs/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_dialogs/Makefile.am 2008-12-08 20:35:51.317102900 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_dialogs.c \ + e_int_config_dialogs.c \ e_int_config_dialogs.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_display/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_display/Makefile.am 2008-12-10 18:02:22.438024100 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_display.c \ + e_int_config_display.c \ e_int_config_display.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_dpms/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_dpms/Makefile.am 2008-12-08 20:36:09.848708700 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_dpms.c \ + e_int_config_dpms.c \ e_int_config_dpms.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_engine/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_engine/Makefile.am 2008-12-10 17:58:39.572943900 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_engine.c \ + e_int_config_engine.c \ e_int_config_engine.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_exebuf/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_exebuf/Makefile.am 2008-12-10 18:10:27.500471900 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_exebuf.c \ + e_int_config_exebuf.c \ e_int_config_exebuf.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_fonts/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_fonts/Makefile.am 2008-12-08 20:36:44.693127700 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_fonts.c \ - e_int_config_fonts.h + e_int_config_fonts.c \ + e_int_config_fonts.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_icon_theme/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_icon_theme/Makefile.am 2008-12-08 20:36:52.615154800 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_icon_themes.c \ + e_int_config_icon_themes.c \ e_int_config_icon_themes.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_imc/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_imc/Makefile.am 2008-12-08 20:37:04.912265900 +0100 @@ -20,13 +20,13 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_imc_import.c \ - e_int_config_imc_import.h \ - e_int_config_imc.c \ - e_int_config_imc.h + e_int_config_imc_import.c \ + e_int_config_imc_import.h \ + e_int_config_imc.c \ + _int_config_imc.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_interaction/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_interaction/Makefile.am 2008-12-10 18:12:11.123551900 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_interaction.c \ + e_int_config_interaction.c \ e_int_config_interaction.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_intl/e_int_config_intl.c 2008-09-22 01:21:56.000000000 +0200 +++ ./src/modules/conf_intl/e_int_config_intl.c 2008-12-12 15:22:53.752582100 +0100 @@ -603,6 +603,8 @@ e_lang_list = e_intl_language_list(); /* Get list of all locales and start making map */ +// LiP: #ifndef __CYGWIN__ +#ifndef __CYGWIN__ output = popen("locale -a", "r"); if ( output ) { @@ -769,7 +771,7 @@ } pclose(output); } - +#endif /* Make sure we know the currently configured locale */ if (e_config->language) cfdata->cur_language = strdup(e_config->language); --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_intl/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_intl/Makefile.am 2008-12-08 20:37:30.006497700 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_intl.c \ - e_int_config_intl.h + e_int_config_intl.c \ + e_int_config_intl.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_keybindings/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_keybindings/Makefile.am 2008-12-08 20:37:39.053546400 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_keybindings.c \ + e_int_config_keybindings.c \ e_int_config_keybindings.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_menus/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_menus/Makefile.am 2008-12-08 20:37:45.913053100 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_menus.c \ + e_int_config_menus.c \ e_int_config_menus.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_mime/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_mime/Makefile.am 2008-12-08 20:37:53.663201900 +0100 @@ -20,13 +20,13 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_mime.c \ + e_int_config_mime.c \ e_int_config_mime.h \ e_int_config_mime_edit.c \ e_int_config_mime_edit.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_mouse/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_mouse/Makefile.am 2008-12-08 20:38:05.069670900 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_mouse.c \ + e_int_config_mouse.c \ e_int_config_mouse.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_mousebindings/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_mousebindings/Makefile.am 2008-12-08 20:38:35.929638400 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_mousebindings.c \ + e_int_config_mousebindings.c \ e_int_config_mousebindings.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_mouse_cursor/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_mouse_cursor/Makefile.am 2008-12-08 20:38:15.194865300 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_cursor.c \ + e_int_config_cursor.c \ e_int_config_cursor.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_paths/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_paths/Makefile.am 2008-12-08 20:38:42.726643900 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_paths.c \ + e_int_config_paths.c \ e_int_config_paths.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_performance/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_performance/Makefile.am 2008-12-08 20:38:50.648671000 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_performance.c \ + e_int_config_performance.c \ e_int_config_performance.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_profiles/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_profiles/Makefile.am 2008-12-08 20:38:59.164459500 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_profiles.c \ + e_int_config_profiles.c \ e_int_config_profiles.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_scale/Makefile.am 2008-09-24 12:56:12.000000000 +0200 +++ ./src/modules/conf_scale/Makefile.am 2008-12-08 20:39:06.430224000 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_scale.c \ + e_int_config_scale.c \ e_int_config_scale.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_screensaver/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_screensaver/Makefile.am 2008-12-08 20:39:12.602217500 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_screensaver.c \ + e_int_config_screensaver.c \ e_int_config_screensaver.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_shelves/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_shelves/Makefile.am 2008-12-08 20:39:19.352347100 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_shelf.c \ + e_int_config_shelf.c \ e_int_config_shelf.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_startup/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_startup/Makefile.am 2008-12-08 20:39:25.368087600 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_startup.c \ + e_int_config_startup.c \ e_int_config_startup.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_theme/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_theme/Makefile.am 2008-12-08 20:39:47.118505200 +0100 @@ -20,15 +20,15 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_theme.c \ - e_int_config_theme.h \ - e_int_config_theme_import.c \ - e_int_config_theme_import.h \ - e_int_config_theme_web.c \ - e_int_config_theme_web.h + e_int_config_theme.c \ + e_int_config_theme.h \ + e_int_config_theme_import.c \ + e_int_config_theme_import.h \ + e_int_config_theme_web.c \ + e_int_config_theme_web.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_transitions/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_transitions/Makefile.am 2008-12-08 20:40:12.040858700 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_transitions.c \ + e_int_config_transitions.c \ e_int_config_transitions.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_wallpaper/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_wallpaper/Makefile.am 2008-12-08 20:40:33.869402800 +0100 @@ -20,17 +20,17 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_wallpaper.c \ - e_int_config_wallpaper_gradient.c \ - e_int_config_wallpaper_gradient.h \ - e_int_config_wallpaper.h \ - e_int_config_wallpaper_import.c \ - e_int_config_wallpaper_import.h \ - e_int_config_wallpaper_web.c \ - e_int_config_wallpaper_web.h + e_int_config_wallpaper.c \ + e_int_config_wallpaper_gradient.c \ + e_int_config_wallpaper_gradient.h \ + e_int_config_wallpaper.h \ + e_int_config_wallpaper_import.c \ + e_int_config_wallpaper_import.h \ + e_int_config_wallpaper_web.c \ + e_int_config_wallpaper_web.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_window_display/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_window_display/Makefile.am 2008-12-08 20:40:46.260265700 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_window_display.c \ + e_int_config_window_display.c \ e_int_config_window_display.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_window_focus/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_window_focus/Makefile.am 2008-12-08 20:40:54.729178300 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_focus.c \ + e_int_config_focus.c \ e_int_config_focus.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_window_manipulation/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_window_manipulation/Makefile.am 2008-12-08 20:41:04.901248600 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_window_manipulation.c \ + e_int_config_window_manipulation.c \ e_int_config_window_manipulation.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_window_remembers/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/conf_window_remembers/Makefile.am 2008-12-08 20:41:12.338891400 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_remembers.c \ + e_int_config_remembers.c \ e_int_config_remembers.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/conf_winlist/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/conf_winlist/Makefile.am 2008-12-08 20:41:19.010894500 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_int_config_winlist.c \ + e_int_config_winlist.c \ e_int_config_winlist.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/connman/Makefile.am 2008-09-06 12:46:58.000000000 +0200 +++ ./src/modules/connman/Makefile.am 2008-12-08 20:41:47.370814000 +0100 @@ -23,12 +23,12 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.h \ - e_mod_main.c \ - e_iface.h \ - e_iface.c + e_mod_main.c \ + e_iface.h \ + e_iface.c -module_la_LIBADD = @e_libs@ @dlopen_libs@ @E_DBUS_LIBS@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @E_DBUS_LIBS@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h endif --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/cpufreq/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/cpufreq/Makefile.am 2008-12-08 20:42:00.261686500 +0100 @@ -20,8 +20,8 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h freqsetdir = $(pkgdir) --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/dropshadow/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/dropshadow/Makefile.am 2008-12-08 20:42:20.340197000 +0100 @@ -20,10 +20,10 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_mod_config.c \ - e_mod_config.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version + e_mod_config.c \ + e_mod_config.h +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/exebuf/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/exebuf/Makefile.am 2008-12-08 20:42:28.434102400 +0100 @@ -20,11 +20,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_exebuf.c \ + e_exebuf.c \ e_exebuf.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/fileman/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/fileman/Makefile.am 2008-12-10 17:00:33.202445100 +0100 @@ -20,13 +20,13 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_mod_config.c \ - e_mod_config.h \ - e_fwin.c \ + e_mod_config.c \ + e_mod_config.h \ + e_fwin.c \ e_fwin.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/gadman/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/gadman/Makefile.am 2008-12-08 20:42:44.137528900 +0100 @@ -23,8 +23,8 @@ e_mod_config.h \ e_mod_gadman.c \ e_mod_gadman.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/ibar/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/ibar/Makefile.am 2008-12-09 09:07:06.385652600 +0100 @@ -19,9 +19,9 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_mod_config.c -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version + e_mod_config.c +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/ibox/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/ibox/Makefile.am 2008-12-08 20:42:59.856580700 +0100 @@ -20,9 +20,9 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_mod_config.c -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version + e_mod_config.c +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/mixer/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/mixer/Makefile.am 2008-12-08 20:43:51.420070700 +0100 @@ -19,11 +19,11 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.h \ - e_mod_main.c \ + e_mod_main.c \ e_mod_system.h \ conf_gadget.c \ conf_module.c \ - app_mixer.c + app_mixer.c if HAVE_ALSA module_la_SOURCES += sys_alsa.c @@ -31,8 +31,8 @@ module_la_SOURCES += sys_dummy.c endif -module_la_LIBADD = @SOUND_LDFLAGS@ @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @SOUND_LDFLAGS@ @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/msgbus_lang/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/msgbus_lang/Makefile.am 2008-12-08 20:44:14.764268900 +0100 @@ -26,8 +26,8 @@ module_la_SOURCES = e_mod_main.c \ e_mod_main.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ @E_DBUS_LIBS@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @E_DBUS_LIBS@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h endif --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/pager/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/pager/Makefile.am 2008-12-08 20:44:31.905223000 +0100 @@ -20,9 +20,9 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_mod_config.c -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version + e_mod_config.c +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/start/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/start/Makefile.am 2008-12-08 20:44:45.233603900 +0100 @@ -20,8 +20,8 @@ pkg_LTLIBRARIES = module.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/temperature/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/modules/temperature/Makefile.am 2008-12-08 20:45:38.922134700 +0100 @@ -21,15 +21,15 @@ module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ e_mod_config.c -module_la_LIBADD = @e_libs@ @dlopen_libs@ @ECORE_TXT_LIBS@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @ECORE_TXT_LIBS@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h tempgetdir = $(pkgdir) tempget_PROGRAMS = tempget tempget_SOURCES = tempget.c -tempget_LDFLAGS = @TEMPERATURE_LIBS@ +tempget_LDFLAGS = @TEMPERATURE_LIBS@ @lt_enable_auto_import@ uninstall: rm -rf $(DESTDIR)$(libdir)/enlightenment/modules/$(MODULE) --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/winlist/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/winlist/Makefile.am 2008-12-08 20:45:46.781660600 +0100 @@ -23,8 +23,8 @@ e_winlist.c \ e_winlist.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/modules/wizard/Makefile.am 2008-08-17 09:43:23.000000000 +0200 +++ ./src/modules/wizard/Makefile.am 2008-12-10 17:35:19.162094300 +0100 @@ -17,33 +17,30 @@ -I$(top_srcdir)/src/modules \ @e_cflags@ pkgdir = $(libdir)/enlightenment/modules/$(MODULE)/$(MODULE_ARCH) -pkg_LTLIBRARIES = module.la \ - page_000.la \ - page_010.la \ - page_020.la +pkg_LTLIBRARIES = module.la page_000.la # page_010.la page_020.la module_la_SOURCES = e_mod_main.c \ e_mod_main.h \ - e_wizard.c \ + e_wizard.c \ e_wizard.h -module_la_LIBADD = @e_libs@ @dlopen_libs@ -module_la_LDFLAGS = -module -avoid-version +module_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +module_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ module_la_DEPENDENCIES = $(top_builddir)/config.h page_000_la_SOURCES = page_000.c -page_000_la_LIBADD = @e_libs@ @dlopen_libs@ -page_000_la_LDFLAGS = -module -avoid-version +page_000_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +page_000_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ page_000_la_DEPENDENCIES = $(top_builddir)/config.h page_010_la_SOURCES = page_010.c -page_010_la_LIBADD = @e_libs@ @dlopen_libs@ -page_010_la_LDFLAGS = -module -avoid-version +page_010_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +page_010_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ page_010_la_DEPENDENCIES = $(top_builddir)/config.h page_020_la_SOURCES = page_020.c -page_020_la_LIBADD = @e_libs@ @dlopen_libs@ -page_020_la_LDFLAGS = -module -avoid-version +page_020_la_LIBADD = @e_libs@ @dlopen_libs@ @lt_e_lib@ +page_020_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ page_020_la_DEPENDENCIES = $(top_builddir)/config.h uninstall: --- /usr/origsrc/enlightenment-0.16.999.050/./src/preload/Makefile.am 2008-08-17 09:43:24.000000000 +0200 +++ ./src/preload/Makefile.am 2008-12-04 13:31:55.572220100 +0100 @@ -15,12 +15,12 @@ #e_hack.c \ #e_hack.h #e_hack_la_LIBADD = @x_libs@ @dlopen_libs@ -#e_hack_la_LDFLAGS = -module -avoid-version +#e_hack_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ #e_hack_la_DEPENDENCIES = $(top_builddir)/config.h e_precache_la_SOURCES = \ e_precache.c \ e_precache.h e_precache_la_LIBADD = @e_libs@ @dlopen_libs@ -e_precache_la_LDFLAGS = -module -avoid-version +e_precache_la_LDFLAGS = -module -avoid-version @lt_no_undefined@ @lt_enable_auto_import@ e_precache_la_DEPENDENCIES = $(top_builddir)/config.h