Changeset 2786


Ignore:
Timestamp:
2001-10-10T14:32:47+13:00 (23 years ago)
Author:
kjm18
Message:

added phind functionality to niupepa library

Location:
trunk/niupepa/src/recpt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/niupepa/src/recpt/Makefile.in

    r2617 r2786  
    3737ifneq ($(USE_FASTCGI), 1)
    3838INCLUDES = -I$(MAINRECPTDIR) -I$(MAINCOLSERVRDIR) -I$(GD)/lib \
    39        -I$(GD)/packages/mg -I$(GD)/packages/mg/lib -I$(GD)/packages/mg/src/text
     39       -I$(GD)/packages/mg -I$(GD)/packages/mg/lib -I$(GD)/packages/mg/src/text -I$(GD)/src/mgpp/lib  -I$(GD)/src/mgpp/text
    4040else
    4141INCLUDES = -I$(MAINRECPTDIR) -I$(MAINCOLSERVRDIR) -I$(GD)/lib \
    4242       -I$(GD)/packages/mg -I$(GD)/packages/mg/lib -I$(GD)/packages/mg/src/text \
    43            -I$(GD)/packages/fcgi/include
     43           -I$(GD)/packages/fcgi/include  -I$(GD)/src/mgpp/lib  -I$(GD)/src/mgpp/text
    4444endif
    4545
     
    132132    $(MAINRECPTDIR)/userdb.o \
    133133    $(MAINRECPTDIR)/historydb.o \
     134    $(MAINRECPTDIR)/phindaction.o \
     135    $(MAINRECPTDIR)/phindbrowserclass.o \
    134136    $(MAINCOLSERVRDIR)/mgq.o \
    135137    $(MAINCOLSERVRDIR)/querycache.o \
  • trunk/niupepa/src/recpt/niupepalibrarymain.cpp

    r1945 r2786  
    4747#include "authenaction.h"
    4848#include "usersaction.h"
     49#include "phindaction.h"
    4950
    5051#include "browserclass.h"
     
    5556#include "niupepapagedbrowserclass.h"
    5657#include "htmlbrowserclass.h"
     58#include "phindbrowserclass.h"
    5759
    5860#include "recptconfig.h"
     
    105107  recpt.add_action (&aauthenaction);
    106108
     109  phindaction aphindaction;
     110  recpt.add_action(&aphindaction);
    107111
    108112  // list of browsers
     
    126130  recpt.add_browser (&ahtmlbrowserclass);
    127131
     132  phindbrowserclass aphindbrowserclass;
     133  recpt.add_browser (&aphindbrowserclass);
     134
    128135  cgiwrapper (recpt, "niupepa");
    129136  return 0;
Note: See TracChangeset for help on using the changeset viewer.