mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-29 21:39:24 +00:00
e63f0e6930
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 <varju@ca.webct.com> MAINTAINER
29 lines
851 B
Plaintext
29 lines
851 B
Plaintext
--- 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 <dlfcn.h>], [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(SyncTime)
|
|
+AC_OUTPUT_SUBDIRS(Expense)
|
|
|
|
dnl AC_OUTPUT(Makefile)
|