FreeBSD-4.2-RELEASE's cpp (gcc-2.95.2) doesn't like the apostrophe
in signals.c.
It says:
signals.c:320: unterminated string or character constant
Changing it from I'm to I am makes it happy. -- justin
Index: signals.c
===================================================================
RCS file: /home/cvspublic/apr/threadproc/unix/signals.c,v
retrieving revision 1.30
diff -u -r1.30 signals.c
--- signals.c 2001/04/06 23:51:38 1.30
+++ signals.c 2001/04/07 01:08:29
@@ -317,7 +317,7 @@
#elif HAVE_SIGSUSPEND
sigsuspend(&sig_mask);
#else
-#error No apr_sigwait() and no sigsuspend(); I'm stuck.
+#error No apr_sigwait() and no sigsuspend(); I am stuck.
#endif
}
}