We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cd /usr/ports/www/libmicrohttpd sudo make config install clean
git clone https://github.com/etr/libhttpserver.git cd ./libhttpserver ./bootstrap mkdir ./build cd ./build ../configure CPPFLAGS=-I/usr/local/include LDFLAGS=-L/usr/local/lib gmake sudo gmake install (optional)
#include <httpserver.hpp>
CC := g++ CFLAGS := -I/usr/local/include -L/usr/local/lib -g OBJECTS := LIBRARIES := -lhttpserver .PHONY: all clean all: minimal_https minimal_https: $(CC) $(CFLAGS) -o minimal_https minimal_https.cpp $(LIBRARIES) clean: rm -f *.o
make