This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Hi,
I have a problem with loading a DSAPI library into Domino Server 8.5.2 on SUSE10 x86-32bit .I think that I have a wrong make file for Linux. I can make a *.so file but when I try to load a *.so file I got a error "HTTP Server Failed to load DSAPI module..."
If somebody have a working a very simple DSAPI solotion please a contact. I would like to test it on my environment.
my make file:
#
# makefile for Notes API sample program extunix
# Linux RedHat
#
#
# set TARGET to the name of the executable to create
TARGET = redirdsapi.so
# set SOURCES to the list of C source files in this program
SOURCES = redirdsapi.c
# set HEADERS to the list of C include files in this program
HEADERS =
# set OBJECTS to the list of object files that must be linked
OBJECTS = redirdsapi.o
# CC defines the compiler.
CC = g++
# Set CCOPTS - the compiler options.
#CCOPTS = -c -mtune=i686
CCOPTS = -c -march=i686
# You may use -g flag for debugging:
#CCOPTS = -c -march=i486 -g
# set NOTESDIR to specify where to search for the Notes library file
NOTESDIR = $(Notes_ExecDirectory)
# Set LINKOPTS - the linker options passed to CC when linking.
# -o $(TARGET) causes compiler to create target rather than a.out
LINKOPTS = -o $(TARGET) -shared -fpic -Wl,-R$(NOTESDIR),-znodefs,-ztext