diff options
author | daichi <daichi@FreeBSD.org> | 2003-07-04 12:42:24 +0000 |
---|---|---|
committer | daichi <daichi@FreeBSD.org> | 2003-07-04 12:42:24 +0000 |
commit | e0ac029f41376ef6ba59dbcb21bc4f4b1124c32a (patch) | |
tree | f9552f0182bc18f2c8604fb17b201722d4fde36e /print | |
parent | 8148914e29edca892e39875e9bbeb3586c4863f3 (diff) | |
download | FreeBSD-ports-e0ac029f41376ef6ba59dbcb21bc4f4b1124c32a.zip FreeBSD-ports-e0ac029f41376ef6ba59dbcb21bc4f4b1124c32a.tar.gz |
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>
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 0000000..f9aaf81 --- /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; |