From 6f47897faae500d84d7669b274a99e87b55efb8a Mon Sep 17 00:00:00 2001 From: jeh Date: Sun, 11 Feb 2001 17:25:56 +0000 Subject: The current version of the port does not enable plugins, even though they are compiled. This stems from a problem in the configure script that forces the enable_plugins value to always be false, whether or not --enable-plugins is specified. PR: 24973 Submitted by: Alex Varju MAINTAINER --- palm/jpilot/files/patch-configure.in | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) (limited to 'palm/jpilot/files') diff --git a/palm/jpilot/files/patch-configure.in b/palm/jpilot/files/patch-configure.in index 1606665c0a2b..d13b1b3d6def 100644 --- a/palm/jpilot/files/patch-configure.in +++ b/palm/jpilot/files/patch-configure.in @@ -1,9 +1,28 @@ ---- configure.in.orig Fri Feb 9 23:52:19 2001 -+++ configure.in Fri Feb 9 23:53:32 2001 -@@ -233,4 +233,6 @@ +--- configure.in.orig Tue Feb 6 11:26:38 2001 ++++ configure.in Fri Feb 9 10:24:46 2001 +@@ -170,15 +170,12 @@ + + + AC_ARG_ENABLE(plugins, [ --disable-plugins Do not compile plugin support]\ +-, enable_plugins=no, enable_plugins=yes) ++, enable_plugins=yes, enable_plugins=yes) + + if test "x$enable_plugins" = "xyes"; then + dnl Check for shared library calls + AC_MSG_CHECKING(for dlopen) +- save_LIBS="$LIBS" +- LIBS="$LIBS -ldl" + AC_TRY_LINK([#include ], [dlopen("huh",0);] , have_dlopen=yes, , ) +- LIBS="$save_LIBS" + + if test "x$have_dlopen" = "xyes"; then + AC_DEFINE(ENABLE_PLUGINS) +@@ -232,5 +229,8 @@ + AC_OUTPUT([Makefile intl/Makefile po/Makefile.in], [sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile]) - -+AC_OUTPUT_SUBDIRS(Expense) ++ +AC_OUTPUT_SUBDIRS(SyncTime) ++AC_OUTPUT_SUBDIRS(Expense) + dnl AC_OUTPUT(Makefile) -- cgit