While finishing off the OS/2 fixes for trunk I came across a problem caused by the fact that, unlike everything else in the tree, buildmark.c is NOT built using libtool. Is there any reason for this?
I'd like to make the following change if there isn't: |Index: Makefile.in| |===================================================================| |--- Makefile.in (revision 956865)| |+++ Makefile.in (working copy)| |@@ -4,8 +4,8 @@ CLEAN_SUBDIRS = test| | | | PROGRAM_NAME = $(progname)| | PROGRAM_SOURCES = modules.c| |-PROGRAM_LDADD = buildmark.o $(HTTPD_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) $(AP_LIBS) $(LIBS)| |-PROGRAM_PRELINK = $(COMPILE) -c $(top_srcdir)/server/buildmark.c| |+PROGRAM_LDADD = buildmark.lo $(HTTPD_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) $(AP_LIBS) $(LIBS)| |+PROGRAM_PRELINK = $(LIBTOOL) --mode=compile $(COMPILE) -c $(top_srcdir)/server/buildmark.c| | PROGRAM_DEPENDENCIES = \| | server/libmain.la \| | $(BUILTIN_LIBS) \|
