Changeset 3965

Show
Ignore:
Timestamp:
Thu Oct 13 14:23:42 2005
Author:
mugur
Message:

fixed compilation issues related to removal of ccampsiteinstance.h and ccampsiteinstance.cpp from the parser

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/campsite/implementation/search/Makefile

    r2842 r3965  
    8 8 LDLIBS=-lmysqlclient -lm -lz $(LIBCRYPT_LINK) $(PTHREAD_LINK)  
    9 9  
    10   LINKS=globals.h readconf.h readconf.cpp cms_types.h threadkey.h ccampsiteinstance.h \  
    11    ccampsiteinstance.cpp mutex.h mutex.cpp  
      10 PARSER_LINKS=globals.h readconf.h readconf.cpp cms_types.h threadkey.h mutex.h mutex.cpp  
      11 MAILNOTIFY_LINKS=ccampsiteinstance.h ccampsiteinstance.cpp  
    12 12  
    13 13 all: links gather  
    14 14  
    15 15 links: dummy  
    16       for l in $(LINKS); do \  
      16     @for l in $(PARSER_LINKS); do \  
    16 16         if [ ! -L $$l ]; then ln -s ../parser/parser/$$l; fi; \  
    17 17     done  
    18       if [ ! -L "configure.h" ]; then ln -s "$(INSTALL_CONF)/configure.h"; fi  
      18     @for l in $(MAILNOTIFY_LINKS); do \  
      19         if [ ! -L $$l ]; then ln -s ../mailnotify/$$l; fi; \  
      20     done  
      21     @if [ ! -L "configure.h" ]; then ln -s "$(INSTALL_CONF)/configure.h"; fi  
    19 22  
    20 23 gather: gather.o kwd.o readconf.o ccampsiteinstance.o mutex.o  
    33 36  
    34 37 clean: dummy  
    35       rm -f *.o *~ configure.h $(LINKS) gather  
      38     rm -f *.o *~ configure.h $(PARSER_LINKS) $(MAILNOTIFY_LINKS) gather  
    35 38  
    36 39 install: all  
  • trunk/campsite/implementation/mailnotify/Makefile

    r2838 r3965  
    10 10 LDLIBS=-lmysqlclient -lm -lz $(LIBCRYPT_LINK) $(PTHREAD_LINK) $(NSL_LINK)  
    11 11  
    12   LINKS=globals.h readconf.h readconf.cpp cms_types.h threadkey.h ccampsiteinstance.h \  
    13    ccampsiteinstance.cpp mutex.h mutex.cpp  
      12 LINKS=globals.h readconf.h readconf.cpp cms_types.h threadkey.h mutex.h mutex.cpp  
    14 13  
    15 14 all: links notifyendsubs notifyevents  
    17 16  
    18 17 links: dummy  
    19       for l in $(LINKS); do \  
      18     @for l in $(LINKS); do \  
    19 18         if [ ! -L $$l ]; then ln -s ../parser/parser/$$l; fi; \  
    20 19     done  
    21       if [ ! -L "configure.h" ]; then ln -s "$(INSTALL_CONF)/configure.h"; fi  
      20     @if [ ! -L "configure.h" ]; then ln -s "$(INSTALL_CONF)/configure.h"; fi  
    21 20  
    22 21 notifyendsubs: notifyendsubs.o ccampsiteinstance.o mutex.o readconf.o