From 8b32a4a900cc14254546727d0e7fc9457a077baf Mon Sep 17 00:00:00 2001 From: misi3k Date: Tue, 8 Apr 2003 16:01:35 +0000 Subject: [PATCH] fix ncurses inludes s/\/\/ Changed files: elmo-ncurses.patch -> 1.1 --- elmo-ncurses.patch | 297 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 297 insertions(+) create mode 100644 elmo-ncurses.patch diff --git a/elmo-ncurses.patch b/elmo-ncurses.patch new file mode 100644 index 0000000..2af2598 --- /dev/null +++ b/elmo-ncurses.patch @@ -0,0 +1,297 @@ +--- elmo-0.6/configure.in.orig Tue Apr 8 14:32:36 2003 ++++ elmo-0.6/configure.in Tue Apr 8 14:33:00 2003 +@@ -15,7 +15,7 @@ + + + dnl Checks for header files. +-AC_CHECK_HEADERS(getopt.h wordexp.h glob.h ncurses.h curses.h) ++AC_CHECK_HEADERS(getopt.h wordexp.h glob.h ncurses/ncurses.h curses.h) + + + dnl Checks for typedefs, structures, and compiler characteristics. +--- elmo-0.6/src/choose.c.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/choose.c Tue Apr 8 17:57:15 2003 +@@ -30,8 +30,8 @@ + + #include + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/clock.c.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/clock.c Tue Apr 8 17:57:15 2003 +@@ -38,8 +38,8 @@ + #include + #include + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/cmd.c.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/cmd.c Tue Apr 8 17:57:15 2003 +@@ -32,8 +32,8 @@ + + #include + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/cmd.h.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/cmd.h Tue Apr 8 17:57:15 2003 +@@ -28,8 +28,8 @@ + # include + #endif + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/compose.c.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/compose.c Tue Apr 8 17:57:15 2003 +@@ -43,8 +43,8 @@ + #include + #include + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/elmo.c.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/elmo.c Tue Apr 8 17:57:15 2003 +@@ -34,8 +34,8 @@ + #include + #include + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/error.c.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/error.c Tue Apr 8 17:57:15 2003 +@@ -43,8 +43,8 @@ + #include + #include + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/fetch.c.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/fetch.c Tue Apr 8 17:57:15 2003 +@@ -38,8 +38,8 @@ + #include + #include + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/folder.c.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/folder.c Tue Apr 8 17:57:15 2003 +@@ -32,8 +32,8 @@ + + #include + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/linech.h.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/linech.h Tue Apr 8 17:57:15 2003 +@@ -28,8 +28,8 @@ + # include + #endif + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/mail.h.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/mail.h Tue Apr 8 17:57:15 2003 +@@ -30,8 +30,8 @@ + + #include + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/mailinfo.c.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/mailinfo.c Tue Apr 8 17:57:15 2003 +@@ -30,8 +30,8 @@ + # include + #endif + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/mailreader.c.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/mailreader.c Tue Apr 8 17:57:15 2003 +@@ -34,8 +34,8 @@ + #include + #include + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/progress.c.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/progress.c Tue Apr 8 17:57:15 2003 +@@ -33,8 +33,8 @@ + #include + #include + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/rchtype.c.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/rchtype.c Tue Apr 8 17:57:15 2003 +@@ -33,8 +33,8 @@ + #include + #include + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/rchtype.h.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/rchtype.h Tue Apr 8 17:57:15 2003 +@@ -34,8 +34,8 @@ + + #include + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/read.c.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/read.c Tue Apr 8 17:57:15 2003 +@@ -35,8 +35,8 @@ + # include + #endif + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/screen.c.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/screen.c Tue Apr 8 17:57:15 2003 +@@ -32,8 +32,8 @@ + + #include + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/screen.h.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/screen.h Tue Apr 8 17:57:15 2003 +@@ -28,8 +28,8 @@ + # include + #endif + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/select.c.orig Tue Apr 8 17:57:15 2003 ++++ elmo-0.6/src/select.c Tue Apr 8 17:57:16 2003 +@@ -30,8 +30,8 @@ + # include + #endif + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/select.h.orig Tue Apr 8 17:57:16 2003 ++++ elmo-0.6/src/select.h Tue Apr 8 17:57:16 2003 +@@ -28,8 +28,8 @@ + # include + #endif + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif +--- elmo-0.6/src/status.c.orig Tue Apr 8 17:57:16 2003 ++++ elmo-0.6/src/status.c Tue Apr 8 17:57:16 2003 +@@ -32,8 +32,8 @@ + + #include + +-#ifdef HAVE_NCURSES_H +-# include ++#ifdef HAVE_NCURSES_NCURSES_H ++# include + #elif HAVE_CURSES_H + # include + #endif -- 2.43.0