This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.
To build libharu as a shared dylib on Mac OS X, modify the Makefile after calling ./configure --sharedHere are the relevant sections and the lines to be changed:...CC=ccPREFIX=/usr/localLIBNAME=libhpdf.aSONAME=libhpdf.dylibSOVER1=.1SOVER2=.0.0LIBTARGET=libhpdf.dylibCFLAGS=-Iinclude -fPIC -fno-common -c...$(SONAME): $(OBJS)$(CC) -dynamiclib -o $(SONAME)$(SOVER1)$(SOVER2) $(OBJS) $(LDFLAGS) -Wlln -sf $(SONAME)$(SOVER1)$(SOVER2) $(SONAME)$(SOVER1)ln -sf $(SONAME)$(SOVER1) $(SONAME)
Now you can build and install:
make clean
make
make install
Test PDF files from pdf-tests.factor are generated in the test folder.