diff src/Makefile.in.in @ 996:25e260cb7994

[xemacs-hg @ 2002-09-10 15:27:02 by james] Enable unloading of dynamic modules. Create the first two internal XEmacs modules: LDAP and postgreSQL. Update the sample directory to contain a sample internal XEmacs module and a sample external XEmacs module. Improve support for autoloading modules. Make internal module code compile into the XEmacs binary if XEmacs is configured without module support. Make the internal module directories self-contained so that they can be distributed separately from XEmacs.
author james
date Tue, 10 Sep 2002 15:27:39 +0000
parents 2b6fa2618f76
children 1ab9c4a77230
line wrap: on
line diff
--- a/src/Makefile.in.in	Mon Sep 09 21:53:43 2002 +0000
+++ b/src/Makefile.in.in	Tue Sep 10 15:27:39 2002 +0000
@@ -215,8 +215,8 @@
 gpm_objs=gpmevent.o
 #endif
 
-#ifdef HAVE_LDAP
-ldap_objs=eldap.o
+#if defined(HAVE_LDAP) && !defined(HAVE_SHLIB)
+ldap_objs=../modules/ldap/eldap.o
 #endif
 
 #ifdef MULE
@@ -231,8 +231,8 @@
 mule_wnn_objs=mule-wnnfns.o
 #endif
 
-#ifdef HAVE_POSTGRESQL
-postgresql_objs=postgresql.o
+#if defined(HAVE_POSTGRESQL) && !defined(HAVE_SHLIB)
+postgresql_objs=../modules/postgresql/postgresql.o
 #endif
 
 #ifdef HAVE_WIN32_PROCESSES