diff options
author | Daichi GOTO <daichi@FreeBSD.org> | 2003-07-04 12:42:24 +0000 |
---|---|---|
committer | Daichi GOTO <daichi@FreeBSD.org> | 2003-07-04 12:42:24 +0000 |
commit | 06427e2661017a8590299cb15e3da4fca4756ff1 (patch) | |
tree | cd4e4fd58de3053817916f7a7dcbfab81eb7ff94 /print | |
parent | 2b6e0c42afe448def83a0cfd06dad38b01a1f4eb (diff) | |
download | ports-06427e2661017a8590299cb15e3da4fca4756ff1.tar.gz ports-06427e2661017a8590299cb15e3da4fca4756ff1.zip |
patch print/cpp2latex:
- print/cpp2latex looks for the getopt function in getopt.h
instead of unistd.h
PR: 52116
Submitted by: Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
Notes
Notes:
svn path=/head/; revision=84201
Diffstat (limited to 'print')
-rw-r--r-- | print/cpp2latex/files/patch-cpp2latex-main.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/print/cpp2latex/files/patch-cpp2latex-main.cpp b/print/cpp2latex/files/patch-cpp2latex-main.cpp new file mode 100644 index 000000000000..f9aaf813363b --- /dev/null +++ b/print/cpp2latex/files/patch-cpp2latex-main.cpp @@ -0,0 +1,11 @@ +--- cpp2latex/main.cpp.orig Mon May 12 15:22:24 2003 ++++ cpp2latex/main.cpp Mon May 12 15:22:34 2003 +@@ -25,7 +25,7 @@ + #include <fstream> + #include <vector> + #include <stdio.h> +-#include <getopt.h> ++#include <unistd.h> + + struct replace{ + std::string voraus; |