Error using the "Make" command on Fedora

[dmott@localhost dv300f_1910]$ sudo make

Package libmicrohttpd was not found in the pkg-config search path.

Perhaps you should add the directory containing `libmicrohttpd.pc'

to the PKG_CONFIG_PATH environment variable

No package 'libmicrohttpd' found

mkdir -p obj

gcc -Wall -W -Wcast-align -Wcast-qual -Wimplicit -Wpointer-arith -Wswitch -Wredundant-decls -Wreturn-type -Wshadow -Wno-unused -Wstrict-prototypes -Wnested-externs -g -I. -c main.c -o obj/main.o

main.c:13:24: fatal eror: microhttpd.h: No such file or directory

#include <microhttpd.h>
^
compilation terminated.

make: *** [obj/main.o] Error 1

I'm trying to get some software installed on Fedora Linux for my Samsung DV300F. When I got to the make command, it spurted out some errors on me. Any ideas on how to fix this problem?

Anyone able to help me fix this problem?

You have to read it. It says "No package 'libmicrohttpd' found" so use google to find out what package installs that lib.

I recently installed it before you posted. Changed a little bit

gcc obj/select.o obj/udp_server.o obj/packet.o obj/log.o obj/main.o -o dv300f -Wall -W -Wcast-align -Wcast-qual -Wimplicit -Wpointer-arith -Wswitch -Wredundant-decls -Wreturn-type -Wshadow -Wno-unused -Wstrict-prototypes -Wnested-externs -g -I. -Wl -lmicrohttpd

gcc: error: unrecognized command line option ‘-Wl’

make: *** [dv300f] Error 1

This is what is left over

Edit the Makefile to comment out the line "LDFLAGS += -Wl"

How do I do that?

Put a # in front of the line.

Now I just need to find the file

I got it to install! Thanks man!

Heh no prob