diff options
author | Lars Thegler <lth@FreeBSD.org> | 2004-06-18 07:33:47 +0000 |
---|---|---|
committer | Lars Thegler <lth@FreeBSD.org> | 2004-06-18 07:33:47 +0000 |
commit | 4f018d7aa4f78725cf7596224dfaef2be9d2926d (patch) | |
tree | 0a8fbb0966630696aa75dc23810e411c9adb51fb /net/sipp/files/patch-Makefile | |
parent | - Convert varargs to stdarg (diff) |
Sipp is a performance test tool / traffic generator for the SIP protocol.
It comes with a few basic SipStone user-agents scenarios (UAC & UAS), i
establishing and releasing multiple calls with the INVITE and BYE methods.
WWW: http://sipp.sourceforge.net/
PR: 68036
Submitted by: Jesper Dalberg <jesper@jdn.dk>
Approved by: erwin (mentor)
Notes
Notes:
svn path=/head/; revision=111703
Diffstat (limited to 'net/sipp/files/patch-Makefile')
-rw-r--r-- | net/sipp/files/patch-Makefile | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/net/sipp/files/patch-Makefile b/net/sipp/files/patch-Makefile new file mode 100644 index 000000000000..270f90c5b2df --- /dev/null +++ b/net/sipp/files/patch-Makefile @@ -0,0 +1,61 @@ +--- Makefile.orig Tue Jun 15 14:25:12 2004 ++++ Makefile Tue Jun 15 14:25:28 2004 +@@ -30,6 +30,7 @@ + + # Libraries directories + LIBDIR_linux= ++LIBDIR_FreeBSD= + LIBDIR_hpux= + LIBDIR_tru64= + +@@ -50,6 +51,7 @@ + # SYSTEM nickname + SYSTEM_HP-UX=hpux + SYSTEM_Linux=linux ++SYSTEM_FreeBSD=freebsd + SYSTEM_OSF1=tru64 + SYSTEM=$(SYSTEM_$(OSNAME)) + +@@ -60,29 +62,34 @@ + CPP_hpux=aCC + CPP_linux=gcc + CPP_tru64=cxx ++CPP_freebsd=g++ + CPP=$(CPP_$(SYSTEM)) + + #C Compiler Flags + CFLAGS_hpux=-D__HPUX +DAportable + CFLAGS_linux=-D__LINUX -pthread ++CFLAGS_freebsd=-D__LINUX -pthread + CFLAGS_tru64=-D__OSF1 -pthread + CFLAGS=$(CFLAGS_$(SYSTEM)) -D__3PCC__ + + #C++ Compiler Flags + CPPFLAGS_hpux=-AA -mt -D__HPUX +DAportable + CPPFLAGS_linux=-D__LINUX -pthread ++CPPFLAGS_freebsd=-D__LINUX -pthread + CPPFLAGS_tru64=-D__OSF1 -pthread + CPPFLAGS=$(CPPFLAGS_$(SYSTEM)) -D__3PCC__ + + #Linker mapping + CCLINK_hpux=aCC + CCLINK_linux=gcc ++CCLINK_freebsd=g++ + CCLINK_tru64=cxx + CCLINK=$(CCLINK_$(SYSTEM)) + + #Linker Flags + LFLAGS_hpux=-AA -mt +DAportable + LFLAGS_linux= ++LFLAGS_freebsd= + LFLAGS_tru64= + LFLAGS=$(LFLAGS_$(SYSTEM)) + +@@ -90,6 +97,7 @@ + LIBS_linux= -ldl -lpthread -lcurses -lstdc++ + LIBS_hpux= -lcurses + LIBS_tru64= -lcurses -lpthread ++LIBS_freebsd= -lcurses -pthread + LIBS=$(LIBS_$(SYSTEM)) + + # Operating system detection rule |