comparison 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
comparison
equal deleted inserted replaced
995:4575a219af58 996:25e260cb7994
213 213
214 #ifdef HAVE_GPM 214 #ifdef HAVE_GPM
215 gpm_objs=gpmevent.o 215 gpm_objs=gpmevent.o
216 #endif 216 #endif
217 217
218 #ifdef HAVE_LDAP 218 #if defined(HAVE_LDAP) && !defined(HAVE_SHLIB)
219 ldap_objs=eldap.o 219 ldap_objs=../modules/ldap/eldap.o
220 #endif 220 #endif
221 221
222 #ifdef MULE 222 #ifdef MULE
223 mule_objs=mule-ccl.o mule-charset.o mule-coding.o 223 mule_objs=mule-ccl.o mule-charset.o mule-coding.o
224 #endif 224 #endif
229 229
230 #ifdef HAVE_WNN 230 #ifdef HAVE_WNN
231 mule_wnn_objs=mule-wnnfns.o 231 mule_wnn_objs=mule-wnnfns.o
232 #endif 232 #endif
233 233
234 #ifdef HAVE_POSTGRESQL 234 #if defined(HAVE_POSTGRESQL) && !defined(HAVE_SHLIB)
235 postgresql_objs=postgresql.o 235 postgresql_objs=../modules/postgresql/postgresql.o
236 #endif 236 #endif
237 237
238 #ifdef HAVE_WIN32_PROCESSES 238 #ifdef HAVE_WIN32_PROCESSES
239 process_objs=process-nt.o 239 process_objs=process-nt.o
240 #elif defined (HAVE_UNIX_PROCESSES) 240 #elif defined (HAVE_UNIX_PROCESSES)